Announcement

Collapse
No announcement yet.

Absolute value??

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

  • Absolute value??

    I cant find anything on absolute value in the help menu for efs...

    All I wanted to do was get the absolute value of two numbers.

    close(0) - open(0) and open(0) - close(0).

    close = 32
    open = 30

    One of these outputs will be negative...just looking to make the output positive all the time....

    one value is 2 and one is -2, always want a positive value

    like maybe: absolute(close(0) - open(0))

  • #2
    Look up the Math.abs(x) command to compute absolute values.

    Comment


    • #3
      Thanks

      Thank you....

      Comment

      Working...
      X