Announcement

Collapse
No announcement yet.

isTick function

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

  • isTick function

    Hello,

    The isTick() function is supposed to return true when applied on a tick chart e.g. on AB 89T chart. However, it is returning a value of false in my efs, as in the followiing statement.

    debugPrintln(isTick() );

    What am I doing wrong? Is there another simple way to test if my study is being applied on a tick chart?

    Any help would be appreciated.
    Thanks.
    Hamid.

  • #2
    Hamid
    isTick() returns true only if the interval is T. For all other tick based intervals (such as 89T, 500V, etc) you need to use isRawTick()
    Alex

    Comment


    • #3
      Hi Alex,

      Thank you very much for the prompt response. The RawTick function gave me the desired resut in my efs. I think I may have looked at it earlier but may have applied it on a non-tick chart.

      Regards,
      Hamid.

      Comment


      • #4
        Hamid
        You are most welcome
        Alex

        Comment

        Working...
        X