請問一個成交量的寫法
想請問各位先進,成交量若已今量大於昨量為紅,今量小於昨量為黑,該怎麼寫呢?煩請各位先進指導一下感謝。 Vars:myVol(0);
If datacompression > 1 then myVol= Volume else MyVol = Ticks;
Plot1(myVol,”volume”,iff(myVol >= myVol,Red,Black));
參考看看 easytrader788 發表於 18-8-30 19:16
Vars:myVol(0);
If datacompression > 1 then myVol= Volume else MyVol = Ticks;
------ 編譯時產生錯誤: ------
unrecognized token: ?
errLine 4, errColumn 12, errLineEnd 4, errColumnEnd 12
編譯錯誤:(函數)
編譯時出現上述
我嘗試著寫一段
但是編譯卻一直出現錯誤
還請先進指導一下
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))) ;
頁:
[1]