论坛全局菜单下方 - TICKMILL 285X70论坛全局菜单下方 - ThinkMarkets285X70论坛全局菜单下方 - 荔枝返现285X70论坛全局菜单下方 -  icmarkets285X70
查看:2220回复:6
hilow
注册时间2004-09-25
MT人工智能之三(EMA交叉趋势跟踪系统)
楼主发表于:2004-09-26 18:35只看该作者倒序浏览
1楼 电梯直达
电梯直达
均线趋势跟踪系统的设计例子 /*[[ Name := EMA Cross + Filters Author := hapsa, most of the codes are taken from Ivan_MA :) Notes := Basic MA Cross + ATR, RSI, WPR Filters Notes := Default settings for EURUSD, GBPUSD, USDCHF 30 Min Notes := Play around! :) Lots := 1.00 Stop Loss := 35 Take Profit := 90 Trailing Stop := 20 ]]*/ DEFINES : Slippage(5), PLAY%(5), Money_M(0), PartialLots(1), Limit(500), FastPeriod(5), SlowPeriod(20)&#59; Variable : iMASlowPrevious(0), iMaSlowCurrent(0), iMaFastPrevious(0), iMaFastCurrent(0)&#59; Variable : Filter_WPR(0), Filter_ABS(0), Filter_ATR(0), Filter_RSI(0)&#59; Variable : cnt(0), ILO(0), mode(0)&#59; If Money_M <> 0 then { Ilo= ceil(equity*PLAY%/100/100)/10&#59; IF PartialLots = 0 then { If Ilo < 1 then Ilo = 1&#59; If Ilo > 1 then Ilo= ceil(ilo)&#59; } } else ilo = lots&#59; //Moving Average Settings iMaSlowPrevious = iMAEx(SlowPeriod, MODE_EMA, 0, PRICE_CLOSE, 1)&#59; iMaSlowCurrent = iMAEx(SlowPeriod, MODE_EMA, 0, PRICE_CLOSE, 0)&#59; iMaFastPrevious = iMAEx(FastPeriod, MODE_EMA, 0, PRICE_CLOSE, 1)&#59; iMaFastCurrent = iMAEx(FastPeriod, MODE_EMA, 0, PRICE_CLOSE, 0)&#59; //Filters Settings Filter_ATR = iATR(26,0)&#59; Filter_RSI = iRSI(14,0)&#59; Filter_WPR = iWPR(14,0)&#59; Filter_ABS = ABS(Filter_WPR)&#59; If TotalTrades<1 then { If FreeMargin<Limit then Exit&#59; // Long Entry Rules If iMaFastPrevious<iMaSlowPrevious and iMaFastCurrent>iMASlowCurrent and Filter_ABS<25 and Filter_ATR>0.0013 and Filter_RSI>64 Then { SetOrder(OP_BUY,ilo,Ask,Slippage,Ask-stoploss*Point,Ask+TakeProfit*Point,BLUE)&#59; Exit&#59; }&#59; // Short Entry Rules If iMaFastPrevious>iMaSlowPrevious and iMaFastCurrent<iMASlowCurrent and Filter_ABS>75 and Filter_ATR>0.0013 and Filter_RSI<36 Then { SetOrder(OP_SELL,ilo,Bid,Slippage,Bid+stoploss*Point,Bid-TakeProfit*Point,RED)&#59; Exit&#59; }&#59; Exit&#59; }&#59; For cnt=1 to TotalTrades { mode=OrderValue(cnt,VAL_TYPE)&#59; If mode=OP_BUY then { If iMaFastPrevious>iMaSlowPrevious and iMaFastCurrent<iMASlowCurrent then { CloseOrder(OrderValue(cnt,VAL_TICKET),OrderValue(cnt,VAL_LOTS),Bid,Slippage,Orange)&#59; Exit&#59; }&#59; }&#59; If mode=OP_SELL then { If iMaFastPrevious<iMaSlowPrevious and iMaFastCurrent>iMASlowCurrent then { CloseOrder(OrderValue(cnt,VAL_TICKET),OrderValue(cnt,VAL_LOTS),Ask,Slippage,RED)&#59; Exit&#59; }&#59; }&#59; }&#59; For cnt=1 to TotalTrades { If Ord(cnt,VAL_TYPE)=OP_BUY then { If (Bid-Ord(cnt,VAL_OPENPRICE))>(TrailingStop*Point) then { If Ord(cnt,VAL_STOPLOSS)<(Bid-TrailingStop*Point) then { ModifyOrder(Ord(cnt,VAL_TICKET),Ord(cnt,VAL_OPENPRICE),Bid-TrailingStop*Point,Ord(cnt,VAL_TAKEPROFIT),BLUE)&#59; Exit&#59; }&#59; }&#59; }&#59; If Ord(cnt,VAL_TYPE)=OP_SELL then { If (Ord(cnt,VAL_OPENPRICE)-Ask)>(TrailingStop*Point) then { If Ord(cnt,VAL_STOPLOSS)>(Ask+TrailingStop*Point) or Ord(cnt,VAL_STOPLOSS)=0 then { ModifyOrder(Ord(cnt,VAL_TICKET),Ord(cnt,VAL_OPENPRICE),Ask+TrailingStop*Point,Ord(cnt,VAL_TAKEPROFIT),Red)&#59; Exit&#59; }&#59; }&#59; }&#59; }&#59; [此帖子已被 hilow 在 2004-9-27 2:46:31 编辑过] [ Last edited by 老正 on 2005-2-2 at 18:42 ]
TK29帖子1楼右侧xm竖版广告90-240
个性签名

