Eagle Night Ranger

Eagle NightRanger — Night Range Scalper | MT4

Eagle NightRanger is a fully automated scalping EA designed for the Asian session and New York close (GMT 18:00–01:00). It exploits low-volatility ranges by combining a Bollinger Bands compression filter with a Williams %R momentum trigger. One position at a time. Fixed Stop Loss in the order, Take Profit managed in code. Optional breakeven, trailing stop, daily loss/profit limits and automatic Friday close are built in and disabled by default.

Strategy Logic

  1. Session Gate — All entry logic is restricted to GMT 18:00–01:00 (Asian markets / NY close). Exits remain active at all times. On symbols without a built-in preset the session gate is lifted and the EA trades around the clock using the chart timeframe.
  2. Spread Filter — If the live broker spread exceeds MaxSpread, entries are suppressed to avoid being caught by widening spreads at session transitions. On unknown symbols the effective ceiling is automatically raised to at least 150 pts for compatibility.
  3. Bollinger Bands Compression — BB width must fall inside a calibrated range: wide enough to confirm movement, narrow enough to confirm the market is not in breakout mode. Both bounds are tuned per symbol in the built-in preset table. On unknown symbols the BB filter is disabled so the WPR signal alone drives entries.
  4. Williams %R Signal — WPR below −95 triggers a BUY at Ask with a fixed SL. WPR above −5 triggers a SELL at Bid with a fixed SL. On unknown symbols thresholds are relaxed to −80 / −20. One entry per completed bar is enforced.
  5. Exit — WPR Reversal or Profit Target — An open BUY closes when WPR rises above −5, or when Bid has moved TakeProfit points above the entry price — whichever comes first. Mirror logic applies to SELL trades. The broker-side TP is kept at 0 so the EA manages profit exits cleanly through code.
  6. Breakeven & Trailing Stop (optional, default off) — Once a trade reaches BreakevenTrigger points in profit the SL is moved to entry price, then trails by TrailingStep points on every tick, locking in more profit as the trade extends.
  7. Daily Loss / Profit Cap (optional, default off) — Trading halts for the remainder of the GMT day when the session P&L drops below DailyLossPercent or rises above DailyProfitPercent of the balance at session open. Resets automatically at midnight GMT.
  8. Friday Session Close (optional, default off) — All positions are closed and new entries blocked from TimeFridayClose (GMT) every Friday, protecting against weekend gap risk.

Built-in Symbol Presets

Enable UseBuiltinPresets = true (default) and the EA loads back-tested parameters automatically. Unknown symbols use relaxed filters (BB disabled, WPR −80/−20, 24 h session) and fall back to your manual WPR_Period, StopLoss and TakeProfit inputs.

Symbol WPR Period Stop Loss Take Profit BB Min Width
GBPCAD 110 800 pts 300 pts 150 pts
GBPCHF 110 600 pts 200 pts 150 pts
EURSGD 140 700 pts 160 pts 150 pts
CHFSGD 60 700 pts 160 pts 0 pts *
GBPSGD 35 700 pts 160 pts 0 pts *

* SGD pairs trade in naturally tight ranges during the night session. The BB minimum-width filter is disabled so the EA can still detect valid signals.

Key Features

  • MT4 & MT5 native — two fully independent source files, no compatibility layers
  • Fixed or compound lot sizing — fixed lot, or auto-scale with equity using the compound multiplier formula: Lot = Equity × Factor / 1,000,000
  • Lot normalisation — lot size is automatically rounded to the broker lot step and clamped between min/max volume, preventing order rejection errors on any account type
  • Built-in symbol presets — one click loads optimised WPR period, SL, TP and BB bounds per pair; unknown symbols use automatic relaxed filters
  • Breakeven & trailing stop — optional: once profit reaches the trigger threshold the SL moves to entry, then trails tick by tick
  • Daily loss / profit cap — optional: EA stops entering new trades for the day after hitting the configured loss or profit percentage
  • Friday session close — optional: closes all positions and blocks new entries before the weekend at a configurable GMT cutoff
  • Code-managed Take Profit — TP tracked in code, not placed on the broker server, avoiding slippage on TP orders
  • Spread protection — configurable spread ceiling stops trading during liquidity gaps and news events
  • One-bar entry guard — prevents duplicate orders from rapid tick activity on the same bar
  • Up to 10 retries — automatic retry on OrderSend / trade execution failures before logging the error
  • Unique Magic Number — prevents interference with manual trades or other EAs on the same account
  • Live dashboard — always-on panel shows Balance, Equity, P&L Today, Spread, Session status, BB filter, WPR reading, active position and preset SL/TP
  • Midnight chart theme — automatic chart colour scheme applied on attach; grid disabled

Input Parameters

Parameter Default Description
Lots 0.1 Fixed lot size (used when UseCompoundLots = false)
UseCompoundLots false When true, lot size scales automatically with account equity
CompoundRiskFactor 40 Compound multiplier — Lot = Equity × Factor / 1,000,000. At $10,000 and factor 40 → 0.40 lot
UseBuiltinPresets true Loads back-tested WPR period, SL, TP and BB bounds automatically per symbol
WPR_Period 110 Williams %R look-back period. Active only when UseBuiltinPresets = false or on unknown symbols
StopLoss 800 Stop Loss distance in points from entry price. Active only when UseBuiltinPresets = false or on unknown symbols
TakeProfit 300 Profit target in points from entry price. Managed in code, not placed on the broker server
MaxSpread 50.0 Maximum broker spread in points to allow entries. Set 0 to disable. On unknown symbols the effective ceiling is max(MaxSpread, 150)
UseBreakeven false Enable breakeven and trailing stop management
BreakevenTrigger 150 Points in profit required to move SL to entry (breakeven). Requires UseBreakeven = true
TrailingStep 50 Trail step in points after breakeven is activated. SL follows price at this distance
UseDailyLimits false Enable daily loss and profit cap
DailyLossPercent 2.0 Stop trading for the day after this % drawdown from session-open balance. Requires UseDailyLimits = true
DailyProfitPercent 3.0 Stop trading for the day after this % gain from session-open balance. Requires UseDailyLimits = true
CloseOnFriday false Close all positions and block new entries before the weekend
TimeFridayClose 20:30 GMT time (HH:MM) at which Friday trading stops and open positions are closed. Requires CloseOnFriday = true
MagicNumber 888999 Unique identifier for all orders placed by this EA
TradeComment EagleNightRanger Comment string attached to all orders in the terminal history

