满盘红 发表于 2012-8-16 22:26:06

如何 写收盘前一分钟按照对价全部平仓的语句?

if(CurrentTime>=LeaveTime) //到达离场时间
   {
    if(A_BuyPosition>0)
    {
   Sell(0,Q_BidPrice); //卖出,平多仓
   PlotText(Close,"sp");
    }
   
    if(A_SellPosition >0)
    {
   BuyToCover(0,Q_AskPrice);//买入,平空仓
   PlotText(Close,"bp");
    }

这个语句在图上没有执行啊

pagecat 发表于 2012-8-17 08:35:16

Sell(0,Q_BidPrice);   0手?不能把?

多伦多 发表于 2012-8-25 12:29:15

先顶后看.

F_Phoebe 发表于 2013-5-13 14:25:07

好东西,楼主辛苦了!!!

风客云心 发表于 2013-7-25 15:49:09

为什么没有结果啊???到底是为什么?{:soso_e132:}
页: [1]
查看完整版本: 如何 写收盘前一分钟按照对价全部平仓的语句?