I am trying to make simple Indicator based on Elders Force Index, the indicator works fine until I try to add an exponential moving average to it.
I am sur there is a simple error
I am sur there is a simple error
myVar = volume(0) * ( close(0) - close(-1));
var mySeries = efsInternal("myCalc");//this calls the separate function and creates the series
var myAverage = ema(10, mySeries); //built-in study uses the custom series as source
var myAverage = ema(10, efsInternal("myCalc"));
Comment