请教老师;我用下面的函数操作香港恒指不能实现尾盘平仓,请老师指点。谢谢
if time=closetime(1) then begin
sell(1,0,market);
sellshort(1,0,market);
end
请教;
金字塔的市场时间和北京时间有什么区别?恒指按北京时间设置;
09;15-12;30
13;00-16;30
17;15-23;45.
这样设置正确吗? 谢谢
请教老师;按照截图修改过后还是不能实现尾盘平仓,如图;
if time=closetime(1) then begin
sell(1,0,market);
sellshort(1,0,market);
end
我是把这个函数放在模型的最后的,哪里不对?谢谢
您好老师;我用的是走完K线下单模式。
假设你讲的尾盘是下午4点半,那么你要改成time=closetime(2),而且不能是走完k线
老师的意思是走完K线模式下不能实现尾盘平仓,要用固定轮询模式对吗?