R-breaker是一个专门用于股票指数的交易系统。该系统是一种盘中交易策略,不会在一夜之间持有头寸。退出指令是止损或平仓。每天的交易不超过2次,很多时候一天内可能没有任何交易。该系统的特点是结合了趋势交易和反转交易两种交易方式,同时进行趋势交易和反转交易。自1993年公开发行以来,该系统的交易规则没有改变。该系统已经上市14年了。尤其是当指数在一天内大幅波动时,系统的回报更好,否则就没有交易机会。
TB 语言
简称: R_Breaker
Params
Numeric notbef(9.00);
Numeric notaft(14.55);
Numeric f1(0.35);
Numeric f2(0.07);
Numeric f3(0.25);
Numeric reverse(1.00);
Numeric rangemin(0.2);
Numeric xdiv(3);
Vars
NumericSeries ssetup(0);
NumericSeries bsetup(0);
NumericSeries senter(0);
NumericSeries benter(0);
NumericSeries bbreak(0);
NumericSeries sbreak(0);
NumericSeries ltoday(0);
NumericSeries hitoday(9999);
NumericSeries startnow(0);
NumericSeries div(0);
BoolSeries rfilter(false);
Numeric i_reverse;
Numeric i_rangemin;
Numeric i_vB;
Numeric i_vS;
Begin
i_reverse = reverse*(OpenD(0)/100);
i_rangemin = rangemin*(OpenD(0)/100);
if(BarStatus==0)
{
}
if(Date != Date[1])
{
}
if(High>hitoday)
{
}
if(Low
{
}
if(Time*100>=notbef and Time*100=2 and rfilter)
{
- 上一篇: 期货交易制度之强制减仓制度
- 下一篇: 我眼中的程序化交易之路(三)
发表评论