Recommendations

  • Account type — ECN or Raw Spread account with spread below 20 pts on GBPCAD during the Asian session. Avoid standard / fixed-spread accounts.
  • VPS required — the session window (18:00–01:00 GMT) requires the terminal to run 24/7. A VPS in a GMT±1 data centre ensures low latency and no missed entries.
  • Chart timeframe — attach the EA to an M1 chart for the five built-in pairs. All indicator calculations run on M1 internally for known symbols. On unknown symbols the EA automatically uses the chart timeframe for indicators.
  • Minimum capital — $500 per 0.01 lot recommended. For compound mode, start with a factor of 10–20 to validate on your broker’s feed before scaling.
  • Risk features — enable UseBreakeven and UseDailyLimits to reduce drawdown. Recommended starting values: BreakevenTrigger = 150 pts, TrailingStep = 50 pts, DailyLossPercent = 2%, DailyProfitPercent = 3%.
  • Weekend protection — enable CloseOnFriday with TimeFridayClose = 20:30 GMT to avoid gap risk over the weekend.

Trading involves significant risk of loss. Past performance is not indicative of future results. Use this EA only with capital you can afford to lose.

おすすめのプロダクト
ロボットは、ボリンジャーバンド指標のラインをブレイクする取引戦略を使用します。 この戦略の本質は、インジケーターラインの継続的な分析と、そのラインの最も効果的なブレイクアウトポイントの検索にあります。 価格がいずれかの方向で指標線を突破すると、ロボットはその方​​向で取引を開始し、それに追従し始めますが、ロボットは指標線が突破されるたびに取引を開始するわけではなく、指標線が突破された場所でのみ取引を開始しますそれが最も効果的であると考えられます。 これは、世界中の何千人ものトレーダーによって長年にわたってテストされてきた、非常に信頼できる戦略です。 これは、GPTchat が学習のために提供する実用的なスキャルピング戦略の 1 つです。 人工知能は、これが M5 時間枠で最も効果的な取引スキャルピング戦略の 1 つであると信じています。 私たちは人工知能にも同意し、この戦略の実際の有効性を確認します。 ロボットの利点: マーチンゲールは使用しません。 ロットサイズはトレーダーが設定で指定します。 残高が10%増加するごとにロットが10%増加します ロボットは適応型リスク管理機能を使
Ict Gold Scalper
Alex Amuyunzu Raymond
5 (1)
ICTVALID EA – Smart Money Concepts Automated Trading The ICTVALID EA is a professional trading system built on Smart Money Concepts (ICT methodology) . It automatically detects and trades institutional setups, allowing you to follow market structure with precision and consistency.  Key Features Dual Trading Modes – Choose between Scalping (short-term precision entries) or Swing Trading (longer-term trends). Smart Money Logic – Incorporates Change of Character (CHoCH), Break of Structure (BoS),
GOAL TIME is an expert advisor based on the notion of time, it studies the change of price according to time, and it finally detects the best time to execute a good order. The EA is based on an indicator that draws a price curve in relation to time, this curve is deduced by an algorithm that analyzes old data. Then, the EA exploits the generated curve and executes the correct order. In case of incorrect choice, the EA has the mission to limit the losses. After a thorough study of this strategy o
| Fully-automated Smart Money Concept (ICT) inspired trading solution with multi-strategy capabilities | Built by a grid trader >> for grid traders.  This is MT4 version, click  here  for  Blue CARA MT5  (settings and logics are same in both versions)     Real monitoring signal  -->  Cara Gold Intro Blue CARA EA   ('CARA') - short for  C omprehensive  A lgorithmic R esponsive A dvisor is a next-gen  multi-currency    multi-timeframe  EA base on the widely known (and perhapse most popular) Inn
Gold Pulse MT4
Ivan Martinez Guillen
5 (1)
GoldPulse MT4 — Professional Gold Scalper GoldPulse MT4 is a fully automated Expert Advisor designed exclusively for XAUUSD on MetaTrader 4. The strategy is based on pure price action. The EA reads the market bar by bar and only opens trades when Gold shows clear directional conviction, avoiding noise and false signals. When no valid setup is present, it waits. Recovery System When a trade moves against the initial entry, GoldPulse activates a conditional grid recovery. New positions are only ad
Gold Crazy EA   is an Expert Advisor designed specifically for trading Gold H1/ EU M15. It use some indicators to find the good Entry. And you can set SL or you can DCA if you want. It can be an Scalping or an Grid/ Martingale depend yours setting. This EA can Auto lot by Balance, set risk per trade. You also can set TP/ SL for earch trade or for basket of trade. - RSI_PERIOD - if = -1, then the default strategy works, if >0, then the RSI strategy works - MAX_ORDERS - to trade with only 1 order,
Matrix Arrow EA MT4
Juvenille Emperor Limited
5 (8)
マトリックスアローEAMT4 は、 マトリックスアローインジケーターのMT4 シグナルをチャート上のトレードパネルと手動または100%自動でトレードできるユニークなエキスパートアドバイザーです。 マトリックスアローインジケーターMT4 は、初期段階で現在のトレンドを判断し、最大10の標準インジケーターから情報とデータを収集します。平均方向移動指数(ADX) 、 商品チャネルインデックス(CCI) 、 クラシック平研アシキャンドル 、 移動平均 、 移動平均収束発散(MACD) 、 相対活力指数(RVI) 、 相対力指数(RSI) 、 放物線SAR 、 ストキャスティクス 、 ウィリアムズのパーセント範囲 。 すべてのインジケーターが有効な買いまたは売りシグナルを与えると、対応する矢印がチャートに印刷され、次のろうそく/バーの開始時に強い上昇トレンド/下降トレンドを示します。ユーザーは、使用するインジケーターを選択し、各インジケーターのパラメーターを個別に調整できます。 Matrix Arrow EA MT4 を使用すると、チャートのトレードパネルから直接、または100%アルゴリズム取
ROYAL DUTCH SKUNK USES THE TREND WAVE INDICATOR AND IT CAN IDENTIFY THE BEGINNING AND THE END OF A NEW WAVE TREND MOVEMENT. AS AN OSCILLATOR, THE INDICATOR IDENTIFIES THE OVERBOUGHT AND OVERSOLD ZONES. IT WORKS GREAT TO CATCH THE SHORT TERM PRICE REVERSALS AND USES A MARTINGALE STRATEGY TO CLOSE ALL TRADES IN PROFIT. USE DEFAULT SETTINGS ON H1 OR HIGHER TIME FRAME ON ANY PAIR FOR MORE ACCURATE TRADES WHY THIS EA : Smart entries calculated by 6 great strategies The EA can be run on even a $20000
Super grid nineth (ninth) generation is another grid type EA on this huge forex system population, this EA not using any indicator to avoid any fake signaling to open or closing position orders. This EA will open pending order stop and limit in the first time EA run, then maintain all opened order with unique way to balancing account free margin and make equity growth. This EA have unique system not like anyother grid EA, with correct setup and run on max 3 pairs in one account, this EA capable
Magic EA MT4
Kyra Nickaline Watson-gordon
3 (1)
Magic EA is an Expert Advisor based on Scalping, Elliot Waves and with filters such as RSI, Stochastic and 3 other strategies managed and decided with the robot smartly. Large number of inputs and settings are tested and optimized and embedded in the program thus inputs are limited and very simple. Using EA doesn't need any professional information or Forex Trading Knowledge. EA can trade on all symbols and all time frames, using special and unique strategies developed by the author. The EA wo
BBMAGC   BBMAGC  is an automatic trading system with a work strategy obtained from famous BBMA indicator combine with advance grid system . This EA use dangerous trading systems like martingale and grid so please understand the risk before using this EA Time Frame: H1 Symbol: best result on EUR/USD, GBPUSD, GBPCAD VPS recommended 4/5 digit broker Min Deposit 1000$ Low spread always better Since you using Grid system, always trade using money that you are willing to lose. When you use an expert a
FREE
Prime Gold HFT Ali Coded by Prime Capital Vietnam Best with XAUUSD -  High frequency trading Find your best setting with the backtest before trade with a real account please! With default setting: - Deposit: min 10k-20k money (USC or USD) - Lot trade from 0.01 - Max DD: ~10-20% - Profit: ~10-20% per month with default setting - Leverage: best with 1:2000 Note: - Best with spread max < 30 - Time frame: any - Important: Contact Us before buy  ------   ------   ------   ------   ------   ------
This is a trading robot to work on USDCHF - Timeframe H1 . It exploits a statistical advantage produced in the Swiss franc. All trades with SL and TP. Backtest now!   Special OFFER for this week Discount price - $ 49. Next price $ 149. BUY NOW!!!   Would you like to see how 100 dollars turn into more than 3 million dollars? Do you already have a robust strategy that works on USDCHF ? TC Poseidon EA is the god of the seas, water, storms, hurricanes, earthquakes, and horses. Use its power to
Fully automatic professional MT4 trading system The strategy is based on four author's indicators that are embedded in the adviser's code, trading takes place at night Each trade has a Take Profit and Stop Loss. Testing on real ticks since 2010 with 99.9% probability The EA has two trading modes: fixed lot or dynamic lot, which is calculated based on the deposit. For every 100$ - 0.01 lots. The adviser does not open many trades, about ten per month for each currency pair, since there are s
High Volatile
Gennady Kuznetsov
3 (1)
High Volatile High Volatile expert Advisor. designed to work in the highly volatile market. The EA operation is based on the price return to the channel.  It uses pending orders buy stop and sell stop. All parameters are set to the highest profitability. The stop loss has been increased to 100 pips, which excludes fast closing of orders at a loss.   Currency pairs  GBPUSD, EURCHF, USDCHF and other volatile pairs.   Time frame M1.  Spread is not more than 10 (5 digits).  The account must be EC
Golden Hills FX  USES THE TREND WAVE INDICATOR AND IT CAN IDENTIFY THE BEGINNING AND THE END OF A NEW WAVE TREND MOVEMENT. AS AN OSCILLATOR, THE INDICATOR IDENTIFIES THE OVERBOUGHT AND OVERSOLD ZONES. IT WORKS GREAT TO CATCH THE SHORT TERM PRICE REVERSALS AND USES A MARTINGALE STRATEGY TO CLOSE ALL TRADES IN PROFIT. USE DEFAULT SETTINGS ON H1 OR HIGHER TIME FRAME ON ANY PAIR FOR MORE ACCURATE TRADES WHY THIS EA : Smart entries calculated by 4 great strategies The EA can be run on even a $3
Max ScalperSpeed   is a fully automated expert advisor. This system has been developed to improve the efficiency of generating more returns. Rely on scalping trading strategies and recovery strategies with appropriate trading frequencies, and also able to work well in all market conditions, whether trend or sideways, able to trade full time in all conditions. Enable or disable news filtering according to user needs. Added a proportional lot size adjustment function, where users can choose to ad
EA Dark Engine is a fully automated trading system engineered for Forex pairs and Gold (XAUUSD). It leverages a proprietary algorithmic framework combining price action analytics, tick-pattern detection, and time-based market monitoring to identify high-probability trading opportunities with precision. The system employs a scalping methodology, designed to capture small, consistent gains during favorable volatility through rapid entries and exits. Integrated risk controls — including adjustabl
he expert works on the Zigzag levels on the previous candle With some digital way to enter the deal On the five minute frame Work on currency pairs only Do not use TakeProfit or Stop Loss How the expert works It is placed on the three currency pairs GBPUSD GBPJPY GBP AUD Same settings without changing anything When he works, he will work on only one currency of them until it closes on a profit Profit is only seven points Please watch the video Explains how the expert works. Max Spread = 0.3 Bro
This automated trading robot uses the capabilities of the macd indicator to create a grid strategy. The algorithm creates a grid strategy at overbought and oversold levels and in times of high volatility. This makes it susceptible to all price fluctuations. The Close Money input is the total amount of earnings in the cycle. We define it as the total take profit amount in the cycle. It has the ability to open more cycles in short periods. However, you can use the robot in medium-term trading. Rea
Want to make your trading nice and easy? Well, it all depends on your definition of nice and easy. Introducing the Nice and Easy EA. This automated expert advisor lets you make an order with stop losses and take profits set automatically. It is designed for level trading.This EA is about versatility. A trade will execute when you drag it into your chart. After backtesting the product, it will automatically activate. It has the ability to make buy stops, buy limits, sell stops and sell limits. Th
Magic Grid
Aliaksandr Charkes
4.54 (28)
Magic Grid is an indicator-free advisor that uses a grid strategy. The strategy is based on automatic reopening of grid pending orders, after closing their market positions (by Take-Profit, Stop-Loss or manually). Pending orders are placed with a specified step from the initial prices, which can be entered manually or generated automatically ( one time at the beginning of the trade ). The robot can trade on any time frame, on any currency pair, on several currency pairs, and on any number of di
FREE
Harvest GOLD USES THE TREND WAVE INDICATOR AND IT CAN IDENTIFY THE BEGINNING AND THE END OF A NEW WAVE TREND MOVEMENT. AS AN OSCILLATOR, THE INDICATOR IDENTIFIES THE OVERBOUGHT AND OVERSOLD ZONES. IT WORKS GREAT TO CATCH THE SHORT TERM PRICE REVERSALS AND USES A MARTINGALE STRATEGY TO CLOSE ALL TRADES IN PROFIT. USE DEFAULT SETTINGS ON H1 OR HIGHER TIME FRAME ON ANY PAIR FOR MORE ACCURATE TRADES WHY THIS EA : Smart entries calculated by 3 great strategies The EA can be run on even a $30000
Quick Scalper EagleUI is a MetaTrader 4 Expert Advisor designed for short-term RSI and ATR based trading. The EA looks for RSI recovery and rejection patterns on a selected signal timeframe, with optional EMA trend confirmation to help filter entries. The strategy uses ATR-based stop loss and take profit levels, spread protection, session controls, day-of-week filters, and one-trade-per-bar execution. It also includes break-even and trailing stop management for open positions. A compact chart pa
Equili brium 4 cent Equilibrium4cent was designed to run on cent accounts. If you have at least 10, 000 $ you can run in to a standard account  I run this EA in cent account or micro. (840% in 3 years better that Bank :) just see the video ). Software designed on the basis of mass theory.  My favorite pairs to run it is EURCAD, EURAUD and EURGBP. You can run it on other pairs, like EURUSD, GBPUSD and etc... For Grid trading you need Money! The ideia is to make more Money that in the Bank. Risk
Grail Gold FE
Huynh Van Cong Luan
3 (2)
Grail Gold FE  is an expert advisor who uses a combination of trading strategies.  Grail Gold FE  uses a unique method to determine the levels of Take Profit and Stop Loss. Each time after opening an order, they appear at different levels and eventually begin to approach the current price. It doesn't require any settings. The robot starts working immediately after installing it on the chart. Based on the current price and spread, current lows/highs are formed, as well as current support/resist
EA Baby Shark Trader is a smart trading system developed over the years and continuously improved. The EA uses trend and momentum scalping strategies. When the signal appeared, it quickly entered and then exited the position quickly. The strategy has an exclusive Stop Loss strategy to protect the account and optimize performance. Because the EA's Stop Loss is a complex and flexible market-based strategy, there are no specific parameters for Stop Loss. Stop Loss will be triggered under specific
MMM Zig Zag Strategy: The Expert Advisors uses its built-in Zig Zag indicator to determine the prices trends and calculates the signal to decide to open buy or sell positions. It sends an order, closes or moves the Trailing Stop loss position as the indicator works. You can define the time period of each day of the week the EA should not trade (the bad time to trade). Usually the period of day when the impact news are published. General Inputs: Closes orders with any profit of value (currency):
Correlation Beast V2.05 - Skyrocket Your Forex Trading! Unlock the power of currency correlations with Correlation Beast V2.5 , the ultimate Expert Advisor for MetaTrader 4! Designed for traders who crave precision and profitability, this EA leverages advanced correlation strategies to identify high-probability trades. Whether you're a beginner or a pro, this tool is your key to mastering the Forex market! Why Choose Correlation Beast V2.5? Powerful Correlation Trading Trade sma
このプロダクトを購入した人は以下も購入しています
BB Return mt4
Leonid Arkhipov
5 (18)
BB Return — ゴールド(XAUUSD)取引のためのエキスパートアドバイザー(EA)です。このトレードアイデアは、以前に 裁量トレード で使用していたものを基にしています。戦略の中核は Bollinger Bands(ボリンジャーバンド) のレンジへの価格回帰ですが、機械的でも毎回のタッチでもありません。ゴールド市場ではバンドだけでは不十分なため、EA には弱い・機能しない相場状況を排除する追加フィルターが組み込まれています。回帰のロジックが本当に妥当な場合にのみ取引が行われます。   取引原則 — 本戦略ではグリッド、マーチンゲール、ナンピン(平均化)を使用しません。EA は 固定ロット または AutoRisk モードで動作します。BB Return はスプレッド、スリッページ、ブローカーの価格配信の違いに影響されにくく、 Standard、ECN、Pro、Raw、Razor など、あらゆるブローカー・口座タイプで使用できます。取引セッションに依存せず、 24時間稼働 します。   $ 359   は最終価格ではありません。 現在の価格で残りは5~7ライセンスのみです。
The Gold Reaper MT4
Profalgo Limited
4.61 (33)
プロップしっかり準備完了!   (   SETFILEをダウンロード ) ローンチプロモーション: 現在の価格で残りわずかです! 最終価格: 990ドル EA を 1 つ無料で入手 (2 取引アカウント用) -> 購入後に連絡してください Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal ゴールドリーパーへようこそ! 非常に成功した Goldtrade Pro を基にして構築されたこの EA は、複数の時間枠で同時に実行できるように設計されており、取引頻度を非常に保守的なものから非常に不安定なものまで設定するオプションがあります。 EA は複数の確認アルゴリズムを使用して最適なエントリー価格を見つけ、内部で複数の戦略を実行して取引のリスクを分散します。 すべての取引にはストップロスとテイクプロフィットがありますが、リスクを最小限に抑え、各取引の可能性を最大化するために、トレーリングストップロスとトレーリングテイプロフィットも使用します。 このシステムは、重要なサポート
Aurum AI mt4
Leonid Arkhipov
4.94 (32)
アップデート — 2025年12月 2024年11月末、Aurumは正式に販売開始されました。 それ以来、ニュースフィルターや追加の防御条件、複雑な制限なしで、実際の相場環境にて継続的に稼働してきましたが、安定して利益を維持してきました。 Live Signal (launch April 14, 2026) この1年間のリアル運用により、トレーディングシステムとしての信頼性が明確に証明されました。 そしてその実績と統計データを基に、2025年12月に大規模アップデートを実施しました: プレミアムパネルを全面刷新、すべての画面解像度に最適化 取引保護システムを大幅に強化 Forex Factoryを基にした高性能ニュースフィルターを追加 シグナル精度を向上させる2つの追加フィルター 最適化の強化、動作速度と安定性の向上 損失後に安全に回復するRecovery機能を搭載 プレミアムスタイルの新しいチャートテーマを採用 AURUMについて Aurum — ゴールド(XAU/USD)専用プレミアム自動売買EA Aurumはゴールド市場において、安定性と安全性を重視して開発されたプロ
Quantum King MT4
Bogdan Ion Puscasu
5 (5)
Quantum King EA — あらゆるトレーダーのために洗練されたインテリジェントパワー IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. 発売記念特別価格 ライブ信号:       ここをクリック MT5バージョン:   こちらをクリック クォンタムキングチャンネル:       ここをクリック ***Quantum King MT4 を購入すると、Quantum StarMan を無料で入手できます!*** 詳細についてはプライベートでお問い合わせください! ルール   正確さと規律をもって取引を行ってください。 クォンタムキング EA     構造化グリッドの強さと適応型マーチンゲールのインテリジェンスを 1 つのシームレスなシステムに統合しました。M5 上の AUDCAD 用に設計されており、安定した制御された成長を望む初心者とプロフェッショナルの両
Vortex Gold MT4
Stanislav Tomilov
4.93 (42)
Vortex - 未来への投資 Vortex Gold EAはメタトレーダープラットフォーム上で金(XAU/USD)を取引するために特別に作られたエキスパートアドバイザーです。独自の指標と作者の秘密のアルゴリズムを用いて構築されたこのEAは、金市場の有益な動きを捉えるように設計された包括的な取引戦略を採用しています。その戦略の主要な構成要素には、CCIやパラボリックインジケーターなどの古典的なインジケーターが含まれており、これらは理想的なエントリーポイントとエグジットポイントを正確に知らせるために連動します。Vortex Gold EAの核心は、高度なニューラルネットワークと機械学習テクノロジーです。これらのアルゴリズムは、過去のデータとリアルタイムのデータの両方を継続的に分析し、EAがより高い精度で進化する市場トレンドに適応し対応することを可能にします。ディープラーニングを活用することで、Vortex Gold EAはパターンを認識し、指標パラメーターを自動的に調整し、時間の経過とともにパフォーマンスを向上させます。Vortex Gold EAは、独自の指標、機械学習、適応可能な取
Live Signal:   https://www.mql5.com/en/users/varkotechnologies/seller MT5版:   https://www.mql5.com/en/market/product/164203 時間枠:       M1 通貨ペア:       XAUUSD Gold Safe EA Manual: https://www.mql5.com/ru/blogs/post/770312 Varko Technologiesは 企業ではなく、自由という哲学そのものです。 私は長期的な協力関係を築き、評判を高めることに興味があります。 私の目標は、変化する市場状況に対応するために、製品を継続的に改善・最適化することです。 ゴールドセーフEA     このアルゴリズムは複数の戦略を同時に使用しますが、主な理念は損失トレードとリスクの抑制に重点を置くことです。 取引の決済および管理には、複数の段階が用いられている。 Expertのインストール方法 EAからXAUUSD M1通貨ペアチャートにファイルを転送する必要があります。SETファイ
Gold Trade Pro
Profalgo Limited
4.61 (23)
プロモーションを開始します! 449ドルで残りわずかです! 次の価格: 599ドル 最終価格: 999ドル EA を 1 つ無料で入手 (2 取引アカウント用) -> 購入後に連絡してください Ultimate Combo Deal   ->   click here New live signal:   https://www.mql5.com/en/signals/2084890 Live Signal high risk :  https://www.mql5.com/en/signals/2242498 Live Signal Set Prop Firm Set JOIN PUBLIC GROUP:   Click here Parameter overview Gold Trade Pro はゴールド取引 EA の仲間入りですが、大きな違いが 1 つあります。それは、これが本物の取引戦略であるということです。 「実際の取引戦略」とは何を意味しますか?   おそらくお気づきかと思いますが、市場に出回っているほぼすべてのゴールド EA は単純なグリッド/マーチンゲール
XIRO Robot is a   professional trading system   created to operate on two of the most popular and liquid instruments on the market:  GBPUSD,  XAUUSD and BTCUSD . We combined two proven and well tested systems, enhanced them with multiple new improvements, optimizations and additional protective mechanisms, and integrated everything into one advanced and unified solution. As a result of this development process, XIRO Robot was created. Robot was designed for traders who are looking for a reliable
Boring Pips MT4
Thi Thu Ha Hoang
4.54 (13)
ほとんどのエキスパートアドバイザーがバックテストのパフォーマンスは完璧でも、実際の取引では効果的でない理由について考えたことはありますか? 最もありそうな答えは過学習です。多くのEAは利用可能な過去のデータに完璧に適応するように作成されていますが、構築されたモデルに一般化能力がないため、将来を予測することができません。 一部の開発者は、過学習の存在を知らないか、知っていても防止する方法を持っていません。他の人はそれをバックテスト結果を美化するためのツールとして利用し、統計的な有意性を考慮せずに数十の入力パラメータを追加し、取引戦略を過去のデータに過度に合わせ、自分の EA が将来において同様のパフォーマンスを達成できると他の人に納得させようとします。 もし興味があって、過学習についてより深く理解したい場合は、こちらの私の記事を参照してください。 Avoiding Over-fitting in Trading Strategy (Part 1): Identifying the Signs and Causes Avoiding Over-fitting in Trading St
Wall Street Robot is a   professional trading system   developed exclusively for US stock indices, focused on S&P500 and Dow Jones. These markets are known for their high liquidity, structured movements and strong reaction to global economic flows, making them ideal for algorithmic trading strategies based on precision and discipline. By concentrating only on these indices, the system is able to adapt closely to their behavior, volatility patterns and intraday dynamics, instead of trying to oper
Real monitoring :   XAUUSD M30 SL3 ,          XAUUSD M30 SL5 ,         XAUUSD__BTCUSD__ M30__SL3 For more information, please contact us via private message or in  the mql5 group. THERE   ARE   ONLY  2   OUT   OF   10   COPIES   LEFT   AT   A   PRICE   OF  649   USD ! AFTER   THAT , THE   PRICE   WILL   BE   INCREASED   TO  920   USD . Imagine that you have an experienced trader who monitors the market every day, waits for the price to break through an important level, and instantly opens a de
Waka Waka EA
Valeriia Mishchenko
4.25 (48)
8+ years of live track record with +12,000% account growth: Live performance MT 5 version can be found here Waka Waka is the advanced grid system which already works on real accounts for years. Instead of fitting the system to reflect historical data (like most people do) it was designed to exploit existing market inefficiencies. Therefore it is not a simple "hit and miss" system which only survives by using grid. Instead it uses real market mechanics to its advantage to make profit Supported cu
Limited stock at the current price! Final price: $1999 --> PROMO: From $299 --> The price will go up every 5 purchases, next price : $399 Golden Mirage is a robust gold trading robot designed for traders who value reliability, simplicity, and professional-grade performance. Powered by a proven combination of RSI, Moving Average,  ADX, and High/Low Level  indicators, Golden Mirage delivers high-quality signals and fully automated trading on the M5 timeframe for XAUUSD (GOLD) . It features a robu
AW Recovery EA
AW Trading Software Limited
4.35 (84)
Expert Advisor は、不採算ポジションを回復するために設計されたシステムです。 著者のアルゴリズムは、負けポジションをロックし、それを多くの別々の部分に分割し、それぞれを別々に決済します。簡単なセットアップ、ドローダウンの場合のローンチ遅延、ロック、他の Expert Advisor の無効化、トレンド フィルタリングによる平均化、負けポジションの部分決済が 1 つのツールに組み込まれています。 グループ全体でのみ注文をクローズするグリッド戦略とは対照的に、より低い預金負荷で損失を減らすことができ、損失をより安全に処理できるようにするのは、部分的に損失をクローズすることです。 注文が復元される方法: 1 EA は、選択した商品の他のウィンドウを閉じて、不採算の EA をオフにします (オプション)。 2 EA は、処理されたすべての注文のテイクプロフィットとストップロスのレベルをリセットし、対応する識別子を持つ保留中の注文を削除します。 3 EA は、利益を利用して不採算注文の一部をカバーし、総ポジション量を減らすために、すべての処理された採算性のある注文をクローズします
EA Game Changer
Vasiliy Strukov
4.2 (10)
Game Change EAは、Game Changerインジケーターをベースにしたトレンドフォロー型の取引システムです。赤いドットが形成されると自動的に売り、トレンドの終了を示す黄色のXが表示されるまで売り方向に進みます。買い取引にも同じロジックが適用されます。青いドットが表示されるとEAは買いを開始し、黄色のXが検出されるとすぐに買いサイクルを終了します。 このEAはあらゆる通貨ペアとあらゆる時間枠に適していますが、M15時間枠のxauusdなどの強いトレンド銘柄で特に優れたパフォーマンスを発揮します。 リアルタイムの結果はここで確認できます。 個人ボーナスを獲得するには、購入後すぐにご連絡ください。 設定・マニュアルはこちら   設定 Open new series – true/false - 新たな一連の注文の始まり。 Trade Buy - EAが購入できるようにする Trade Sell -  EAの販売を許可する Support manual orders – true/false – EAが手動注文を制御できるようにする Use hedge - EAが買いと売りの両方
EA Gold Stuff
Vasiliy Strukov
4.7 (1090)
EA Gold Stuffは、金取引のために特別に設計されたExpert Advisorです。 この作業は、ゴールドスタッフインジケーターを使用した注文の開始に基づいているため、アドバイザーはトレンドに従うことを意味する"トレンドフォロー"戦略に従って動作します。 重要! 指示とボーナスを得るために購入後すぐに私に連絡してください! トレンド スキャナーの強力なサポートを利用して、無料のインジケーターを入手し、プライバシーを守ります。あーみー!   リアルタイムの結果はここで見ることができます パラメータ 新しいシリーズを開く-新しいシリーズの注文の開始をオン/オフします。 開始ロット-開始ロット。 トレードバイ-Expert Advisorが購入できるようにします。 トレード売り-Expert Advisorが売ることを許可します。 ヘッジを使用する-機能が有効になっている場合、アドバイザーは買いと売りの両方の方向を取引し、機能が無効になっている場合、アドバイザーは一方向 マネー Manadgementを使用-オン/自動ロット計算の使用をオフにします。 オートロットオー
Javier Gold Scalper V2
Felipe Jose Costa Pereira
5 (4)
Javier Gold Scalper:あなたのそばにある最先端テクノロジー! マニュアルと設定ファイル:購入後にご連絡いただければ、マニュアルと設定ファイルをお渡しします 価格:販売されたライセンス数に応じて価格が上がります 残りのコピー数:5 金は金融市場でもっともボラティリティの高い資産の一つであり、取引には高度な正確性、慎重な分析、そして非常に効果的なリスク管理が必要です。 Javier Gold Scalper は、これらの柱を統合するために開発された強力で洗練されたシステムであり、金市場での取引を最適化することを目的としています。最先端のテクノロジーと高度な戦略を駆使して、Golden Scalperは初心者からプロのトレーダーまで対応し、このダイナミックな市場における課題を安全に乗り越え、チャンスを活かすサポートをします。Golden Scalperを使えば、金の特性に対応した信頼性の高いツールを手に入れることができます。 シンボル XAUUSD(金) 時間足 M30 PropFirm 対応済み 資金 最低 $1000 ブローカー どのブローカーでも可 口座タイプ ど
The XG Gold Robot MT4 is specially designed for Gold. We decided to include this EA in our offering after   extensive testing . XG Gold Robot and works perfectly with the   XAUUSD, GOLD, XAUEUR   pairs. XG Gold Robot has been created for all traders who like to   Trade in Gold   and includes additional a function that displays   weekly Gold levels   with the minimum and maximum displayed in the panel as well as on the chart, which will help you in manual trading. It’s a strategy based on  Price
Forex Dominance MT4
Ebrahim Mohamed Ahmed Maiyas
5 (2)
An advanced Expert Advisor powered by artificial intelligence and machine learning, specifically designed for analyzing Forex Market. It adapts to price movements and market fluctuations to detect potential trading opportunities. Discounted price   . The price will increase by $50 with every 5 purchases. No Risky Strategies   –   Does not use martingale or grid methods Artificial Intelligence Integration: At the heart of this EA les a sophisticated AI engine capable of recognizing complex patte
SentinelAI
Valeriia Mishchenko
No losing months since August 2019, with a 2.04% monthly gain: Live performance MT 5 version can be found here Sentinel AI is fully automated trading system is built for major forex pairs such as EURUSD and GBPUSD on the M5 timeframe. By combining price action and mean reversion principles with advanced AI-driven analytics, it is designed to identify potential trend reversals and exploit market inefficiencies with greater accuracy and efficiency. Supported currency pairs: EURUSD, GBPUSD Timefram
AI Prop Firms - Intelligent Automation Built for   Prop Trading Firms . AI Prop Firms is an advanced fully automated Forex trading system powered by   Artificial Intelligence , developed specifically to operate within the strict rules and evaluation models of prop trading firms. The system is designed to trade under controlled risk conditions while   maintaining consistency , stability, and compliance with prop firm requirements. AI Prop Firms uses intelligent market analysis logic that continu
GOLD Scalper PRO
Lachezar Krastev
4.46 (24)
ULTIMATE SALE! Get GOLD Scalper PRO with a huge –60% discount ! Special Ultimate Sale Price: $177 (Regular Price: $447 — You Save $270! Don't Miss!) Live Results:   https://www.mql5.com/en/signals/2353871 GOLD Scalper PRO is a fully automated trading system which takes much of the work out of trading, leaving you free to do other things! You should not be fooled by the low price – GOLD Scalper Pro is a very effective and profitable trading strategy, professionally developed especially for tra
EA Sweet Dreamsは、独自のインジケーターをベースにしたトレンドフォロー型の取引システムです。マーチンゲールグリッド戦略を採用しています。このEAはあらゆる通貨ペアとあらゆる時間枠に適していますが、M15時間枠のxauusdなどの強いトレンドの銘柄では特に優れたパフォーマンスを発揮します。 リアルタイムの結果はここで確認できます。 個人ボーナスを獲得するには、購入後すぐにご連絡ください。 設定・マニュアルはこちら   設定 Open new series – true/false - 新たな一連の注文の始まり。 Trade Buy - EAが購入できるようにする Trade Sell -  EAの販売を許可する Support manual orders – true/false – EAが手動注文を制御できるようにする Use hedge - EAが買いと売りの両方向で取引できるようにします。Falseの場合は、片方の取引方向のみ Max Orders – 許可される注文の最大量 Order Comment – システム名の説明 Start lots – 最小開始ロット
Multi Sniper mq
DMITRII GRIDASOV
5 (3)
MULTI SNIPER EA は、MT4プラットフォームで約90%の精度を誇る高精度自動取引システムです。 この収益性の高いスキャルピングEAは、現在市場で最も安定したシステムの一つです。   No grid! No martingale! このMQL5ウェブサイトでのみ提供されるオリジナル製品です。 テストと取引用の EA Set_files をダウンロードします 。  GBPAUD Set_file   GBPCAD Set_file - 複利法とスキャルピングテクニックを実装しています。 - システムは市場のボラティリティに応じて動的SLを自動的に設定します。 - EAはデフォルトで自動(ロット計算)リスク管理機能を備えており、固定ロットオプションも利用可能です。 - 取引エントリー感度パラメータを調整可能。 - 週末の取引ギャップを回避。 - 1分単位の高精度な動作時間フィルター。 - スプレッド表示機能搭載。 - ロボットには損益分岐点機能があります。 - 口座レバレッジ:1:30~1:2000の範囲で設定可能。 - 最も推奨される通貨ペアはGBPCADとGBPAUD
Saints Row Aggressive Scalperは、高速実行、精確なエントリー、そして変動の激しい市場での安定したパフォーマンスを求めるトレーダーのために構築された高頻度取引(HFT)エキスパートアドバイザーです。 XAUUSD(ゴールド)およびUSTEC(NASDAQ)に特化して設計されたこのEAは、精密かつアグレッシブなスキャルピングアプローチを使用して急速な価格変動を利用するように設計されています。流動性とボラティリティが最適な取引条件を生み出すニューヨーク取引セッション中に特に優れたパフォーマンスを発揮します。 重要:最高のパフォーマンスを得るために、このEAは低スプレッドと高速実行を備えたRAW / ECN口座で使用する必要があります。 Saints Row Aggressive Scalperが際立つ理由 機能 説明 高頻度スキャルピングエンジン 小さく安定した市場の動きを捉えるために高速取引を実行します。 最適化された取引商品 最大効率のためにXAUUSDとUSTECに特化して構築されています。 NYセッション最適化 流動性とボラティリティのピーク時に最高のパ
We proudly present our cutting-edge robot, the  Big Forex Players EA  designed to maximize your trading potential, minimize emotional trading, and make smarter decisions powered by cutting-edge technology. The whole system in this EA took us many months to build, and then we spent a lot of time testing it. This unique EA includes three distinct strategies that can be used independently or in together. The robot receives the positions of the  biggest Banks  (positions are sent from our database t
Vortex Turbo EA MT4
Stanislav Tomilov
5 (10)
Vortex Turbo — 「嵐を操り、Vortexを制する」 Vortex Turboは、最先端のAIアーキテクチャ、適応型市場ロジック、そして精密なリスク管理を融合した独自の開発技術であり、インテリジェントトレーディングの新たな進化段階を体現しています。実績のあるアルゴリズム原理に基づき、複数の戦略を、新たなレベルの予測インテリジェンスを備えた統合型高速エコシステムに統合します。金(XAUUSD(GOLD))のスキャルピングエキスパートとして設計されたVortex Turboは、制御されたマーチンゲール法と平均化グリッドを採用し、各   ポジションは内蔵のストップロスによって完全に保護されています   。これにより、パワー、精度、安全性の完璧なバランスが確保されています。 非常に重要です!エキスパートをご購入後、プライベートメッセージをお送りください。必要な推奨事項をすべて記載した説明書をお送りします。 399ドルの価格は2月15日まで有効です。その後、価格は499ドルに引き上げられます。(最終価格は999ドルです) Vortex Turbo     Expert Adviso
Trend Predictor EA
AW Trading Software Limited
4.47 (15)
AWトレンドプレディクターEA-トレンドインジケーターシグナルAWトレンドプレディクターを使用して取引するエキスパートアドバイザー。インジケーター戦略TakeProfitおよびStopLossを使用します。マルチタイムフレームフィルタリングを使用できます。インジケーターによって計算された固定のStopLossまたはStopLossがあります。時間ベースの作業と平均化は機能的に可能です。 Instruction and description ->  HERE  / MT5 version ->  HERE   利点: 現在のボラティリティに基づいてインジケーターによって計算された固定StopLossまたは動的StopLossを使用します 時間通りに働き、滑りと最大の広がりを制限する機能を持っています あらゆる種類の取引商品で動作します 手動で開いた位置の追跡に適しています 任意の時間枠で動作します。M15以上の時間枠で動作することをお勧めします より高い時間枠または長期間のインジケーターによってトレンドをフィルタリングする機能が含まれています オプションで平均化を使用できます 入力
Forex Alpha MT4
Ebrahim Mohamed Ahmed Maiyas
Forex Alpha MT4   is an advanced Expert Advisor specifically designed For major forex currency pairs   . It is powered by a modern artificial intelligence model trained on historical   major forex currency pairs   price data and runs directly inside   MetaTrader 4   using ONNX technology. The EA analyzes price movements, detects complex market patterns, and automatically executes trades based on AI-driven predictions. Discounted price   . The price will increase by $50 with every 5 purchases. N
Eagle Strike – Gold Velocity Scalper (XAUUSD) Eagle Strike is a disciplined scalping Expert Advisor for XAUUSD (Gold), designed for traders who prioritize execution quality and risk control. The strategy is based on price velocity and directional momentum. Trades are taken only when specific market conditions are met. Eagle Strike does not trade continuously and avoids unfavorable market phases. No Martingale. No Grid. Each trade uses a predefined Stop Loss and Take Profit. Position sizing is c
作者のその他のプロダクト
Eagle Strike – Gold Velocity Scalper (XAUUSD) Eagle Strike is a disciplined scalping Expert Advisor for XAUUSD (Gold), designed for traders who prioritize execution quality and risk control. The strategy is based on price velocity and directional momentum. Trades are taken only when specific market conditions are met. Eagle Strike does not trade continuously and avoids unfavorable market phases. No Martingale. No Grid. Each trade uses a predefined Stop Loss and Take Profit. Position sizing is c
Velocity Pulse Gold 2025 Velocity Pulse Gold is the fastest Gold breakout EA of 2025 – a revolutionary algorithm based on logarithmic velocity and price acceleration, developed after years of optimization on institutional-quality tick data. This is not your average EA: it detects genuine momentum pulses on XAUUSD M1 M5 and enters with intelligent pending orders (BuyStop/SellStop) at dynamic distance. Perfected trailing stop, automatic breakeven, Friday close – everything designed to maximize
Eagle Crest Gold — Fractal Breakout System for XAUUSD Eagle Crest Gold is a professional Expert Advisor for Gold (XAUUSD) built entirely on fractal breakout logic. No indicators, no guesswork — the EA places BuyStop and SellStop pending orders at key D1 fractal highs and lows , letting the market come to the entry rather than chasing price. This is the exact system used on live accounts, validated across years of historical Gold data. How It Works At the start of each new bar, the EA scans the D
Metrics Pro for Telegram - MT4 Metrics Pro for Telegram is a reporting utility for MetaTrader 4 that automatically sends your account performance data to a Telegram chat or channel via the Telegram Bot API. It is designed for algo-traders, signal providers, and fund managers who need scheduled performance summaries delivered directly to their phone without checking the terminal manually. The utility runs in the background on a chart and posts formatted reports at a scheduled server time. Reports
Metrics Pro for Discord - MT4 Metrics Pro for Discord is a reporting utility for MetaTrader 4 that automatically sends your account performance data to a Discord server via a Webhook. It is designed for signal providers, prop firm traders, and community managers who want to share structured trading results without manual effort. The utility runs in the background on a chart and posts formatted reports at a scheduled server time. Reports include account-level data as well as a breakdown per strat
Eagle Apex Gold — Fractal Breakout System for XAUUSD Eagle Apex Gold is a professional Expert Advisor for Gold (XAUUSD) built entirely on fractal breakout logic. No indicators, no guesswork — the EA places BuyStop and SellStop pending orders at key D1 fractal highs and lows , letting the market come to the entry rather than chasing price. This is the exact system used on live accounts, validated across years of historical Gold data. How It Works At the start of each new bar, the EA scans the D1
Metrics Pro for Telegram - MT5 Metrics Pro for Telegram is a reporting utility for MetaTrader 5 that automatically sends your account performance data to a Telegram chat or channel via the Telegram Bot API. It is designed for algo-traders, signal providers, and fund managers who need scheduled performance summaries delivered directly to their phone without checking the terminal manually. The utility runs in the background on a chart and posts formatted reports at a scheduled server time. Reports
Metrics Pro for Discord - MT5 Metrics Pro for Discord is a reporting utility for MetaTrader 5 that automatically sends your account performance data to a Discord server via a Webhook. It is designed for signal providers, prop firm traders, and community managers who want to share structured trading results without manual effort. The utility runs in the background on a chart and posts formatted reports at a scheduled server time. Reports include account-level data as well as a breakdown per strat
フィルタ:
レビューなし
レビューに返信