If
return sma(14,close());
gives me the 14 period simple moving average, why does
return sma(14,(close(-1));
not give me a displaced 14 period moving average,
or
return sma(14, open() - close())
not give me the 14 period average of the difference?
I am missing something?
Thank you for helping me with what should be very simple stuff!
Joe
return sma(14,close());
gives me the 14 period simple moving average, why does
return sma(14,(close(-1));
not give me a displaced 14 period moving average,
or
return sma(14, open() - close())
not give me the 14 period average of the difference?
I am missing something?
Thank you for helping me with what should be very simple stuff!
Joe
Comment