tb单均线交易系统 [开拓者 TB]
-
咨询内容:
本帖最后由 ganjinji520 于 2017-5-3 10:28 编辑
看我注册时间大家都知道我是个tb新手,由于整体上班少时间学习tb教程。自己还没有熟悉tb要熟悉估计慢慢就会了,但希望有朋友先教我把这条公式转化成tb公式。
这个系统滑点4个,手续费加倍测试效果,年复利178%。还是那么好希望有朋友帮我翻译一下可以跟我私聊:qq987894429
MA60:MA(CLOSE,60);//定义60均线
//交易条件
TMK1:=CLOSE>MA60&&BARSLAST(CROSS(CLOSE,MA60 ))>=2,BK; //开多单
TMP1:=(CLOSE<MA60&&BARSLAST(CROSS(MA60,CLOSE ))>=2),SP; //平多单
TMK2:=CLOSE<MA60&&BARSLAST(CROSS(MA60,CLOSE ))>=2,SK; //开空单
TMP2:=(CLOSE>MA60&&BARSLAST(CROSS(CLOSE,MA60 ))>=2),BP; //平空单
//过滤函数
AUTOFILTER;来源:CXH99.COM
-
TB技术人员:
- Params
- Numeric lots(1);
- Vars
- Numeric MA60;
- Numericseries Upbar;
- Numericseries Downbar;
- Begin
-
- MA60 = Average(Close,60);
- If ( CrossOver ( Close,MA60 )) // 向上穿越
- Upbar = CurrentBar;
- If ( CrossUnder( Close,MA60 )) // 向下穿越
- Downbar = CurrentBar;
-
- If( Close > MA60 && ( CurrentBar - Upbar ) >= 2 )
- Buy(lots,Close);
- If( Close < MA60 && ( CurrentBar - Downbar ) >= 2 )
- SellShort(lots,Close);
-
- End
- Params
有思路,想编写各种指标公式,程序化交易模型,选股公式,预警公式的朋友
可联系技术人员 QQ: 511411198 进行 有偿 编写!(不贵!点击查看价格!)
相关文章
-
没有相关内容