大家可以将以前的交易系统指标套用到以下模板,形成可测评的金魔方策略。
//-------金魔方智能交易公式--------------
//参数设置
Input:
N(10,5,20,1); //缺省值,最小值,最大值,步长
bEnterLong := 0; //多头开仓条件
bExitLong := 0; //多头平仓条件
bEnterShort := 0; //空头开仓条件
bExitShort := 0; //空头平仓条件
If bEnterLong Then Buy;
If bExitLong Then Sell;
If bEnterShort Then SellShort;
If bExitShort Then BuyToCover;