Announcement

Collapse
No announcement yet.

Can I reference other symbols

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

  • Can I reference other symbols

    Did a search but couldn't find anything on this subject. What I'm trying to do is the following: program a formula to alarm lets say TICK and TICKI both reaching an extreme. Can I reference symbols directly in the formula editor? Any ideas/comments/refrences welcome and appreciated.

  • #2
    if (
    close(0, 1, "tick") > 500
    ) Alert.playSound("C:\\Program Files\\eSignal\\Sounds\\Ding.wav");


    will sound the ding noise when the close of tick > 500


    Insert the proper symbol for tick!

    Comment


    • #3
      thanks, just what I was looking for

      Comment

      Working...
      X