时间函数 示例模型
来自tradeStar帮助系统
(版本间的差异)
(以“ //-------智能交易公式-------------- //该模型仅仅用来示范如何根据指标编写简单的模型 //用户需要根据自己交易经验,...”为内容创建页面) |
|||
第12行: | 第12行: | ||
//时间到14点55分 | //时间到14点55分 | ||
bExitShort :=TIME>=145500;<br> | bExitShort :=TIME>=145500;<br> | ||
− | if bEnterLong then buy; | + | if bEnterLong then buy;//满足开多条件,开多仓 |
− | if bExitLong then sell; | + | if bExitLong then sell;//满足平多条件,平多仓 |
− | if bEnterShort then SellShort; | + | if bEnterShort then SellShort;//满足开空条件,开空仓 |
− | if bExitShort then BuyToCover; | + | if bExitShort then BuyToCover;//满足平空条件,平空仓 |
2013年6月20日 (四) 10:20的最后版本
//-------智能交易公式-------------- //该模型仅仅用来示范如何根据指标编写简单的模型 //用户需要根据自己交易经验,进行修改后再实际应用!!!
MA5:MA(C,5);//定义5周期的简单移动平均线 MA10:MA(C,10);//定义10周期的简单移动平均线
{9点05分之后14点55分之前的时间段内出现5周期线金叉10周期线} bEnterLong :=TIME>=090500 and TIME<145500 and CROSS(MA5,MA10); //时间到14点55分 bExitLong :=TIME>=145500;
//9点05分之后14点55分之前的时间段内出现5周期线死叉10周期线 bEnterShort :=TIME>=090500 and TIME<145500 and CROSS(MA10,MA5); //时间到14点55分 bExitShort :=TIME>=145500;
if bEnterLong then buy;//满足开多条件,开多仓 if bExitLong then sell;//满足平多条件,平多仓 if bEnterShort then SellShort;//满足开空条件,开空仓 if bExitShort then BuyToCover;//满足平空条件,平空仓