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!
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