请问,这一段没有问题吧?谢谢 [开拓者 TB]
作者:
开拓者 TB 来源:
cxh99.com 发布时间:2012年07月14日 点击数:
【
收藏到本网的会员中心】
- 咨询内容:
本帖最后由 空空大师 于 2012-2-29 15:50 编辑
请问,这一段没有问题吧?谢谢!!!
If(Time>0.091700 and Time<0.151200 And CrossOver(JC,RC1)) //开多条件
{
Buy(Lots,Close);
}
If(Time>0.091700 and Time<0.151200 And RC1>Open And RC1>Close And RC1>H And RC1>L) //平多仓条件1
{
Sell(Lots,Close);
}
If(Time>0.091700 and Time<0.151200 And 0.5*(H+L)-KJZ>6) //平多仓条件2
{
Sell(Lots,Close);
}
If(Time>0.150900) //平多仓条件3
{
Sell(Lots,Close);
}
If(Time>0.091700 And Time<0.151200 And CrossUnder(JC,RC2)) //开空条件
{
SellShort(Lots,Close);
}
If(Time>0.091700 and Time<0.151200 And RC2<Open And RC2<Close And RC2<H And RC2<L) //平空条件1
{
BuyToCover(Lots,Close);
}
If(Time>0.091700 and Time<0.151200 And KJZ-0.5*(H+L)>6) //平空条件2
{
BuyToCover(Lots,Close);
}
If(Time>0.150900) //平空条件3
{
BuyToCover(Lots,Close);
}
- TB技术人员:
还有这个,可以这样写吗?谢谢
BuyToCover(A_SellPosition(),Q_AskPrice());
- TB客服: