HIHI 小編及各位大師們
var:_YVolume(0), _CurrentVolume(0), _PercentageChange(0);
_YVolume = GetField("成交量", "D")[1]; //昨日成交量
_CurrentVolume = Volume; // 當前成交量
_PercentageChange = ((close - GetField("參考價", "D")) / GetField("參考價", "D")) * 100; // 取得當前漲幅,轉換為百分比
condition11 = _PercentageChange > 3; //當下漲幅大於3%
condition12 = _CurrentVolume > _YVolume * 0.2; //當下成交量大於20%
if Time > 090300 and Time < 094500 and condition11 and condition12 then begin
MKP = -1;
plot1(Close,"進場點");
end;
請問這樣寫,沒辦法顯示plot的位置
是我哪裡出了問題嗎?
麻煩請給我解惑
5 評論