SMR used (still?) to publish an oscillator. I'm trying to program it in esignal. Here is the logic: there are two lines plotted:
the first one is simple moving average of the last 3 closes minus the simple moving average of the last 10 closes.
The second line is the simple average of the first line over the past 16 closes
In easy language it would look like this:
{Plot1(average(close, 3) - average(close, 10));
Plot2(average(average(close, 3) - average(close, 10), 16));
Any ideas?? THANKS!
the first one is simple moving average of the last 3 closes minus the simple moving average of the last 10 closes.
The second line is the simple average of the first line over the past 16 closes
In easy language it would look like this:
{Plot1(average(close, 3) - average(close, 10));
Plot2(average(average(close, 3) - average(close, 10), 16));
Any ideas?? THANKS!
Comment