It seems that all Moving Average Indicator are plotted in the main chart? Is there a way to plot it below?
TYIA.
ZaQ
Yes you can by editing the script.
Here is the syntax:
plot(indicator name, chart type, color, destination pane)
if you want it to be placed in the charts, the destination pane is "main" and written like this
plot(MA,line,red,main)
otherwise you can create your own pane name and throw in whatever indicators you want to show up in that pane, for your request, let's simply name it MA. An example is shown below
plot(MA10,line,red,MA)
plot(MA30,line,blue,MA)
Yes you can by editing the script.
Here is the syntax:
plot(indicator name, chart type, color, destination pane)if you want it to be placed in the charts, the destination pane is "main" and written like this
plot(MA,line,red,main)otherwise you can create your own pane name and throw in whatever indicators you want to show up in that pane, for your request, let's simply name it MA. An example is shown below
plot(MA10,line,red,MA)
plot(MA30,line,blue,MA)
Tested and working perfectly. Thank You!
