Announcement

Collapse
No announcement yet.

Tick charts and Prev Day HiLo

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Tick charts and Prev Day HiLo

    Anyone know what code needs to be added to allow this formula to work with tick charts?

    Currently it plots lines on every candle in the tick chart.

    Thanks
    Attached Files

  • #2
    Re: Tick charts and Prev Day HiLo

    bugscoe
    You have two solutions available.
    The first one that does not require any coding is to go in Edit Studies and insert D (or d) as the Interval parameter when using any tick-based chart.
    The other is to replace the following line of code
    PHP Code:
    if(isIntraday() && Interval == nullInterval "D"
    with the following
    PHP Code:
    if((isIntraday()||isTick()||isRawTick()) && Interval == nullInterval "D"
    Once you make this change the script should work fine also with tick-based charts without having to input the interval in Edit Studies
    Alex




    Originally posted by bugscoe
    Anyone know what code needs to be added to allow this formula to work with tick charts?

    Currently it plots lines on every candle in the tick chart.

    Thanks

    Comment


    • #3
      Wow. I can't believe I missed the interval in edit studies, duh.

      Thank you much!!

      Comment


      • #4
        bugscoe
        You are most welcome
        Alex


        Originally posted by bugscoe
        Wow. I can't believe I missed the interval in edit studies, duh.

        Thank you much!!

        Comment

        Working...
        X