Nika EA

  • Experts
  • Nik Andersen
    Nik Andersen
    Independent algorithmic trader and EA developer based in Denmark with 15 years of trading experience.
    Creator of Nika EA — a professional multi-strategy Expert Advisor built on a proprietary signal engine with 12 signal types, 11 MA methods, and 15 layered risk management controls.
  • Version: 1.38
  • Updated: 10 March 2026
  • Activations: 5

Introduction

Nika EA is a multi-strategy Expert Advisor for MetaTrader 5 built around a proprietary signal engine that uses linear regression analysis of price deviation from a dynamic midpoint. The system produces three oscillator streams — signal line, average line, and histogram — used across 12 configurable signal types, 3 independent rule slots, and a 15-layer risk management stack.

The Linear Regression Computation Engine

The core signal calculation does not use price directly. Instead, it measures how far price deviates from a dynamically computed midpoint, then applies least-squares linear regression to that deviation series to extract directional momentum.

The computation sequence per bar is as follows:

  • Step 1 — Dynamic midpoint: The highest high and lowest low over the lookback period are found. Their average is calculated. This average is then averaged again with a running EMA of price, producing a smoothed dynamic midpoint that adapts to both range and trend conditions.
  • Step 2 — Deviation series: The close price (or Heiken Ashi close, if enabled) is subtracted from this dynamic midpoint. This produces a centered deviation value that reflects position within the current price structure rather than raw price level.
  • Step 3 — Least-squares linear regression: Over the full lookback window, the engine computes sumX, sumY, sumXY, and sumX2 from the deviation series. The slope is derived as (N * sumXY - sumX * sumY) / (N * sumX2 - sumX^2). The intercept is (sumY - slope * sumX) / N. The regression endpoint value is then used as the signal line output, optionally shifted by a configurable bar offset.
  • Step 4 — Scale normalization: On the first bar, a global scale multiplier is calculated so the signal output fits a normalized range regardless of instrument price level. This allows the same parameter set to operate consistently across XAUUSD, EURUSD, indices, and crypto.
  • Step 5 — Average line smoothing: The signal line output is passed through a configurable moving average to produce the average line. The crossover between the signal line and its average line forms the primary trigger used in several signal modes.

Heiken Ashi Pre-Processing

Before the deviation calculation, an optional Heiken Ashi transformation is applied. Open, high, low, and close are recalculated using the standard Heiken Ashi formulas on each bar. The resulting smoothed OHLC values are then used in place of raw price for both the midpoint range scan and the deviation subtraction. This reduces spike sensitivity and smooths the deviation series before regression is applied.

Histogram Module

A separate histogram oscillator runs in parallel. It computes an EMA of price (or Heiken Ashi close), then measures the distance between the high and that EMA (bull buffer) and between the EMA and the low (bear buffer). Both buffers are independently EMA-smoothed and combined into a final histogram series. The result quantifies the vertical spread between price extremes and the central EMA — a measure of momentum range rather than direction alone.

12 Signal Types

  • Nika Signal Crosses Average — signal line crosses its own moving average
  • Nika Signal Line Level Cross — signal line crosses a user-defined threshold
  • Histogram Level Cross — histogram crosses a defined level
  • Histogram Moving Up or Down — histogram directional change across consecutive bars
  • MA Crossover — dual moving average crossover on price
  • Close Above or Below MA — price close relative to a moving average
  • Two Nika Signal Lines Crossover — two independent signal line instances cross each other
  • Two Nika Signals Cross Average — both signal instances cross their respective averages
  • Nika Signal Crosses Two Averages — signal line crosses two distinct averages simultaneously
  • Nika Signal Line Moving Up or Down — directional change of the signal line itself
  • Nika Average Line Moving Up or Down — directional change of the smoothed average line
  • Signal and Average Lines Moving Together — both lines moving in the same direction

Modular Rule System

Three independent rule slots each support any of the 12 signal types, a dedicated timeframe, and a role assignment of Entry Trigger or Entry Filter. Entry Control modes (ALL or ANY) determine whether all enabled rules must align or only one. The same logic applies independently for exit signals.

Risk Management — 15 Independent Layers

  • Stop Loss — Fixed Pips, ATR Multiplier, or Price Promille
  • 10-Level Take Profit Ladder — partial close at each level with configurable size percentage
  • Breakeven — automatic stop advancement after reaching a defined profit threshold
  • Stop Loss Steps — progressive stop ratcheting independent of trailing
  • Trailing Stop — RRR-based steps or fixed percentage trail
  • Daily Account Trailing — equity curve trailing stop with session-level protection
  • Daily Loss Limit — pauses trading on breach, auto-resumes on schedule
  • Daily Profit Limit — locks in daily gains after reaching target
  • Weekly Loss Limit — extended period loss cap with configurable resume
  • Weekly Profit Limit — weekly profit cap with auto-resume scheduling
  • Maximum Entries Per Day — caps new entries within a single session
  • Maximum Open Lot — per symbol or cross-symbol volume cap
  • Spread and Commission Compensation — adjusts TP and SL for real execution costs
  • Direction Filter — Long Only, Short Only, or Both
  • Trade Cooldown — configurable bar-count cooldown per entry type

Re-Entry and Scale-In Systems

