dunhilltc 發表於 12-3-15 22:17

請問當沖這個寫法正確嗎

if time_s>=133955 then
if marketpotiotin<>0 then begin
sell next bar at market
buytocover next bar at market
end

mc在校正錯誤的時候發現
buytocover next bar at market這一行有錯誤
可是語法也都正確
有高手可以解答嗎

stock1586 發表於 12-3-15 22:56

你搞錯ㄌ,應該這樣.................以下
if time_s>=133955 then begin
if marketpotiotin<>0 then begin
sell next bar at market ;
buytocover next bar at market ;
end ;
end ;
試試看~

akmod 發表於 12-3-15 22:57

本帖最後由 akmod 於 12-3-15 23:00 編輯

if time_s>=133955 then begin
   
if MarketPosition <>0 then begin
   sell next bar at market;
   buytocover next bar at market;
end;

end;

去買一本書來看

sangi 發表於 12-3-16 00:30

你還要考慮結算因素,在結算當日..務必於13:30 前出場..

可以用一隻function來專門回傳當日是否為結算日...
頁: [1]
查看完整版本: 請問當沖這個寫法正確嗎