Account Protector Pro

Account Protector Pro is a free, lightweight Expert Advisor that monitors open positions and closes them when they exceed your configured profit or loss thresholds. It includes a daily loss limit that halts trading when triggered.

Features Overview

  • Weekend Gap Detection — Detects when markets reopen after a weekend gap and scans positions based on your configured thresholds.
  • Per-Trade Thresholds — Set a maximum profit or loss amount for individual trades. Positions that reach the limit are closed automatically.
  • Daily Loss Limit — Define a maximum daily drawdown. When equity drops below the threshold, all positions are closed.
  • Max Account Drawdown — Total drawdown limit from a reference balance that works across trading days. Useful for accounts with strict drawdown rules.
  • Equity Trailing Stop — Tracks your equity high-water mark and closes all positions if equity drops by a set amount from the peak.
  • Runs Alongside Other EAs — Monitors positions opened by other EAs without interfering with their logic.

Closing Conditions

  • Per-trade profit and loss close — close any position that exceeds a configured profit or loss amount
  • Lot-scaled loss limit — set a loss limit per 0.01 lot that scales with position size
  • Daily account loss limit — close all positions when daily drawdown is hit, then halt trading for the day
  • Max account drawdown — total drawdown limit from a reference balance, works across trading days and survives EA restarts
  • Equity trailing stop — tracks equity high-water mark, closes all when equity drops by a set amount, then resets and resumes trailing

Filters and Options

  • Symbol filter — monitor one specific instrument or all open positions
  • Lot size filter — only act on positions above a minimum lot size
  • Magic number filter — target trades from a specific EA, or monitor all trades
  • Weekend-only mode — activate only after weekend gaps (timezone-agnostic detection)
  • Configurable delay — wait N seconds after market open before scanning
  • Retry logic — automatic retries with configurable slippage
  • Multi-channel alerts — popup, push notification, and email alerts on every action
  • Built-in test mode — opens trades in the Strategy Tester so you can verify closing logic

Input Parameters

Symbol and Trade Filter

  • Symbol — leave empty to monitor all instruments, or enter a specific symbol (e.g. EURUSD)
  • Min Lots — minimum lot size to trigger (0 = any size)
  • Magic Number — filter by magic number (-1 = any EA)

Per-Trade Thresholds

  • Profit Close — close if trade profit reaches this amount (0 = disabled)
  • Loss Close — close if trade loss reaches this amount, entered as a positive number (0 = disabled)
  • Loss Per 0.01 Lot — loss limit per 0.01 lot. Scales with position size (e.g., 2 per 0.01 lot = a 1.0 lot trade closes at 200 loss). (0 = disabled)

Account-Level Limits

  • Daily Loss Limit — maximum daily account loss. When equity drops below (day-start balance minus limit), all positions are closed (0 = disabled)
  • Max Drawdown — maximum total drawdown from the reference balance. Closes all positions and halts the EA when hit (0 = disabled)
  • Reference Balance — the balance to measure drawdown from. Set this to your account starting balance so the limit survives EA restarts (0 = use balance at EA startup)
  • Equity Trailing Stop — close all positions if equity drops this amount from its peak (high-water mark). After closing, the peak resets and trailing resumes. (0 = disabled)

Timing

  • Weekend Only — only activate after weekend gaps
  • Delay Seconds — seconds to wait after market open before acting

Close Order Settings

  • Slippage — max slippage in points (default 50)
  • Max Retries — number of retry attempts on failed close orders

Notifications

  • Alert Popup — show alert popup on close
  • Push Notification — send push notification to mobile
  • Email Notification — send email alert

Usage Examples

Example 1: Weekend Gap Scanning on EURUSD

  • Symbol: EURUSD
  • Min Lots: 1.0
  • Profit Close: 5000
  • Loss Close: 2000
  • Weekend Only: true
  • Delay: 30 seconds

Monitors EURUSD positions of 1+ lots. After the Monday open, waits 30 seconds, then closes any position above 5000 profit or 2000 loss.

Example 2: Daily Loss Limit

  • Symbol: (empty, monitors all)
  • Daily Loss Limit: 5000
  • Weekend Only: false

Monitors all positions on every tick. If total daily drawdown reaches 5000, all open positions are closed and the EA halts for the rest of the day.

Example 3: Drawdown Rule Compliance

  • Symbol: (empty, monitors all)
  • Loss Close: 500 per trade
  • Daily Loss Limit: 2500
  • Max Drawdown: 5000
  • Reference Balance: 100000
  • Weekend Only: false

Useful for accounts with drawdown rules. Individual trades close at 500 loss, daily loss is limited to 2500, and total drawdown from the 100000 reference balance is limited to 5000. If equity drops below 95000, all positions are closed and the EA halts.

Example 4: Lot-Scaled Loss Limit

  • Symbol: (empty, monitors all)
  • Loss Per 0.01 Lot: 3.00
  • Weekend Only: false

Loss limits scale with position size: a 0.10 lot trade closes at 30 loss, a 0.50 lot trade at 150, and a 1.0 lot trade at 300. Useful for accounts running multiple position sizes.

Example 5: Equity Trailing Stop

  • Equity Trailing Stop: 1000
  • Weekend Only: false

The EA tracks your equity high-water mark. If equity reached 52000 at its peak and drops to 51000, all positions are closed. After closing, the peak resets to the new equity level and trailing resumes.

How It Works

  1. On every tick, the EA checks if a new trading day has started and resets daily tracking.
  2. If Weekend Only is enabled, it detects weekend gaps by measuring the time since the last tick (more than 48 hours = weekend gap). This method is timezone-agnostic and works with any broker.
  3. If a delay is configured, the EA waits the specified number of seconds after market open before scanning.
  4. It checks the max account drawdown (reference balance minus current equity). If reached, it closes all positions and halts.
  5. It checks the daily account loss limit (day-start balance minus current equity). If reached, it closes all positions and halts for the rest of the day.
  6. It checks the equity trailing stop (peak equity minus current equity). If the drop exceeds the limit, all positions are closed, the peak resets, and trailing resumes.
  7. It scans all open positions matching the configured filters and closes any that exceed the profit or loss thresholds.

Built-In Test Mode

Since this EA only closes trades (it does not open them), testing in the Strategy Tester would normally show nothing. The built-in Test Mode solves this by automatically opening trades so you can verify each closing scenario.

Test Mode only works in the Strategy Tester. If you accidentally leave it enabled on a live chart, it will show a warning and refuse to open any trades. Test trades use a dedicated magic number and comment tag for identification.

At the end of every backtest, a summary is printed to the Experts log showing trades opened, trades closed, daily limits triggered, and more.

Important Notes

  • The EA must be running and connected when the market opens.
  • Loss values are entered as positive numbers (e.g., enter 2000 to close at 2000 loss).
  • The daily loss limit compares starting balance vs current equity (includes floating P/L).
  • The daily loss limit resets at the start of each new trading day.
  • The max drawdown limit does not reset. Once triggered, the EA halts until restarted. Set the Reference Balance to your account starting balance so the limit survives EA restarts.
  • Slippage is set to 50 points by default.
  • Weekend detection uses time-gap measurement, not day-of-week, so it works correctly regardless of broker server timezone.
  • All monetary thresholds (profit, loss, daily limit) use your account deposit currency.
  • All actions are logged to the Experts tab in MetaTrader 5.

Support

If you have questions, feature requests, or encounter any issues, please leave a comment or send a message.