After a trade closes, the re-entry system can automatically open a new position in the same direction for a configurable series count (fixed, zero to disable, or -1 for infinite). Each re-entry respects full signal and filter logic. The scale-in system supports up to 10 independent levels, each with its own RRR trigger distance and position size. Both systems use dedicated magic numbers for clean position tracking.

Additional Features

  • Live news filter — economic calendar integration with impact level filtering and configurable pause windows
  • Hours filter — session window with timezone and DST support
  • Weekday filter — enable or disable trading on individual days
  • Dashboard — real-time chart overlay with signal states, P&L, and filter status
  • Alerts — push notifications, email, and sound on trade events and signal changes
  • 6 custom optimization criteria for MT5 Strategy Tester
  • Profit scaling-out — account-level partial close at configurable profit milestones

Input Parameters

General Settings

  • Magic numbers for main, re-entry, and scale-in positions
  • Max deviation permille for order execution tolerance

Trade Settings

  • Initial entry mode — wait for signal or immediate entry
  • Allowed trading direction — Long/Short, Long Only, Short Only
  • Max main entries at a time and max entries per day
  • Risk percentage of balance
  • Hedge permission and spread/commission compensation

Stop Loss Settings

  • SL Method — Fixed Pips, ATR Multiplier, Price Promille
  • ATR timeframe, period, and multiplier
  • Promille value and average period

Targets Settings

  • Up to 10 TP levels — each with RRR multiplier and partial close percentage
  • Breakeven and SL Steps enable toggles

Scale-In Entry Settings

  • Up to 10 scale-in levels — each with RRR trigger and size percentage
  • Max entry level deviation tolerance

Trailing Stop Settings

  • Mode — Trailing Steps (RRR-based) or Trailing Percentage
  • Start RRR, Step RRR, Offset RRR

Daily Trailing Settings

  • Trail start, step, and amount as percentage of account balance
  • Resume hour configuration

Daily/Weekly P&L Limits

  • Daily and weekly loss and profit values — money or percentage
  • Configurable resume day and hour for each limit

Hours Filter Settings

  • Start and end hour/minute for the trading session
  • Close trades at end hour — all days or Friday only

News Filter Settings

  • Enable/disable by impact level — High, Medium, Low
  • Pause seconds before and after each event
  • Auto-close positions on news events
  • Visual news lines on chart with configurable colors and style

Trading Rules

  • Three rule slots — each with signal type, timeframe, role, and signal-specific parameters
  • Entry Control and Exit Control — ALL or ANY logic

Tester Settings

  • 6 custom optimization criteria — result/drawdown ratios, recovery factor, Sharpe ratio, win rate

Dashboard Settings

  • Enable/disable dashboard, font, colors, max display actions

Alert Settings

  • Sound/popup, push notification, and email alert toggles

How to Use

  • Attach the EA to any MT5 chart. The signal engine runs internal calculations — no external indicator window is required in this version.
  • Enable at least one rule slot by setting its Enable toggle to true and selecting a signal type.
  • Configure stop loss method and at least one TP level or trailing mode.
  • Enable daily loss limit and max open lot as a minimum risk baseline before live trading.
  • Test configurations in the MT5 Strategy Tester before deploying to a live or prop account.
  • Use the 6 custom optimization criteria to tune for your preferred risk-reward profile.

Notes / Requirements

MetaTrader 5 with hedging account type required. Market order execution. Compatible with all symbols and all timeframes available on the connected broker. A VPS with stable connectivity is recommended for continuous operation. The news filter requires that the calendar data URL is added to the allowed URLs list in Tools > Options > Expert Advisors. Spread and commission compensation requires accurate commission input for the target instrument. All risk layers are optional and independent — enabling none is valid for testing but not recommended for live trading.

