Announcement

Collapse
No announcement yet.

$Tick alert

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

  • $Tick alert

    Is there an alert that will make a sound when the $tick is above 100 or below 100?
    Thank You

  • #2
    pbohm
    See this thread. FYI I found the thread by searching for $tick* AND alert*
    Alex

    Comment


    • #3
      Thank you once again Alex, that will work great.

      Comment


      • #4
        pbohm
        You are most welcome.
        FWIW there a couple of changes I would suggest you apply to that script. In line 15 replace
        if(getBarState()==BARSTATE_NEWBAR){
        with
        if(getBarStateSymbol("$tick")==BARSTATE_NEWBAR){
        and in line 29 replace
        var c = close(0, "$tick");
        with
        var c = close(0, sym("$tick"));
        These changes use the new EFS2 functions and will ensure the correct syncronization between the charted symbol and $TICK.
        Alex

        Comment

        Working...
        X