おすすめのプロダクト
Gold Sniper is a professional-grade trading utility designed for manual and semi-automated traders who specialize in XAUUSD (Gold) . Built on SMC (Smart Money Concepts) and ICT methodologies, this utility transforms your chart into a high-tech command center, allowing you to execute complex institutional strategies with a single click. Core Capabilities 1. Institutional Visual Engine (SMC/ICT) Stop hunting for Fair Value Gaps and Order Blocks. The utility does the heavy lifting for you: Real-Ti
FREE
FxS Moving Average EA  MetaTrader 5 向けマルチ戦略移動平均エキスパートアドバイザー       概要 FxS Moving Average EAは、実績のある6つの移動平均戦略を1つの柔軟な取引システムに統合した、強力で使いやすいエキスパートアドバイザーです。シンプルさ、パフォーマンス、カスタマイズ性を重視するトレーダーのために設計されたこのEAは、好みの取引アプローチ、リスクパラメータ、時間フィルターをすべて単一のユーザーフレンドリーなインターフェースから完全に制御できます。 あなたがトレンドフォロワーであろうとプルバックトレーダーであろうと、この EA はあなたのスタイルに適応できます。     ️   含まれる戦略 1. MAクロスオーバー – 高速MAと低速MAを用いた、古典的なゴールデンクロス/デッドクロス戦略。 2. EMAトレンドフォロー – EMAの傾きで確認されたトレンド方向でエントリーします。 3. MA平均プルバック – トレンド相場で平均への価格リトレースメントを探します。 4. MAエンベロー
FREE
ForceBB_Expert   is structured based on two specifics technical analysis indicators ( Bollinger Bands and  Force Index ). It has many parameters so that each user can find the appropriate settings that suit their investment profile. It can work on 28 different pairs. The default parameter settings are indicative, I recommend that each user experiment to find their own settings.
FREE
Divergence RSI Trader is based on divergences in the chart and indicator (RSI Level 14). Divergence RSI Trader's strategy to find lows and highs on the chart and RSI indicator, analyze them and then open positions. EA was tested in the EURUSD H1 in the strategy tester and adjusted to this currency by default. EA has also been tested with other settings at GBPUSD M5 for 10 years and completed with good results. Because this is a free version, there will be no more tests and only updates. Please
FREE
Smart Flow Pro - Trading Dashboard Core Features Dual Trading Modes Manual-Assisted Trading : Instant BUY/SELL buttons with configurable interval trading Time-Based Automation : Schedule trades at specific times with GMT offset adjustment Smart Time Management Real-time GMT Clock   with adjustable timezone offset Visual Countdown Timer   showing hours:minutes:seconds to next trade Automatic Daily Reset   with session management Color-coded countdown   (White > Yellow > Red as time approa
FREE
Deep Mines EA
Michael Prescott Burney
1 (1)
Deep Mines MT5は、MetaTrader 5プラットフォーム上でXAUUSD通貨ペア専用に設計された自動取引システムで、1時間足(H1)チャートを備えています。このシステムは、使いやすさと安定した信頼性の高い注文執行を重視し、自動金取引のための最適化された効率的なソリューションを提供することを目指しています。 この戦略モデルは、XAUUSD H1チャート上の価格変動を分析し、事前に定義された内部ロジックに従って取引を実行します。ポジションは取引条件が満たされた場合にのみ開かれるため、アドバイザーは市場に参加し、不要な取引を回避できます。各取引は、構造化されたリスクレベルを維持するために、事前に定義された損切りと利益確定のロジックに基づいて管理されます。 Deep Mines MT5システムは、1時間足(H1)チャートの金市場向けに特別に設計されています。このシステムは、複数の金融商品に適用可能な汎用的な取引モデルではなく、単一の取引商品と時間枠に焦点を当て、XAUUSDの取引特性に基づいて運用されます。このターゲットを絞ったアプローチにより、明確な戦略ロジックと一貫した取引
FREE
Use this expert advisor whose strategy is essentially based on the Relative Strength Index (RSI) indicator as well as a personal touch. Other free expert advisors are available in my personal space as well as signals, do not hesitate to visit and leave a comment, it will make me happy and will make me want to offer content. Expert advisors currently available: LVL Creator LVL Creator Pro LVL Bollinger Bands   Trading is not a magic solution, so before using this expert on a live account, carry
FREE
Welcome to the future of algorithmic trading. The Nascore Scalper EA is a precision-engineered, AI-inspired scalping robot built exclusively for trading NAS100 (US Tech 100 Index) . It analyzes smart money footprints, breakout zones, and high-timeframe bias to capture high-probability scalping entries. Key Features: Optimized for NAS100 (US100) – Fast-moving Nasdaq-based index trading Smart Money Concepts – Integrates structure, breakout logic, and bias Minimal Margin Usage – Ideal for traders
FREE
This EA trades using the CCI Indicator. It offers many trading scenarios and flexible position management settings, plus many useful features like customizable trading sessions, a martingale and inverse martingale mode. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] Easy to use and supervise It implements three different entry strategies Customizable break-even, SL, TP and trailing-stop Works for ECN/Non-ECN brokers Works for 2-3-4-5 digit symbols Trading can be NF
FREE
Go Long Advanced
Phantom Trading Inc.
4.78 (9)
Go Long EAは、複数の技術的確認を伴う体系的な日中取引の原則に基づいた高度なイントラデイ取引戦略を実装します。多くのトレーダーが複雑なアルゴリズムを求める中、このEAは単純かつ効果的な概念と洗練されたリスク管理、複数の技術的フィルターを組み合わせています。 このEAは毎日特定の時間にポジションを開きますが、市場条件が複数のテクニカル指標と一致する場合にのみ実行されます。このシステマティックなアプローチにより、利益を損なう可能性のある一晩の保有コストを避けながら、日中の値動きを捕捉することができます。EAは事前に設定された時間に自動的にポジションを閉じるため、一晩のエクスポージャーを避けたいトレーダーに最適です。 このEAの特徴は、適応型リスク管理システムにあります。ポジションサイズは以下の複数の要因に基づいて自動的に調整されます: - 基本資金とリスクパーセンテージの設定 - テクニカル指標の条件(MA、RSI、MACDなど) - 条件が特に有利な場合にポジションサイズを増加させる特別な乗数 このEAには、有効/無効を切り替えられる複数のテクニカルフィルターが含まれてい
FREE
Gap Catcher
Mikita Kurnevich
5 (4)
Read more about my products Gap Cather - is a fully automated trading algorithm based on the GAP (price gap) trading strategy. This phenomenon does not occur often, but on some currency pairs, such as AUDNZD, it happens more often than others. The strategy is based on the GAP pullback pattern. Recommendations:  AUDNZD  TF M1  leverage 1:100 or higher  minimum deposit 10 USD Parameters:  MinDistancePoints - minimum height of GAP  PercentProfit - percentage of profit relative to GAP level
FREE
Golden Square X
Huynh Tan Linh N
4 (9)
This is my latest Free version for Gold. With optimized parameters and user-friendly features, this version is likely very easy to use and highly effective. You can customize TP and SL parameters as you wish, but the default settings should work well for you without the need for further adjustments.  This version is designed for the M5. This version does not require a large capital investment; only $100-$200 is sufficient for Golden Square X to run and generate profits for you. Based on backtest
FREE
これは、ほぼ10年前に初めて公開された私の有名なスキャルパー、ゴールドフィンチEAの最新版です。短期間で起こる急激なボラティリティの拡大で市場をスキャルピングします。突然の価格上昇の後、価格変動の慣性を利用しようとします。この新しいバージョンは、トレーダーがテスターの最適化機能を簡単に使用して最適な取引パラメーターを見つけられるように簡素化されています。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 最適化を容易にするシンプルな入力パラメーター カスタマイズ可能な取引管理設定 取引セッションの選択 平日の選択 資金管理 注意してください... 多くの要因が見返りを台無しにする可能性があるため、ダニのダフ屋は危険です。変動スプレッドとスリッページは、取引の数学的期待値を低下させ、ブローカーからの低いティック密度は幻の取引を引き起こす可能性があり、ストップレベルは利益を確保する能力を損ない、ネットワークラグはリクオートを意味します。注意が必要です。 バックテスト Expert Advisorはティックデータのみを使用します
FREE
Neuro Edge
Agus Wahyu Pratomo
5 (4)
Please give review to support development of this Expert Advisor NeuroEdge EA is an advanced trend-following scalper designed to adapt dynamically to market behavior. Built with precision algorithms and smart averaging logic, it maintains minimal drawdown while capturing high-probability setups in trending conditions. NeuroEdge continuously analyzes market flow to ensure optimal entries and exits — giving traders the edge they need in volatile markets. ️ Core Features: Adaptive Trend Detection
FREE
RSI & Moving Average Expert v1.0 A fully automated trading robot that combines the power of two classic indicators: Moving Averages and RSI, to identify strong, low-risk entries aligned with the market trend. How it works: Uses a Fast and Slow MA crossover on M15 timeframe for signal generation. Confirms trend direction using a higher timeframe EMA (default H1, 100-period). Applies RSI filtering to avoid false breakouts and extreme zones. Calculates lot size dynamically based on account risk
FREE
Phoenix Volume Trader
Nigel Nii Darku Narnor Darko
The Phoenix Volume Trader is a high-performance Semi-Automatic Execution EA designed for traders who prioritize Order Flow and Momentum Analytics. Built for the MetaTrader 5 platform, it bridges the gap between complex Volume Profile analysis and lightning-fast trade execution. At its core, the Phoenix Engine identifies the Point of Control (POC)—the price level with the highest trading activity—and visualizes it as a dynamic "Value Zone." By monitoring the Volume Ratio, the EA alerts traders t
FREE
This EA trades using the Stochastic Indicator. It offers many trading scenarios and flexible position management settings, plus many useful features like customizable trading sessions, a martingale and inverse martingale mode. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] Easy to use and supervise It implements three different entry strategies Customizable break-even, SL, TP and trailing-stop Works for ECN/Non-ECN brokers Works for 2-3-4-5 digit symbols Trading can
FREE
Add this selection of 8 trading strategies to your trading, as this EA offers uncorrelated strategies to diversify! This EA (Expert Advisor) has a selection of strategies to choose from, depending on what you want to trade. Some strategies were designed for Stocks, Forex, and Crypto. We aim to have a mean-reverting and a trend-following strategy for every market that performed well on statistically significant positive backtests. This EA was designed for you to use multiple uncorrelated strateg
FREE
FREE FREE FREE Trade Assistant MT5 – Professional Trading & Risk Management Panel Trade Assistant MT5 is an advanced trading panel designed to help traders execute orders faster, safer, and more professionally . It simplifies manual trading by combining smart order management , precise risk control , and one-click execution , making it ideal for both beginners and advanced traders. This tool does not trade automatically . Instead, it empowers you with full control while applying professional-gra
FREE
GridWeaverFX
Watcharapon Sangkaew
4 (1)
Introducing GridWeaverFX  - A Grid/Martingale EA for XAUUSD | Free Download! Hello, fellow traders of the MQL5 community! I am excited to share an Expert Advisor (EA) that I have developed and refined, and I'm making it available for everyone to use and build upon. It's called GridWeaverFX , and most importantly, it is completely FREE! This EA was designed to manage volatile market conditions using a well-known strategy, but with enhanced and clear safety features. It is particularly suited fo
FREE
The Reversal Area EA is designed to identify likely price ranges for price to turn from. This EA is used in conjunction with other EA's that I developed and serves as filtering tool to keep from entering too early. The overall idea is to be a seller above the green line. A buyer below the green line for the buy version. The second thing to keep in mind is time. When price fluctuate over the course of a few days and move further below this zone (long bias) it offers greater likelihood of setting
FREE
MultiTrend Commander
Джованни Орсани
MultiTrend Commander - Automated Trading System What is it? An automated trading software that: Intelligently identifies market trends Makes decisions based on multiple timeframes Automatically manages risk What does it do? Identify Trends Analyze the market in real time Combine signals from different time frames (15 min, 1 hr, 4 hr) Confirm the trend direction before entering Protect Your Capital Automatically calculates stop losses Adjusts trade size to your risk Stops trading if
FREE
At first, I got my teeth into  Phoenix  Ultra   Expert Advisor. This   Expert Advisor  will support automatic close order if the direction is correct and perform recovery if the direction is wrong. If you enter an order: 1. The price goes in the right direction and hits the   Min Profit Point ,   trailing stop 20% of the current profit. 2. The price goes in the opposite direction, the Expert Advisor will place the order with the volume is   Recovery Volume Percent  at the input, the distance to
FREE
This EA was made for educational purposes.  You can find a full overview of how it was made in the YouTube video (Literally a step by step guide) We used AI and ML to create the whole thing, with no coding.  Can you trust this to make money? Possibly, but do so at your own risk.  It could be a nice addition to a large porfolio.  Big picture It’s a   trend + breakout system for buys , and a   pullback/fake breakout system for sells . It only checks signals when a new candle opens. Buy (Long) log
FREE
Test Before Use... In the forex market, a range refers to a period of time during which the price of a currency pair remains relatively stable, fluctuating within a narrow band. This can be contrasted with a trend, which refers to a sustained movement in the price of a currency pair in a particular direction. During a range, the price of the currency pair may move up and down within a defined range, but it is not trending strongly in any particular direction. This can be a good time for the rang
FREE
Grid Engulfing MT5
Yudi Sri Warsito
4.8 (5)
Grid Engulfing is a trading strategy that combines grid trading with engulfing patterns.  Grid Trading: A grid trading strategy involves placing buy and sell orders at regular intervals (grid size) above and below a set price level. The goal is to profit from small price movements within a range-bound market. Engulfing Patterns: Engulfing patterns are a type of candlestick pattern that indicates a potential reversal or continuation of a trend. A bullish engulfing pattern occurs when a small bea
FREE
TAKA Grid EA (EA16): The Sideway King & Prop Firm Shield Are you tired of EAs that get destroyed by choppy, ranging markets? Meet TAKA Grid EA , the ultimate mean-reversion system designed specifically for the AUDNZD cross pair on the M15 timeframe. It doesn't rely on explosive breakouts; it dominates the sideways chop with mathematical precision.   ENTER YOUR KEY HERE:   [  EA16_99999D_TANINCODER_595559587987 ] -- MANDATORY: ALLOW WEBREQUEST TO ACTIVATE THE BOT To verify your License
FREE
TrendFollowMT is a fully automated trading system which is using large time frame to determine the trend and use small time frame to find the entry point. Once the trend changed to opposite side, the system will wait for another entry point to recover with bigger lot size. Moreover, the target profit will be moved up when more position had been opened. The aim is to cover the cost of waiting time and risk. Free version will only trade on buy signal and locked the initial Lot size (0.01). Paid v
FREE
Fibo Trader is an expert advisor that allows you to create automated presets for oscillation patterns in reference to Fibonacci retracements values using fully automated and dynamically created grid. The process is achieved by first optimizing the EA, then running it on automated mode. EA allows you to switch between automatic and manual mode. When in manual mode the user will use a graphical panel that allows to manage the current trading conditions, or to take control in any moment to trade ma
FREE
Put Your Money to Work – For Free! We designed Zoras Gold Breakout EA to work for you first – completely free – so you can see how it performs in real market conditions before we even think about charging a fee. This version is fully unlocked – no limitations, no disabled features. You get full access to all features, all parameters, and all trading logic from day one. The Challenge – Use It, Profit, and Leave a Review! We challenge you to run this EA with our recommended settings and a minimum
FREE
このプロダクトを購入した人は以下も購入しています
Trade Assistant MT5
Evgeniy Kravchenko
4.42 (207)
取引 ごとのリスクの 計算、新規注文 の 簡単 な 設置、部分的 な 決済機能 を 持 つ 注文管理、 7 種類 のトレーリングストップなど 、便利 な 機能 を 備 えています 。 追加の資料と説明書 インストール手順   -   アプリケーションの手順   -   デモアカウント用アプリケーションの試用版 ライン機能 チャート上にオープニングライン、ストップロス、テイクプロフィットを表示します。この機能により、新規注文を簡単に設定することができ、注文を出す前にその特徴を確認することができます。   リスク計算 リスク計算機能は、設定されたリスクとストップロス注文のサイズを考慮して、新規注文のボリュームを計算します。ストップロスの大きさを自由に設定できると同時に、設定したリスクを守ることができます。 Lot calc ボタン - リスク 計算 を 有効 / 無効 にします 。 Risk フィールドでは 、必要 なリスクの 値 を 0 から 100 までのパーセンテージまたは 預金通貨 で 設定 します 。 設定」 タブで 、 リスク 計算 の 種類 を 選択 します :「 $ 通
Trade Manager EAへようこそ。これは、取引をより直感的、正確、そして効率的にするために設計された究極の リスク管理ツール です。これは単なるオーダー実行ツールではなく、包括的な取引計画、ポジション管理、リスク管理のためのソリューションです。初心者から上級者、迅速な実行を必要とするスキャルパーまで、Trade Manager EAはあらゆるニーズに対応し、為替、指数、商品、暗号通貨などさまざまな市場で柔軟に対応します。 Trade Manager EAを使用すると、複雑な計算が過去のものになります。市場を分析し、エントリーポイント、ストップロス、テイクプロフィットのレベルをチャート上のラインでマークし、リスクを設定するだけで、Trade Managerが最適なポジションサイズを即座に計算し、SLとTPをピップ、ポイント、口座通貨でリアルタイムに表示します。すべての取引が簡単かつ効果的に管理されます。 主な機能: ポジションサイズ計算機 :定義されたリスクに基づいて取引サイズを瞬時に決定します。 簡単な取引計画 :エントリー、ストップロス、テイクプロフィットを設定するためのド
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.96 (135)
Local Trade Copier EA MT5 による、驚くほど高速な取引コピーを体験してください。1分で簡単にセットアップできるこの取引コピー機は、同じWindowsコンピュータまたはWindows VPS上の複数のMetaTrader端末間で取引をコピーすることができ、0.5秒未満の高速コピースピードを実現します。 初心者であろうとプロのトレーダーであろうと、 Local Trade Copier EA MT5 には、あなたの特定のニーズに合わせてカスタマイズするための幅広いオプションが用意されています。これは、利益の可能性を高めたい人にとって究極のソリューションです。 今すぐ試してみて、これが市場で最も速くて簡単なトレードコピー機である理由を理解してください。 ヒント: デモアカウントで Local Trade Copier EA MT5 デモバージョンをダウンロードして試すことができます: ここ ダウンロードした無料のデモ ファイルを MT5 >> ファイル >> データ フォルダを開く >> MQL5 >> Experts フォルダに貼り付けて、ターミナルを再起動しま
TradePanel MT5
Alfiya Fazylova
4.87 (149)
Trade Panelは多機能なトレーディングアシスタントです。アプリには手動取引用の50以上のトレーディング機能が搭載されており、ほとんどの取引作業を自動化することができます。 ご注意ください!割引は期間限定で、毎週火曜日に価格が5ドルずつ上昇します(上限100ドルまで)。 購入前に、デモアカウントでアプリのデモ版をテストすることができます。デモアカウント用のアプリの試用版をダウンロードするには、次のリンクをご利用ください: https://www.mql5.com/en/blogs/post/750865 。 完全な手順 こちら 。 取引。 ワンクリックで取引操作を行うことができます: リスクを自動計算して指値注文やポジションを開く。 複数の注文やポジションをワンクリックで開く。 注文のグリッドを開く。 保留中の注文やポジションをグループごとに閉じる。 ポジションの方向を反転(Buyを閉じてSellを開く、またはSellを閉じてBuyを開く)。 ポジションをブロックする(不足している量のポジションを開くことでBuyとSellのポジション量を等しくする)。 すべてのポジションを部分的
ベータリリース Telegram to MT5 Signal Trader はまもなく正式なアルファ版をリリースします。いくつかの機能はまだ開発中で、小さな不具合に遭遇する可能性があります。問題が発生した場合はぜひご報告ください。皆さまのフィードバックがソフトウェア改善に役立ちます。 Telegram to MT5 Signal Trader は、 Telegram のチャンネルやグループからの取引シグナルを自動的に MetaTrader 5 にコピーする強力なツールです。 パブリックおよびプライベートの両方のチャネルに対応し、複数のシグナル提供元を複数のMT5口座に接続可能です。ソフトウェアは高速で安定し、すべての取引を細かく制御できます。 インターフェースは直感的で、ダッシュボードとチャートは見やすく設計されており、リアルタイムで動作状況をモニターできます。 必要環境 MQL の制限により、EA は Telegram と通信するためのデスクトップアプリが必要です。 インストーラーは公式の インストールガイド にあります。 主な機能 マルチプロバイダー: 複数の Telegram
Tired of complex order placement and manual calculations? Trade Dashboard is your solution. With its user-friendly interface, placing orders becomes effortless, by a single click, you can open trades, set stop loss and take profit levels, manage trade lot size, and calculate risk to reward ratios, allowing you to only focus on your strategy. Say goodbye to manual calculations and streamline your trading experience with Trade Dashboard. Download  Demo Version  right now. You can find  Details of
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.82 (34)
MT5のトレードコピー機は、МetaТrader5プラットフォームのトレードコピー機です 。 それは間の 外国為替取引をコピーします   任意のは 、MT5 - MT5、MT4 - MT5   COPYLOT MT5版の アカウント (またはを MT4 - MT4   MT5 - MT4   COPYLOT MT4版用) 信頼できるコピー機! MT4のバージョン 完全な説明   +DEMO +PDF 購入する方法 インストールする方法     ログファイルの取得方法     テストと最適化の方法     Expforex のすべての製品 МТ4ターミナルでトレードをコピーすることもできます(   МТ4   -   МТ4、МТ5   -   МТ4   ):   MT4のCOPYLOT CLIENT このバージョンには、端末間 МТ5   -   МТ5、МТ4   -   МТ5が含まれ ます。 ディールコピー機は、2/3/10端末間でディール/ポジションをコピーするために作成されます。 デモ口座と投資口座からのコピーがサポートされています。 プログラムは、複数の端末バインデ
Farmed Hedge Yield Farming |  Arbitrage x Correlation x Currency Strength  (Manual - Hybrid - Semi/Automated EA) VERIFIED TRADING RESULTS - Farmed Hedge Yield Axi Copy:  https://www.mql5.com/en/signals/2356376 - Farmed Hedge Yield Exn Copy:   https://www.mql5.com/en/signals/2356404 - Farmed Hedge Yield V Copy:  https://www.mql5.com/en/signals/2357156 Contact me via private message to receive the User Manual and Setup Video. * Thai Lauguage Support Available VERSION 3 - WILD HARVEST UPDATE
Copy Cat More Trade Copier MT5 (コピーキャット MT5) は、今日の取引課題に対応して設計されたローカルトレードコピーシステムと完全なリスク管理・実行フレームワークです。プロップファームのチャレンジから個人ポートフォリオ管理まで、堅牢な実行、資本保護、柔軟な設定、高度な取引処理の組み合わせで、あらゆる状況に適応します。 コピーシステムはマスター(送信側)とスレーブ(受信側)の両方のモードで動作し、成行注文と指値注文、取引修正、部分決済、両建て決済操作のリアルタイム同期を行います。デモ口座とライブ口座、取引ログインまたは投資家ログインの両方に対応し、EA、ターミナル、またはVPSが再起動してもパーシスタント取引メモリシステムを通じて復旧を保証します。複数のマスターとスレーブをユニークIDで同時に管理でき、ブローカー間の違いはプレフィックス/サフィックス調整またはカスタムシンボルマッピングを通じて自動的に処理されます。 マニュアル/設定  | Copy Cat More MT4 | チャンネル  特別機能: 設定が簡単 — わずか30秒で完了(ビデオをご覧
Trade copier MT5
Alfiya Fazylova
4.56 (39)
Trade Copierは、取引口座間の取引をコピーして同期するように設計された専門的なユーティリティです。 コピーは、同じコンピューターまたはvps にインストールされている、サプライヤーのアカウント/端末から受信者のアカウント/端末に行われます。 購入する前に、デモ アカウントでデモ バージョンをテストできます。 デモ版 こちら 。 詳細な説明は こちら 。 主な機能と利点: MT5ネッティングアカウントを含む、MT5> MT5、MT4> MT5、MT5> MT4のコピーをサポートします。 高いコピー速度(0.5秒未満)。 ベンダーモードと受信者モードは同じ製品内に実装されています。 チャートから直接リアルタイムでコピーを制御できる、簡単で直感的なインターフェイス。 接続が切断されたり、端末が再起動されたりしても、設定と位置が失われることはありません。 コピーするシンボルを選択できます。また、受信者のシンボルを置き換えることもできます(例:EURUSD> USDJPY)。 バックコピーをサポートします。 特定の注文のみのコピーを有効にする機能。 取引開始価格の最大差と最大遅延時間を
Trade Manager は、リスクを自動的に計算しながら、取引を迅速に開始および終了するのに役立ちます。 過剰取引、復讐取引、感情的な取引を防止する機能が含まれています。 取引は自動的に管理され、アカウントのパフォーマンス指標はグラフで視覚化できます。 これらの機能により、このパネルはすべてのマニュアル トレーダーにとって理想的なものとなり、MetaTrader 5 プラットフォームの強化に役立ちます。多言語サポート。 MT4バージョン  |  ユーザーガイド + デモ Trade Manager はストラテジー テスターでは機能しません。 デモについてはユーザーガイドをご覧ください。 危機管理 % または $ に基づくリスクの自動調整 固定ロットサイズを使用するか、ボリュームとピップに基づいた自動ロットサイズ計算を使用するオプション RR、Pips、または価格を使用した損益分岐点ストップロス設定トレーリングストップロス設定 目標に達したときにすべての取引を自動的に終了するための 1 日あたりの最大損失 (%)。 過度のドローダウンからアカウントを保護し、オーバートレードを防ぎます
Footprint Chart Pro — Professional OrderFlow EA for MetaTrader 5 Version 6.34 | Professional tool for real traders | Institutional-Grade Visualization DEMO USERS - PLEASE SELECT EVERY TICK / REAL TICK WHEN TESTING AND YOU HAVE DOWNLOADED HISTORICAL DATA. IF YOU SEE A WAITING SCREEN AND IT IS NOT DOWNLOADING, IT MEANS YOU HAVE LOW HISTORICAL DATA. TRY 1 MIN AND 5 MIN FIRST ON 1 DAY DATA. ONE DAY DATA SHOULD BE THE NEWEST AND MOST CURRENT DATE. PLEASE WAIT UNTIL THE MARKET HAS ROLLED OVER PERIOD.
Timeless Charts
Samuel Manoel De Souza
5 (3)
Timeless Charts is an advanced charting solution designed for professional traders seeking for custom charts / custom timeframes , including seconds charts / seconds timeframe, renko charts / renko bars, cluster charts / footprint charts and advanced tools present in most of the popular platforms. Unlike traditional offline charts or simplistic custom indicators, this solution constructs fully custom bars with true timestamp accuracy , down to miliseconds, allowing for a powerful and precise tr
MT5 to Telegram Signal Provider は、Telegramのチャット、チャンネル、またはグループに 指定された シグナルを送信することができる、完全にカスタマイズ可能な簡単なユーティリティです。これにより、あなたのアカウントは シグナルプロバイダー になります。 競合する製品とは異なり、DLLのインポートは使用していません。 [ デモ ] [ マニュアル ] [ MT4版 ] [ Discord版 ] [ Telegramチャンネル ]  New: [ Telegram To MT5 ] セットアップ ステップバイステップの ユーザーガイド が利用可能です。 Telegram APIの知識は必要ありません。必要な全ては開発者から提供されます。 主な特長 購読者に送信する注文の詳細をカスタマイズする機能 例えば、Bronze、Silver、Goldといった階層型のサブスクリプションモデルを作成できます。Goldサブスクリプションでは、すべてのシグナルが提供されます。 id、シンボル、またはコメントによって注文をフィルターできます 注文が実行されたチャート
Local Trade Copier EA は、MAMまたはPAMMアカウントを必要とせずに、外部ソースからのトレードシグナルを実行する必要がある、または同時に複数のアカウントを管理する必要がある個々のトレーダーまたはアカウントマネージャー向けのソリューションです。最大8つのマスターアカウントから無制限のスレーブアカウントにコピーします [ インストールガイド | アップデートガイド | トラブルシューティング | FAQ | すべての製品 ] 100%セルフホスト インストールと使用が簡単 インストーラー、構成ファイル、サーバー、メモリパイプ、DLLは使用されていません EAを永久に使用するための1000回のアクティベーション ローカル実行、ネットワーク遅延なし それはあなたがこれまでに必要とするすべての機能を実装します: 最大8つのマスターアカウントと無制限のスレーブアカウント すべてのブローカーおよびDD / NDD / ECN / STP実行で動作します 異なる口座通貨の口座で動作します ライブアカウントとデモアカウントの間で区別なく機能します マスターアカウントとスレーブア
Anchor: The EA Manager A coordination system for traders running multiple EAs. Anchor ensures only one EA can trade at a time, preventing conflicting positions and keeping your portfolio safer. Attach Anchor to any chart. Configure your EAs and their magic numbers. Anchor handles the rest. Built for portfolios. Built for discipline. Built for prop firms. The Problem Running multiple EAs on the same account creates risk. Two gold EAs can open opposite positions on the same candle. Three EA
Ultimate Extractor - Professional Trading Analytics for MT5 *****this is the local HTML version of Ultimate Extractor. For the online version please reach out to me directly****** Ultimate Extractor transforms your MetaTrader 5 trading history into actionable insights with comprehensive analytics, interactive charts, and real-time performance tracking. What It Does Automatically analyzes your MT5 trading history across all Expert Advisors and generates detailed HTML reports with interactive vi
Seconds Chart - MetaTrader 5で秒足チャートを作成するユニークなツールです。 Seconds Chart を使用すると、秒単位のタイムフレームでチャートを構築でき、標準的な分足や時間足チャートでは得られない柔軟性と分析精度を実現します。例えば、 S15 は15秒足を表します。カスタムシンボルをサポートしているインジケーターやEAをすべて使用できます。標準的なチャートと同様に便利に操作できます。 標準的なツールとは異なり、 Seconds Chart は超短期のタイムフレームでも高い精度と遅延なく作業できるように設計されています。 Seconds Chartの利点 1秒から900秒 までのタイムフレームをサポート。 組み込みのティックデータベースにより、ヒストリカルデータを 瞬時にロード 。 リアルタイムでデータが更新され、 遅延やラグなし 。 複数の秒足チャートを同時に作成可能。 Seconds Chartが最適な用途 スキャルピング や高頻度取引。 正確なエントリーとエグジット。 短期タイムフレームでの取引戦略のテスト。 タイムフレームの設定 デフォルトの設
AntiOverfit PRO:バックテストの不都合な真実 そのEAを買う前に、少し立ち止まってください。 年利250%をうたうシステムを見つけたところです。バックテストは完璧に見えます。販売者の価格は399ドル、あるいは1,999ドルかもしれません。表面上は、すべてが理にかなって見えます。 しかし問題があります。そのバックテストは、あなたが思っていることを証明してはいません。 過去データだけでは、ほとんど何も証明できません。確認できるのは、そのロジックが ある1つの 特定の市場シーケンスで機能したということだけです。価格が別の経路をたどった瞬間に、ロボットは崩れ始めます。 そして高額なEAの多くは、まさにそこで失敗します。 AntiOverfit PROがすること AntiOverfit PROは、システムを売る前にほとんど誰も見せないものを提供します。お金を使う 前に 、その堅牢性を確認する方法です。 数学者である必要はありませんし、難しく考える必要もありません。流れはとてもシンプルです。 MT5のチャートにAntiOverfitを配置します。 AntiOverfitが現実的な
The core idea: using the user interface, you configure the parameters the chart must meet before entering a position (or positions), choose which entry models to use, and set the rules for when trading and planning should end. Lazy Trader  handles the rest: it  takes over all the routine chart watching and execution! full description  :: 3 key videos [1] ->  [2]   ->  [3] What can it do? - Understands Larry Williams market structure - Understands swing market structure by Michael Huddleston
DrawDown Limiter
Haidar Lionel Haj Ali
5 (20)
Drawdown Limiter EA You are in the right place if you were searching for Drawdown control, Drawdown limiter, Balance protection, Equity Protection or Daily Drawdown Limit related to Prop Firm, FTMO, or Funded account trading, or if you want to protect your trading account. Have you suffered from controlling your drawdown when trading funded accounts? This EA is meant for you. Prop firms usually set a rule called “Trader Daily Drawdown”, and if it is not respected, you are disqualified.  I am an
MT5用 Stats Dashboard & Journal ULTRA 完全なトレーディングコマンドセンター:分析、自動化、ニュースインテリジェンス。 Stats Dashboard ULTRAは、Pro分析ツールの究極の進化形です。MetaTrader 5をプロフェッショナルなトレーディングステーションに変え、機関投資家レベルのパフォーマンス分析と、自動化されたニュース保護、高度な心理的指標を組み合わせます。完全なコントロールを求める裁量トレーダーやEAポートフォリオマネージャー向けに設計されています。 ULTRAバージョンの新機能 ニュースインテリジェンスエンジン: ニュースを見るだけでなく、分析します。過去のニュースイベントが保有中のトレードにどう影響したかをシミュレーションし、ポジションを保持すべきか決済すべきかを教えてくれます。 EAボットガード(自動保護): 重要度の高いニュース(High-Impact News)の際、他のExpert Advisor(EA)を自動的に一時停止し、市場が落ち着いたら再稼働させます。 真の株式ドローダウン(True Equity Drawd
Crystal Trade Manager – Advanced MT5 Risk and Trade Control Utility Overview Crystal Trade Manager (CTM) is a professional MetaTrader 5 utility designed for risk management, trade automation, and instant execution control. It provides traders with an integrated system for protecting equity, managing daily drawdowns, controlling lot sizes, and applying automation features such as automatic SL/TP, break-even, and trailing stop. The tool is suitable for manual traders, prop-firm challenge particip
HINN MAGIC ENTRY – the ultimate tool for entry and position management! Place orders by selecting a level directly on the chart! full description   ::  demo-version  :: 60-sec-video-description Key features: - Market, limit, and pending orders - Automatic lot size calculation - Automatic spread and commission accounting - Unlimited partitial take-profits  - Breakeven and trailing stop-loss and take-profit  functions - Invalidation leves - Intuitive, adaptive, and customizable interface - Works
Smart Stop Manager – プロレベルの精度でストップロスを自動実行 概要 Smart Stop Manager は Smart Stop ラインナップの「実行レイヤー」であり、複数ポジションを持つトレーダーのために構築された、構造化された信頼性の高い完全自動ストップロス管理システムです。すべての保有中ポジションを継続的に監視し、Smart Stop のマーケットストラクチャー・ロジックを用いて最適なストップレベルを計算し、明確で透明性のあるルールに従ってストップを自動更新します。 単一の銘柄から複数銘柄のポートフォリオ全体まで、Smart Stop Manager は各トレードに規律、安定性、そして完全なリスク可視化をもたらします。感情的判断を排除し、手作業を大幅に削減し、すべてのストップが常に市場構造に基づいた論理的なプロセスに従うことを保証します。 ハイライト マーケットストラクチャーに基づく自動ストップ配置 • Smart Stop ロジックに基づき、各オープンポジションへ最適なストップロスを自動適用します。 ポートフォリオ全体を一目で把握 • 銘柄、方向
Smart Stop Scanner – マルチアセット対応の市場構造型ストップロス分析システム 概要 Smart Stop Scanner は、複数の市場にわたるストップロス構造をプロフェッショナル品質で監視するために設計されたツールです。 実際の市場構造、重要なブレイクアウト、価格アクションロジックに基づいて最も意味のあるストップゾーンを自動的に検出し、 高精細(DPI対応)で見やすい統一パネルに表示します。 Forex、ゴールド、インデックス、メタル、暗号資産など幅広い市場に対応しています。 ストップレベルの算出方法 従来型のインジケーターや任意の計算式は使用していません。 代わりに、 ブレイクアウト、より高い高値、より低い安値 といった実際の市場構造イベントを検出します。 ストップレベルはこれらの構造ポイントから直接生成されるため、より自然で信頼性が高く、 実際の市場動向に即したストップ設定が可能になります。 主なハイライト • 高精度のマルチアセット対応 Forex、メタル、ゴールド、インデックス、暗号資産など、幅広い銘柄をサポートし、桁数やティックサイズを自動処
KT Equity Protector MT5
KEENBASE SOFTWARE SOLUTIONS
4.25 (4)
取引資金を簡単に保護しましょう 取引資金を守ることは、増やすことと同じくらい重要です。KT Equity Protectorはあなた専用のリスクマネージャーとして、口座の純資産(エクイティ)を常に監視し、あらかじめ設定した利益目標や損失限度に達すると、すべてのポジションや指値注文を自動的に決済して、損失回避や利益確保を行います。 感情に左右されることも、直感に頼ることもありません。ただ信頼できる資金保護ツールが、あなたのために24時間体制で機能します。 KT Equity Protectorは、すべてのチャートを自動的に閉じることで、他のエキスパートアドバイザー(EA)による取引を停止できます。これにより、KT Equity Protectorを手動で再起動するまで、追加の取引が行われることはありません。完全なコントロールと安心感を提供します。 仕組みについて エクイティ・ストップロス(損失から守る): 例えば口座残高が$10,000あり、$1,000のストップロスを設定した場合、エクイティが$9,000に達するとKT Equity Protectorは全取引を即座に終了し、資金のさ
ワンクリックで取引できるトレーディングパネル。ポジションと注文の操作!チャートまたはキーボードから取引。 当社の取引パネルを使用すると、チャートから直接シングルクリックで取引を実行でき、標準の MetaTrader コントロールよりも 30 倍高速に取引操作を実行できます。 パラメータと関数の自動計算により、トレーダーにとって取引がより速く、より便利になります。 グラフィックのヒント、情報ラベル、取引取引に関する完全な情報はチャート MetaTrader にあります。 MT4のバージョン 完全な説明   +DEMO +PDF 購入する方法 インストールする方法     ログファイルの取得方法     テストと最適化の方法     Expforex のすべての製品 手動取引用の取引パネル。チャート(チャートウィンドウ)またはキーボードから取引できます。  開閉、リバース、ロックポジションと注文を処理する МetaТrader5 のメインオーダーのトレーディングコントロールパネル:売買、売却、売却、売却、売却、閉じる、削除、修正、トレーリングストップ、ストップロス、takeproft
オーダーチケット, 取引パネル, リスク管理, 手動取引, トレーリングストップ, 注文管理, 高速約定 — JoOrderTrade Pro — MetaTrader 5 用実行パネル JoOrderTrade Pro は、MetaTrader 5 における手動取引および注文管理のためのグラフィカルパネルです。 高速な注文実行、Stop Loss および Take Profit の設定が可能であり、Trailing Stop、Breakeven、SP(Save Position)システムなどのリスク管理機能を備えています。 本パネルは MetaTrader 5 の環境上で動作し、内部スクリプトを通じて注文を実行するために Algotrading を有効にする必要があります。 本製品は自動売買を行いません。 動作要件 MetaTrader 5 Algotrading 有効(パネル動作に必須) Netting または Hedge 口座 主な機能 成行注文および指値注文・逆指値注文の実行 Stop Loss と Take Profit の設定 設定可能な Trailing Stop 自動
この製品は、ニュースタイム中にすべてのエキスパートアドバイザーと手動チャートをフィルタリングするため、急激な価格変動によるマニュアルトレードのセットアップの破壊や他のエキスパートアドバイザーによって入力された取引について心配する必要はありません。この製品には、ニュースのリリース前にオープンポジションとペンディングオーダーを処理できる完全な注文管理システムも付属しています。 The News Filter  を購入すると、将来のエキスパートアドバイザーのためにビルトインのニュースフィルターに頼る必要はなく、今後はすべてのエキスパートアドバイザーをここからフィルタリングできます。 ニュース選択 ニュースソースは、Forex Factoryの経済カレンダーから取得されます。 USD、EUR、GBP、JPY、AUD、CAD、CHF、NZD、CNYなど、任意の通貨数に基づいて選択できます。 Non-Farm(NFP)、FOMC、CPIなどのキーワード識別に基づいて選択することもできます。 影響レベルによってフィルタリングするニュースを選択することができ、低、中、高の影響範囲から選択できます。
作者のその他のプロダクト
Cloud Trade EA
projektfarm GmbH
5 (2)
Cloud Trade EA – Precision Swing Trading for S&P 500 and Nasdaq LAUNCH PROMO: Only a few copies left at the current price! Final price: 590$ Cloud Trade EA is the result of our 12 years of experience in building professional trading systems for the MetaTrader platform. Cloud Trade EA is a robust Expert Advisor designed for swing trading on the daily time frame . Exclusively targeting the S&P 500 and Nasdaq indices, Cloud Trade EA is tailored to long-term success by leveraging the unique charact
フィルタ:
レビューなし
レビューに返信