Recommended products
The Catalyst EA
Daniel Naranjo Morales
The Catalyst EA The Catalyst EA is a sophisticated trading robot designed for the MetaTrader 5 platform. It is specifically developed for trading the   AUDUSD currency pair on the H1 timeframe . The EA employs a multi-indicator strategy that aims to identify and capitalize on potential market reversals and corrections. A primary focus of its design is robust risk management, featuring dynamic lot sizing and multiple layers of trade protection to manage your capital effectively. Strategy The Cata
The EA uses scalping strategy at night, trading consists of three algorithms and each algorithm works in its own time interval. The EA uses many smart filters to adapt to almost any economic situation. Pending orders are used for the least slippage when trading scalping. The adviser is safe and does not require any settings from the user, just install it on the chart and you are ready. The EA sets a protective stop order, so the trader does not have to worry that the robot will allow significant
NRP Smc Pro
Black Panther AI
NRP SMC PRO EA — Product Description Short Description Professional Smart Money Concepts Expert Advisor engineered for XAUUSD, combining institutional market structure analysis, Fair Value Gaps, liquidity sweeps, and prop-firm-focused risk management. Includes optional news filtering, trading sessions, trade journaling, and advanced capital protection. NRP SMC PRO EA — Institutional Smart Money Automation for MT5 NRP SMC PRO EA is a professional Smart Money Concepts Expert Advisor built around c
Momentum SNI
Wassayos Phuthadthom
Momentum SNI v1.31: Sniper Trading System | Capture Major Trends | Target RR 1:30 "Less loss, more profit." If you're tired of scalping or Martingale EAs that boast a 90% win rate but cause you to lose your entire account in a single day,  Momentum SNI  is the complete opposite. This EA is designed for asymmetric risk , aiming to capitalize on the strongest market momentum to maximize profits with a risk-to-reward (RR) ratio of 1:30. Key features and logic. Strict momentum filter: This EA doesn
Omega AI MT5
Irina Selivanevskaia
1 (4)
Omega AI Neural EA: Cognitive Algorithmic Complex for XAUUSD Based on LLM-Consensus and Interactive Contextual Analysis Real-Time Monitoring: The effectiveness of the system's cognitive algorithms is confirmed on a live trading account. You can independently audit the operational activity, current statistics, and equity dynamics of Omega AI Neural EA at the following link:  https://www.mql5.com/en/signals/2361385 Pricing Dynamics & Limited Licenses: The project is implemented in a limited access
Aurum Sentinel doesn't predict the breakout. It's already standing at the level when it happens. No indicators, no repainting, no discretionary judgment calls at 3 AM. It places real pending Stop orders at genuine standing price extremes and lets the market pull the trigger — then manages risk mechanically from the instant the trade opens. Why Aurum Sentinel 1. It trades levels, not indicators Every hour, Aurum Sentinel recalculates the highest high and lowest low over your chosen lookback windo
Gordian Knot 1
Hidenori Tanaka
This EA is a simple automated trading system for the Meta Trader 5 platform. It uses parabolic SAR to automatically adjust lot size based on market trends. By this, the EA does not take a large amount of risk, but instead steadily accumulates profits. Main Features The EA does not use the martingale method for lot size adjustment. If a position is taken before the forex market closes, the position will be carried over to the weekend. This EA is designed to hold multiple positions at the same t
Quantum bot
Samuel Bedin
quantum bot designed for forex trading. test on eur/usd gives good returns. based on several indicators include risk management. best timeframes 1h; 4h. this bot was backtesting for the past year and gives 2000% return profit. no hidden lost trades in code. settings are customizables to give you better experience of trading. contact me for more details or installation guide
Modern bot
Nadiya Mirosh
The Forex trading advisor Modern bot is an automatic scalping system that opens and closes deals using a special tick analysis algorithm programmed in the code without human intervention. The main task of the ego is to instantly make a deal where a person loses time for analysis and decision making. They also automate trading, removing the emotional burden from a person and allowing you to save time. Scalping is one of the varieties of short-term strategies, moreover, the shortest of them. Usin
Key Features: Universal Connectivity:   Automatically executes trades from almost any MT4 indicator via Buffer lines or Object Arrow codes   . Invisible TP/SL Mode:   Hide your profit targets and stop losses from your broker to prevent stop-hunting   . Smart Loss Recovery:   Built-in dynamic lot-increment system ( Enable Recovery ) to recover losses safely   . Account Protection:   Hard-coded Daily Profit Target and Daily Loss Limits in USD to secure your capital   . MTF Filter:   Verify sign
Joni Lee Second Forex Robot in the Market CAN RUN WITH ONLY $300 (recomended minimum deposit) LOT size 0.01 if <$2000 else 0.02 Introducing the “Joni Lee First Forex Robot,” a trailblazing innovation in automated forex trading. Developed by the renowned Joni Lee, this robot is the first of its kind, setting new standards in the forex market. Key Features: Can take profit (TP) and cut loss (CL) State-of-the-Art Algorithms:   Employs sophisticated algorithms to analyze market data and execute tra
️ THE PRICE OF 369 IS ONLY FOR THE FIRST 30 DAYS OF THE LAUNCH. AFTER THAT, IT WILL BE 899 ️ WALL STREET SMART PRO is an advanced algorithmic system, an exact replica of the core algorithm used by a Central American financial institution; developed jointly by a team of professionals in software engineering and financial trading. It is designed to trade based on liquidity sweeps, structure identification, and a specific combination of mathematically and algorithmically configured indicators. I
DeltaRebate v9
Sinlapachai Satthuchon
ULTRA-GRID SMART TRADER (UGST) - The Ultimate Volume Maximizer & Rebate Hunter ULTRA-GRID SMART TRADER   is a highly aggressive, high-frequency Expert Advisor engineered specifically for massive volume generation and rebate (cashback) farming. If your primary goal is to generate an extraordinary amount of trading lots to claim maximum broker commissions, this is the ultimate tool for your portfolio. How It Works:   UGST utilizes a specialized Hedging and Grid framework combined with high-freque
Gold Scalper King EA
Naveen Kumar Shyam
Gold Scalper King EA is a fully automated MetaTrader 5 Expert Advisor developed exclusively for trading XAUUSD (Gold). The EA follows a systematic breakout strategy that combines market structure analysis, pending order execution, and dual EMA trend confirmation to identify trading opportunities. Rather than predicting market reversals, Gold Scalper King waits for price to confirm a breakout beyond significant swing highs or swing lows before entering a trade. Every position follows predefined t
TPS Master Pro is an institutional-grade, multi-strategy algorithmic trading system built for the MetaTrader 5 (MTF) platform. Engineered for high-performance precision, it seamlessly blends advanced trend-following matrix layers, smart money price action filters, and a highly sophisticated risk mitigation engine. Whether deployed as a multi-asset grid system or a scalping engine, TPS Master Pro provides retail traders with the technical edge and data-driven security models typically restricted
MIISC PullBack
Adebayo Bisiriyu Adewole
MIISC PullBack is an indicator based STRATEGY which is one of the OFFICIAL "MIISC STRATEGY", the alogrithm takes into consideration a potential PULLBACK for entry.  Important Steps: * The EA should be used on 1H timeframe only. * Leverage the probability of the EA by applying to a minimum of 5 different symbols. * According to your capital, set a reasonable lot size. * The EA uses a fixed and dynamic stop loss. - A fixed stop loss is applied at the time of executing the trade identified by the e
EA Golden HARTLEY is a robust trading strategy designed for XAUUSD or GOLD  and M30 time frame. The EA creates pending stop trade orders using indicators Linear Regression Smoothed Moving Average, BB Range and parameters based on the market environment. It uses fixed SL, PT and exit from the position after time cut off. The EA was tested with several Monte Carlo robustness tests and optimized. Backtest was done on ticks data with a 15-year history 2007-2023. There is no need to set any paramete
XAU Future Gravity
Napat Puangjunkum
XAUUSD Future Gravity AI Future-Gravity Engine - Stop looking left. Trade towards the invisible magnetic zones on the right. XAUUSD Future Gravity AI is an extraordinary, next-generation Expert Advisor built upon the revolutionary "Future-Order Gravitational Pull" theory. Traditional EAs look back at historical data to guess the future, but the market moves toward massive liquidity pools and pending orders that are waiting to be filled. Using complex Reverse Symmetry, this EA calculates the inv
Quantum Candlestick Collider — Institutional-Grade Precision for XAUUSD Quantum Candlestick Collider is a next-generation automated trading system engineered specifically for XAUUSD (Gold) on the M15 timeframe. Built on a proprietary quantitative engine and advanced candlestick intelligence, this EA delivers exceptional entry precision, adaptive market awareness, and institutional-level risk control — designed to perform even under extreme market volatility. Real trading environment Transpa
RSI Stocks Rebound
Alexandru Chirila
4 (1)
RSI Stocks Rebound The Dollar Cost Average with RSI Expert Advisor (EA) combines the power of the Dollar Cost Average (DCA) strategy with the Relative Strength Index (RSI) indicator to optimize entry and exit points for trades. This EA is specifically designed for traders who want to take advantage of market conditions, using the RSI to trigger buy signals during market dips and executing a DCA strategy to accumulate positions when the market continues to move against them. All Products   |   Co
Mac Rider Gold
Ignacio Agustin Mene Franco
MacRider GOLD is a professional grid-based Expert Advisor (EA) specifically designed for XAUUSD (Gold). It combines MACD signal filtering with dynamic trailing stops and advanced money management. The EA uses the MACD indicator to detect trend direction before placing pending orders, filtering out low-quality entries and focusing on high-probability setups. The grid system places BUY STOP and SELL STOP orders at configurable distances, while automatic profit closing and dynamic trailing stops
Dragon wing
Shinichi Ikeda
EAの概要 MACDとストキャス を使用したEA MACDとストキャス をベースにトレーディンストップ、 テイクプロフィットレベル などの設定及び機能を搭載しています。 特徴 新規エントリーをサーバー時間でトレードをタイムコントロール出来る機能を搭載しています。 利確幅、ロスカット幅を任意に設定可能です。 MT5であればブロカー関係なく、暗号資産(仮想通貨)、FX、CFD、株式等の使用可能なEAとなっております。 EAを稼働させる上での注意事項 当サイトでご提供しているEAは、利用者の収益を保証するものではありません。 当サイトで掲載しているロジック、損益シミュレーションと同じ結果になることを保証するものでもありません。利用者の環境等で結果が異なることもございます。 実際にEAを利用するか中止するかの判断は、必ずご自身で決定してください。
RavenQuant Daybreak - Product Description RavenQuant Daybreak Automated intraday volatility-breakout expert advisor for the US500 (S&P 500) on MetaTrader 5. Production version 4. Documentation (manual) — full setup, preset file, VIX data, broker time examples, and parameter reference are in the manual. This page is a short product overview only. Overview RavenQuant Daybreak is a rules-based trading system for the US500. It trades opening-range breakouts in both directions, with a hard stop loss
First Scalper MT5
Kyra Nickaline Watson-gordon
5 (4)
First Scalper is an Expert Advisor based on Scalping, Using the best and safest scalping EA on market. 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. First Scalper can trade on all symbols and all time frames, using a special and unique strategy developed by the author. Using EA : General Options Trade Type : Long/Short/Both Stop
XAUUSD Golden Sovereign AI          The Ultimate Smart Dynamic Grid Matrix - Volatility-Adjusted Trading Engine XAUUSD Golden Sovereign AI is a luxurious, high-performance algorithmic trading system designed exclusively to extract maximum profits from Gold (XAUUSD). By combining a Volatility-Adjusted Grid System with pristine AI-based entry filters (Bollinger Bands + RSI), this EA ensures entries only occur at extreme turning points. If the market moves against the initial entry, the EA dynamic
PythonX SwissCore USDCHF Precision Market Structure Trading Engine PythonX SwissCore USDCHF is a professional-grade Expert Advisor built around one of the most respected concepts in modern trading: market structure. By combining Break of Structure (BOS) and Change of Character (CHOCH) with EMA-based trend filtering, the system is designed to execute trades with discipline, clarity, and consistency. Why This System Stands Out Most automated systems rely heavily on lagging indicators. PythonX Swi
Doperman Scalper
Shamsan Yahya Muhammad Ali Masad
DOPERMAN SCALPER V1.0 - Professional Trading System What is DOPERMAN SCALPER? An intelligent automated trading system designed for fast-paced market scalping. It combines advanced martingale strategy with rigorous risk management for consistent trading performance. Key Features: Smart Trading System: Intelligent position doubling at optimal moments using mathematical calculations 5 different martingale strategies to choose from Additional positions only activate when price moves against you by
EA Name: Dynamic Hybrid Scalper (XAU Specialist) "A Synergistic Blend of Trend Following and Smart Grid Logic for Consistent Gold Trading" Key Highlights Multi-Timeframe Analysis: Triple-layer trend analysis that monitors the High Timeframe (HTF) trend down to the specific entry Signal Timeframe for maximum precision. 5-Factor Signal Confirmation: A sophisticated filtering system using five core metrics: EMA Trend, RSI, MACD, ADX Strength, and Price Action Breakout. Dynamic Lot Managemen
Ksm: Smart Solution for Automated Forex Trading Ksm is a tool designed for automating Forex trading, using modern methods of time-series data analysis to work with multiple currency pairs across different timeframes. Key Features and Benefits Multi-currency support : Ksm enables trading across multiple currency pairs, helping traders adapt their strategies to various market conditions. New currency pairs can be easily added. Time-series data analysis : Utilizing advanced algorithms, Ksm analyzes
Buyers of this product also purchase
Scalping Robot Pro MT5
MQL TOOLS SL
4.45 (136)
Scalping Robot Pro is a professional trading system designed specifically for fast and precise scalping on XAUUSD using the M1 timeframe. The system is built to capture short term market movements with accurate execution and controlled risk management. It focuses on real time price behavior, momentum shifts, short term volatility, and selective grid based trade management techniques to identify high probability trading opportunities in the gold market. Scalping Robot Pro is optimized for traders
Ultimate Breakout System
Profalgo Limited
5 (46)
IMPORTANT : This package will only be sold at current price for a very limited number of copies.    Price will go to 1999$ soon!   +100 Strategies included and more coming! BONUS : At 1499$ or higher price --> choose 5  of my other EA's for free!   ALL SET FILES COMPLETE SETUP AND OPTIMIZATION GUIDE VIDEO GUIDE LIVE SIGNALS REVIEW (3rd party) NEW - 44-STRATEGIES LIVE SIGNAL Welcome to the ULTIMATE BREAKOUT SYSTEM! I'm pleased to present the Ultimate Breakout System, a sophisticated and propr
Syna
William Brandon Autry
5 (27)
Syna 7 - The AI Trading Operator That Stays With the Trade. Most trading systems make an entry decision and then fall back to fixed rules. Syna 7 remains involved. Syna is an autonomous AI trader, trading assistant, and position-management system designed to operate from analysis through exit. It can analyze current market conditions, evaluate news and volatility, remember the original trade reasoning, monitor open exposure, and continue reassessing the position as conditions change. Trading do
Big Forex Players MT5
MQL TOOLS SL
4.76 (140)
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
XG Gold Robot MT5
MQL TOOLS SL
4.31 (113)
The XG Gold Robot MT5 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 Action, Cycle S
Mad Turtle
Gennady Sergienko
4.52 (121)
Symbol XAUUSD Timeframe (period) H1-M15 (any) Support for single-position trading YES Minimum deposit 500 USD  (or the equivalent in another currency) Compatible with any broker YES (supports 2 or 3-digit brokers. Any deposit currency. Any symbol name. Any GMT time.) Runs without pre-configuration YES If you are interested in the topic of machine learning, subscribe to the channel:  Subscribe! Key Facts about the Mad Turtle Project: Real Machine Learning This Expert Advisor does not conn
Bitcoin Scalping MT5
Lo Thi Mai Loan
5 (5)
[ IMPORTANT ] REAL CLIENT FEEDBACK :  https://www.mql5.com/en/market/product/127498/comments#comment_58814415 [ IMPORTANT ]  UPDATED (1 YEAR PERFORMANCE):  https://www.mql5.com/en/market/product/127498/comments#comment_59233853 [ IMPORTANT ]  UPDATED (1 YEAR 6 MONTHS PERFORMANCE):  https://www.mql5.com/en/market/product/127498/comments#comment_60000067 Follow the channel for the latest update .  JOIN GROUP:   Click here Other EAs You May Like AI AURUM PIVOT  | AI VEGA BOT  | Golden Blitz  I
Waka Waka EA MT5
Valeriia Mishchenko
4.13 (40)
8+ years of live track record with +12,000% account growth: Live performance MT 4 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
AiQ
William Brandon Autry
4.87 (38)
AiQ Gen 2 - Precision Pending-Order Intelligence for Fast-Moving Markets. AiQ Gen 2 is built to identify developing market movement, prepare before the opportunity fully unfolds, and position with precision through intelligent pending orders. Instead of waiting until price has already reached the intended entry area, AiQ analyzes current market structure, direction, timing, volatility, and expansion potential before deciding where an order should be placed. It prepares before the move, but only
Bonnitta EA MT5
Ugochukwu Mobi
3.38 (21)
Bonnitta EA  is based on Pending Position strategy ( PPS ) and a very advanced secretive trading algorithm. The strategy of  Bonnitta EA  is a combination of a secretive custom indicator, Trendlines, Support & Resistance levels ( Price Action ) and most important secretive trading algorithm mentioned above. DON'T BUY AN EA WITHOUT ANY REAL MONEY TEST OF MORE THAN 3 MONTHS, IT TOOK ME MORE THAN 100 WEEKS(MORE THAN 2 YEARS) TO TEST BONNITTA EA ON REAL MONEY AND SEE THE RESULT ON THE LINK BELOW. B
Perceptrader AI MT5
Valeriia Mishchenko
4.67 (6)
80 consecutive months in profit with low drawdown: Live performance MT4 version can be found here Perceptrader AI is a cutting-edge grid trading system that leverages the power of Artificial Intelligence, utilizing Deep Learning algorithms and Artificial Neural Networks (ANN) to analyze large amounts of market data at high speed and detect high-potential trading opportunities to exploit. Supported currency pairs: NZDUSD, USDCAD, AUDNZD, AUDCAD, NZDCAD, GBPCHF Timeframe: M5 Features: Trend , Mome
Velora MT5
Ahmad Aan Isnain Shofwan
The Intelligent Grid EA — A Team of Smart Modules Following the 5-star success of its MT4 predecessor, Velora has been completely rebuilt for MT5 with a fundamental shift in design. Most grid EAs are one engine doing many jobs. Velora is different. Inside Velora, there is a team. Four smart modules, each with one specialty, working together so the system stays adaptive at every stage of a trade — from the moment of entry, to scaling decisions, to the exit. Meet the team: VSE — Velora Smart Entr
Minting
Zenzo Phathisani Mtungwa
***ATTACH to M1 or M5 for best results and quick entries and exits*** Minting –  is a streamlined, professional-grade Expert Advisor developed by Ramulo Software Ltd., designed specifically to capitalize on the volatility and profit potential of Gold (XAUUSD). It combines intelligent EMA-based market structure, ATR trend detection, tiered USD trailing, and strict drawdown control into a lightweight, easy-to-run trading system. Minting is the entry gateway into the Emerge ecosystem . It is inten
Super Hybrid EA AI Pro
Bashar Taisir Saleh Al Zubaidi
5 (1)
Super Hybrid EA AI Pro Professional XAUUSD Grid, Martingale, Hedging and Basket Risk-Control Expert Advisor for MetaTrader 5 Group Channel Link: https://www.mql5.com/en/messages/0193d17ed016dd01 This Expert Advisor incorporates seven advanced protection layers designed to safeguard the trading account, control exposure, and reduce overall trading risk. 1. High-Impact News Filter The EA automatically suspends the opening of new trades for two hours whenever major high-impact economic news is dete
Super Tenet
Cence Jk Oizeijoozzisa
5 (1)
Super Tenet is a powerful and intelligently designed Expert Advisor developed for traders who prefer stable automated execution on Gold markets. Built specifically for XAUUSD on the M1 timeframe, this system combines fast reaction speed with advanced internal trade management and adaptive market behavior. The EA has been optimized to work smoothly across different brokers and trading environments. Whether you use ECN, Standard, Raw Spread, or low-latency execution accounts, Super Tenet is design
Golden Pickaxe MT5
Valeriia Mishchenko
3.56 (9)
EA has high-performance live track records of different set files: Live performance MT 4 version can be found here Golden Pickaxe is a mean-reversion grid trading system that uses machine learning technology to place high-profit potential trades on the Gold market. It uses real market inefficiencies to its advantage to have an edge over the market. The EA has 5 predefined set files, which are essentially 5 different trading systems on gold . You may choose the default option (XAU Risky) or have
Night Hunter Pro MT5
Valeriia Mishchenko
3.92 (37)
EA has a live track record with many months of stable trading with  low drawdown: All Pairs 9 Pairs Night Hunter Pro is the advanced scalping system which utilizes smart entry/exit algorithms with sophisticated filtering methods to identify only the safest entry points during calm periods of the market. This system is focused on a long-term stable growth. It is a professional tool developed by me years ago that is constantly updated, incorporating all the latest innovations in the trading area.
XAUUSD TEMPORAL INTERFERENCE AI    Temporal Interference Scanner - The absolute pinnacle of Multi-Timeframe convergence. **XAUUSD Temporal Interference AI** is the absolute pinnacle of market timing, built upon the groundbreaking "Cross-Temporal Interference" theory. By scanning the fractal noise across 9 different timeframes, the AI detects precise moments where market waves collide, cancel out, or amplify each other. When these temporal waves perfectly align in a localized singularity, the AI
Scalp Master Expert Advisor is a fully automated trading system designed for scalping strategies in trending market conditions. It is built to identify short-term trading opportunities in liquid markets while maintaining a strong focus on trade quality and risk control. The EA is suitable for traders who prefer a systematic and rule-based approach without manual intervention. Recommended Pairs: XAUUSD & BTCUSD It performs best on instruments with tight spreads and strong liquidity, including: XA
Monarch Golden Sparrow
Ghayas Ul Haque Malik
️ REQUIRED SETTING: Optimized for XAUUSD 0.01 Lot Size. ATTENTION: This system is precision-tuned for XAUUSD (Gold)  on Exness  using a base entry of 0.01 lots . For maximum stability and account longevity, users must ensure their starting input is set to 0.01 unless using high-capital professional accounts. Monarch Golden Sparrow: The Gold Sovereign. Precision. Recovery. Power. THE ASSET: Gold (XAUUSD) is the king of volatility. It doesn't move; it strikes. To trade it, you don't need a basic
DeepMatrix FX Advanced Algorithmic Intelligence for XAUUSD DeepMatrix FX — Precision. Intelligence. Performance. Important! Please contact me after installation to obtain the best recommended settings file. Next Price is 2 99 $ DeepMatrix FX is a fully automated trading system developed specifically for XAUUSD on the Any timeframe. Built with advanced algorithmic logic, adaptive market analysis, and precision execution technology, DeepMatrix FX is designed to identify high-probability trading op
Swingy3
Bashier Awny Husein Ismail Alhafy
Swingy3: The Institutional Pivot & Swing Execution Engine Swingy3 is an algorithmic trading system designed for MetaTrader 5, focusing on high-conviction price action swings and institutional-grade risk management. Unlike standard retail indicators, Swingy3 analyzes market structure through dynamic pivot points and multi-timeframe confluence to identify entries where momentum and exhaustion align. The Strategy The core of Swingy3 is its advanced Pivot Analysis engine. It detects institutional "S
Foli Pivots MT5
John Folly Akwetey
Expert advisor trades by pivot levels, support and resistance levels based on pivot levels. Also expert advisor takes into account volatility filter, uses standard Martingale and anti-Martingale systems, drawdown protection, standard trailing stop, trading time and trading Trade Order   – direction of trading (only buy, only sell or buy and sell) Use Volatility Filter   – enabling/disabling of volatility filter using Volatility Filter   – value of volatility filter Count Of Days For Volatility F
SPARTAN GOLD SNIPER AI - V7.2 ULTIMATE The All-In-One Gold Solution: Smart Scalping and Professional Swing Trading. Spartan Gold Sniper is not just an EA; it is a complete trading system designed specifically for XAUUSD (Gold). Version 7.2 introduces the Smart Adaptive Engine, making it the most flexible bot on the market for both small accounts and large Prop Firm capitals. Critical Requirements Latency: You must use a VPS with less than 20ms latency (Recommended: MQL5 Built-in VPS). Account:
Gold Catalyst EA MT5
Malek Ammar Mohammad Alahmer
Advanced Automated Gold Trading System Gold Catalyst EA MT5 is a fully automated trading solution exclusively optimized for XAU/USD (Gold) . By combining trend-following methods , price action confirmations , and dynamic risk management , this EA has demonstrated stable, reliable performance over more than 2.5 years of continuous forward testing under real market conditions — and it is still running on a VPS to this day. Behind the algorithm is a scientist with 15 years of market experience : ob
X Gold Nexus — AI-Powered Next-Generation Gold Trading Execution System X Gold Nexus is an advanced AI-powered quantitative trading execution system specifically engineered for the gold market (XAUUSD). By integrating cutting-edge artificial intelligence technologies, adaptive market analysis, dynamic risk management, and intelligent order execution algorithms, the system is designed to provide stable and disciplined trading performance across varying market conditions. During the special offer
Quant Gold HFT Expert Advisor for XAUUSD on M15 timeframe. Main Features: ATR-based trailing stop and breakeven Daily Pivot levels filter Entry cooldown system Blocked hours during high volatility periods No martingale, no grid Backtest Results (Pepperstone, real tick data): 2 Years: Profit Factor 1.22, Max Drawdown 9.4% 1 Year: Profit Factor 1.27, Max Drawdown 9.2% 4 Months: Profit Factor 1.36 $500 account run on 0.01 lot The EA was tested on different time periods with stable results. Importa
Gold Grabber Grid Hedge
Israel Odartei Lamptey
GOLD GRABBER Israel L. MT5 Grid-Hedge EA. WARNING: EA has Optimised  sets for GOLD (XAUUSD) ONLY (Minimum Capital: $1000) Download sets below: Use these sets for XAUUSD:  https://drive.google.com/drive/folders/1FBfc-eE7B7APhZ-P754R76d3xih8OnXX?usp=sharing Professional Grid-Hedge Trading System with Advanced Risk Management This sophisticated Expert Advisor employs a dual-directional grid strategy designed for consistent performance in volatile markets. The system opens positions in both directi
Saiko Scalper v5
Samir Saleh Mohammed Hassan
SAIKO Scalper is an advanced algorithmic trading robot designed to detect and exploit real market momentum using tick-level impulse analysis. Instead of relying only on traditional indicators, the robot monitors consecutive price movements in real time and enters trades when a strong directional impulse is detected. This approach allows SAIKO Scalper to capture fast market opportunities while avoiding many false signals caused by normal price fluctuations. The robot includes multiple layers of
PivotStorm
Li Yin Fang
PivotStorm - Adaptive XAUUSD Market Structure Breakout EA Professional Automated Trading System for MetaTrader 5 PivotStorm is a professional XAUUSD Expert Advisor designed for traders who prefer structured breakout trading based on confirmed market levels. The system combines market structure analysis, intelligent pending-order execution and multi-level risk management to provide a disciplined automated trading approach for the gold market. Unlike simple breakout robots that react to every pri
More from author
HTF Candles Nika overlays full-size candles from any higher timeframe directly onto your current chart in MetaTrader 5. It gives you a clear multi-timeframe view without leaving your chart. Key Features - Draws higher timeframe candles as filled rectangles with wicks on the current chart - Supports standard candlestick and Heiken Ashi display modes - Live countdown timer showing time remaining until the current HTF candle closes - Customizable colors for bullish and bearish candles - Auto or m
FREE
NIKA QUANT ANALYZER — Professional Optimization Analysis for MT5 Strategy Tester Stop guessing which optimization results are real and which are curve-fit traps. Nika Quant Analyzer reads your MT5 Strategy Tester XML exports and instantly ranks every parameter combination using the proprietary QM+ Score — a single decisive number that fuses Profit Factor, Sharpe Ratio, Recovery Factor, Max Drawdown, Return/DD ratio, and trade count into one actionable metric. Now with MULTI-FILE GLOBAL RANKI
FREE
Spread Engine Nika — Real-Time Spread Profiling for MetaTrader 5 Spread Engine Nika is a professional spread analysis indicator for MetaTrader 5. It builds a statistical spread profile for any symbol using historical tick data, displays live spread conditions in context, and gives you an instant read on whether current spreads are normal, elevated, or dangerous — all in a compact on-chart panel. Designed for scalpers, intraday traders, and anyone who cares about execution cost, it turns raw spre
FREE
Candles Size Stats Candles Size Stats is a lightweight yet powerful indicator that measures and visualizes the size of every candle (High − Low range) in pips, giving you an instant statistical picture of price volatility on any symbol and timeframe. What it does The indicator plots each candle's full range as a color-coded histogram in a separate window. Bars are green when the current candle is larger than the previous one and dark green when it is smaller, making expansion and contraction imm
FREE
Telegram Control Center (TCC) is a utility Expert Advisor for MetaTrader 5 that connects your trading account to Telegram. It does not open or manage trades. It monitors your account, sends real-time alerts, and lets you control positions remotely via Telegram commands. Key Features - Real-time monitoring of balance, equity, margin, and all open positions - Instant Telegram alerts when positions open, close, or are modified - Equity drawdown alerts with a configurable threshold - Built-in Econ
FREE
Spread Times Histogram and Stats is a spread monitoring indicator for MetaTrader 5. It plots a real-time color-coded histogram of broker spread, tracks a rolling 24-hour average, and fires smart alerts when spread exceeds a configurable dynamic threshold. Key Features - Color-coded histogram: green when spread tightens, red when it widens - Rolling 24-hour average line for ongoing context - Session statistics: minimum, maximum, and average spread for the current session - Smart alert system: f
FREE
Nika Session Spread Intelligence is a lightweight on-chart indicator that shows you exactly when your market opens, how long until it closes, and displays all trading sessions at a glance — directly on your chart in a clean, dark-themed panel. Unlike generic session indicators, this tool reads your broker's actual session schedule for any symbol via de>SymbolInfoSessionTrade, so the times shown are always accurate for your specific instrument and server — whether it is forex, indices, commoditie
FREE
TrendDrift Oscillator is a double-smoothed mean deviation oscillator for MetaTrader 5. It measures how far price has drifted from its exponential moving average (EMA), then applies two layers of EMA smoothing to filter out noise and produce clean, actionable trend signals. How It Works: 1. Calculates an EMA of the selected price source 2. Measures the deviation between price and the EMA 3. Applies a first layer of EMA smoothing to the deviation 4. Applies a second layer of EMA smoothing (the
TrueFlow AD TrueFlow AD is a gap-aware Accumulation/Distribution line for MetaTrader 5 that tracks true volume flow using previous-close-adjusted True Range. The Problem Traditional A/D indicators often misread volume around gaps and large candles, because they only use the current bar high and low and ignore the relationship to the previous close. This leads to distorted signals, fake confirmations, and confusion when price jumps but true participation is weak. The Solution TrueFlow AD uses Tru
Daily Range — NikaQuant Daily Range — NikaQuant is a precision session analysis indicator for MetaTrader 5. It automatically defines the daily trading range during a configurable window (default 19:30–20:30 New York time), projects six statistical deviation levels forward to the session close (default 16:00 NY), and generates real-time trade decision signals backed by historical statistics. Session Range Box Captures the highest and lowest 5-minute close during the range window. The box is d
Adaptive Kernel Smoother NIKAQuant Indicator Adaptive Kernel Smoother NIKAQuant is a non-parametric machine-learning trend tool built around Nadaraya–Watson kernel regression. Instead of a rigid moving average, every bar is estimated from a Gaussian-weighted lookback window, giving a smooth, data-driven trend line that flexes with price structure. How it Works The core is a Gaussian kernel regression that scores each historical bar by how close it is in the lookback space. Optional ATR-scale
Filter:
No reviews
Reply to review