| SID Name | Description | Rating |  | 276 MACDDEMA | A chart to plot the MACDDEMA indicator | Not Rated |
 | The logic for this chart: |
#Plot the MACDDEMA indicator
#The MACDDEMA technical analysis indicator must be in the Indicators folder
my ($line,$signal,$hist)=MACDDEMA(12,26,9);
PlotColumn($line,Red);
PlotColumn($signal,Blue);
PlotColumn($hist,Yellow,Vline);
PlotFixedLine(0,Yellow);
|