广告
TK30+TK31帖子一樓廣告
TK30+TK31帖子一樓廣告
jxq168
注册时间2004-07-28
北客
注册时间2005-01-26
发表于:2005-02-01 08:27只看该作者
3楼
在 mt 中 如何表示 2条均线的交叉呢 飞狐中的 cross 函数
北客
注册时间2005-01-26
发表于:2005-02-03 08:37只看该作者
5楼
请修改后重新发 代码中 好多乱码呀!?
ForrestLiu
注册时间2004-11-30
悠悠71
注册时间2004-07-03
发表于:2005-02-04 14:41只看该作者
7楼
Originally posted by 北客 at 2005-2-3 16:37 请修改后重新发 代码中 好多乱码呀!?
强烈支持重新发一遍,乱码看不懂:L

本站免责声明:

1、本站所有广告及宣传信息均与韬客无关,如需投资请依法自行决定是否投资、斟酌资金安全及交易亏损风险;

2、韬客是独立的、仅为投资者提供交流的平台,网友发布信息不代表韬客的观点与意思表示,所有因网友发布的信息而造成的任何法律后果、风险与责任,均与韬客无关;

3、金融交易存在极高法律风险,未必适合所有投资者,请不要轻信任何高额投资收益的诱导而贸然投资;投资保证金交易导致的损失可能超过您投入的资金和预期。请您考虑自身的投资经验及风险承担能力,进行合法、理性投资;

4、所有投资者的交易帐户应仅限本人使用,不应交由第三方操作,对于任何接受第三方喊单、操盘、理财等操作的投资和交易,由此导致的任何风险、亏损及责任由投资者个人自行承担;

5、韬客不隶属于任何券商平台,亦不受任何第三方控制,韬客不邀约客户投资任何保证金交易,不接触亦不涉及投资者的任何资金及账户信息,不代理任何交易操盘行为,不向客户推荐任何券商平台,亦不存在其他任何推荐行为。投资者应自行选择券商平台,券商平台的任何行为均与韬客无关。投资者注册及使用韬客即表示其接受和认可上述声明,并自行承担法律风险。

版权所有:韬客外汇论坛 www.talkfx.com 联络我们:[email protected]