|
樓主 |
發表於 19-6-23 15:56
|
顯示全部樓層
我嘗試著寫一段
但是編譯卻一直出現錯誤
還請先進指導一下
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))) ;
|
|