Announcement

Collapse
No announcement yet.

How to get an ema of High - Low ?

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

  • How to get an ema of High - Low ?

    Trying to create an ema of the range of the day ( without gap, so do not want to use ATR ) Tried the following.

    var Range = high() - low();

    var AvRange = ema(10,Range);

    Can get a plot for Range but the AvRange comes out as an ema of the price alone

    I must be missing something!

  • #2
    Colebeach
    See this or this thread on the same topic
    FYI I found the threads by searching the forum for the words average AND range
    Alex


    Originally posted by Colebeach View Post
    Trying to create an ema of the range of the day ( without gap, so do not want to use ATR ) Tried the following.

    var Range = high() - low();

    var AvRange = ema(10,Range);

    Can get a plot for Range but the AvRange comes out as an ema of the price alone

    I must be missing something!

    Comment

    Working...
    X