無料でロボットをダウンロードする方法を見る
Twitter上で私たちを見つけてください。
私たちのファンページに参加してください
興味深いスクリプト?
それではリンクにそれを投稿してください。-
他の人にそれを評価してもらいます
記事を気に入りましたか?MetaTrader 5ターミナルの中でそれを試してみてください。
エキスパート

MAGNA RAPAX - MetaTrader 4のためのエキスパート

ビュー:
18660
評価:
(9)
パブリッシュ済み:
2013.09.16 12:21
アップデート済み:
2016.11.22 07:32
このコードに基づいたロボットまたはインジケーターが必要なら、フリーランスでご注文ください フリーランスに移動

Intro:

Magna Rapax in latin aka. the Great Hunter will hunt pips for you in the wildernesses of the Forex market.It is an automated expert advisor made for any timeframe (over 1 min is recommended).

So after a long work, my expert advisor is complete.It is an attempt to do the impossible, to find a Holy Grail in forex,which is very very rare and very hard to find, but once found it does miracles.This EA and it's future versions should be the closest to a Holy Grail as it can ever get (and its FREE).The EA will use a combination of trend following,breakout and volatility filtering tehniques to put on trades.If you think thats not enough then you can switch on the martingale system (OPTIONAL) which is recommended to be set at 4-5 otherwise it will blow your account! Last but not least, many thanks for the MQL4 community for helping me develop this EA!

Explanation:

start_lot=0.01; //order lot size
TAKEPROFITPIPS=99; // take profit in pips
STOPLOSSPIPS=99; // stop loss in pips
MAX_ACCOUNT_RISK=25; //in percent,closes all losing trades if AccountEquity goes below AccountBalance by this amount
MARTINGALE_ACTIVATOR=false; // wanna use martingale system?
MARTINGALE_LEVELS=5; // what levels to go,ex level 5= 2^5 multiplicator for lot
MARTINGALE_PROGRESSION=false; //false= doubles only losing trades, true=doubles all trades
TOTAL_BUY_ORDERS=1; //how many buy orders to place at a time,maximum
TOTAL_SELL_ORDERS=1; //how many sell orders to place at a time,maximum
MAX_SLIPPAGE=3; //max slippage tolerated
FAST_MACD_P=5; //fast macd period
SLOW_MACD_P=35; //slow macd period
SIGNAL_PERIOD=5; //signal period macd
ATR_SLOW_PERIOD=24; // atr slow period
ATR_QUICK_PERIOD=5; // atr quick period
ADX_PERIOD=14; // adx period

ADX_LIMIT_TRIGGER=50; // trigger point which above adx will only take trades

My results:



Tips:

  • I upload my settings file, at that settings this is what you get (i also used martingale level 5)
  • The EA is neither complete nor optimalized, if you find a setting combination with higher win rate/profit or would like to add more features to it please contact me so i can improve the EA, after all it's our common goal ;)
  • This EA is only the first edition, and if you help me to improve it by backtesting and trying different combinations of settings i will improve it and upload the reworked editions
  • The EA also has a built in order closing function when the opposite trading signs appear,this will close seemingly losing trades, but you can also use tight stop-loss or take-profit as you wish


DISCLAIMER: This expert advisor is only made for educational purposes.It is advised to backtest it first or use it on demo accounts.If you decide to use it on real accounts, you do it at your own risk.I as the author,am not responsible for any material or any other types of losses ocurring when/during the usage of this expert advisor!

STRADDLE NEWS STRADDLE NEWS

This EA puts two simultaneously Pending Orders (Buy Stop and Sell Stop), when activated one of two pending orders, the reverse pending order is closed.

Close Pending Orders.mq4 Close Pending Orders.mq4

This script can close all your pending orders in your MT4, or you can select different pending orders.

Simple Support and Registance Lines Simple Support and Registance Lines

This indicator shows simple Support and Registance lines.

Rogue tick detector Rogue tick detector

Detects fake, old, stale, or other erroneous ticks that come to the MT4 platform. These rogue ticks can sometimes cause a take profit, stop loss, trigger orders and/or any price-related action to occur when the price is actually no longer actionable.