runmode:0;
dayopen:=callstock(stklabel,vtopen,6,0);
entrylongcond:=open>dayopen;
entryshortcond:=open<dayopen;
if holding=0 then begin
if entrylongcond then
buy(1,1,limitr,open);
if entryshortcond then
buyshort(1,1,limitr,open);
end
if holding>0 then begin
sell(1,holding,limitr,close);
end
if holding<0 then begin
sellshort(1,holding,limitr,close);
end
盈亏:asset-500000,noaxis,coloryellow,linethick2;
不会发图,写入公式里后。提示:您当前公式系统使用了交易系统函数,但公式不是交易系统公式,可能无法正常工作。
请问应该怎么试用?谢谢