Announcement

Collapse
No announcement yet.

same price

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

  • same price

    how can i set a dot or an x over a bar that both highs or both lows are the same.
    thank you

  • #2
    bar next to each other

    is there a way to write a efs that will tell me when two bars next to each other have the same highs or the same lows.
    thanks

    Comment


    • #3
      npicc,

      You would just write an efs that has an if statement something like
      PHP Code:
      if(high(0) == high(-1))
      {
      // do something

      Same thing for low.

      Steve

      Comment

      Working...
      X