 |
QuantShare
2010-09-20 05:42:48
0
|
|
Hi,
Right click on the main pane, then click on "Edit Formula".
Under the "PlotCandleStick" function, type the following lines:
m = macd();
s = macdSignal(14);
UpdateColor(1, colorBlack);
UpdateColor(m > 0 and m > s, colorGreen);
UpdateColor(m < 0 and m < s, colorRed);
|
|