|
請問我想寫一段關於成交量的指標
當根棒線比前一根棒線的成交量大就把成交量設為紅色
當根棒線比前一根棒線的成交量小就把成交量設為綠色
可是編譯時卻一直出現錯誤
還請先進指教一下錯誤
感謝
if Volume[0]<Volume[1] then
SetPlotColor (1, RGB (0,150,0));
if Volume[0]>Volume[1] then
SetPlotColor (1, RGB (200,0,0));
if BarType >= 2 then
Plot1( Volume, "Volume" , iff(Volume<Volume[1], RGB (0,150,0), RGB (200,0,0)))
else
Plot1( Ticks, "Volume" , iff(Ticks<Ticks[1], RGB (0,150,0), RGB (200,0,0))) ;
|
|