請問一段成交量的程式碼問題
請問我想寫一段關於成交量的指標當根棒線比前一根棒線的成交量大就把成交量設為紅色
當根棒線比前一根棒線的成交量小就把成交量設為綠色
可是編譯時卻一直出現錯誤
還請先進指教一下錯誤
感謝
if Volume<Volume then
SetPlotColor (1, RGB (0,150,0));
if Volume>Volume then
SetPlotColor (1, RGB (200,0,0));
if BarType >= 2 then
Plot1( Volume, "Volume" , iff(Volume<Volume, RGB (0,150,0), RGB (200,0,0)))
else
Plot1( Ticks, "Volume" , iff(Ticks<Ticks, RGB (0,150,0), RGB (200,0,0))) ;
本帖最後由 jason680 於 19-6-27 02:03 編輯
雖然程式(邏輯)怪怪的...
用"指標"可以編輯成功...
你的錯誤訊息是什麼?
jason680 發表於 19-6-27 02:02
雖然程式(邏輯)怪怪的...
用"指標"可以編輯成功...
不好意思~~已解決!!感謝回復
感謝分享,買回來研究研究,謝謝
頁:
[1]