laieven 發表於 19-6-23 15:45

請問一段成交量的程式碼問題

請問我想寫一段關於成交量的指標
當根棒線比前一根棒線的成交量大就把成交量設為紅色
當根棒線比前一根棒線的成交量小就把成交量設為綠色

可是編譯時卻一直出現錯誤
還請先進指教一下錯誤
感謝

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:02

本帖最後由 jason680 於 19-6-27 02:03 編輯

雖然程式(邏輯)怪怪的...
用"指標"可以編輯成功...

你的錯誤訊息是什麼?

laieven 發表於 19-10-16 10:21

jason680 發表於 19-6-27 02:02
雖然程式(邏輯)怪怪的...
用"指標"可以編輯成功...



不好意思~~已解決!!感謝回復

Stark 發表於 19-11-2 13:01


感謝分享,買回來研究研究,謝謝
頁: [1]
查看完整版本: 請問一段成交量的程式碼問題