I am using the following code to calculate the 10 Hour RTH Simple MA on 5 Min chart, however the data that it returns is not correct. Is there something I am doing wrong or it is not possible to do so?
function CalcMA60RTH()
{
vSMA60MinRTH=sma(10,inv("ES #F=2, 60"));
}
Thanks
Tony G.
function CalcMA60RTH()
{
vSMA60MinRTH=sma(10,inv("ES #F=2, 60"));
}
Thanks
Tony G.
Comment