求救小助手您好 我目前有一個類似這樣的編程 但到了指定時間(131500)不會觸發賣出
語法上應該如何修正呢
condition301=false;
condition302=false;
condition303=false;
condition100=false;
if Barinterval=5 and barfreq ="min" and time>094500 then Begin
if volume>volume[1] then begin
condition301=true;
end;
if close-open >100 then begin
condition302=true;
end;
if close>open then begin
condition303=true;
end;
if time>131500 then begin
condition100=true;
end;
if condition301 or condition302 or condition303 or condition100 then begin
ret=1;
end;
end;
4 評論