Posts

Showing posts from July, 2026

Trend Following + Pullback + ATR Risk Management Strategy - Auto Trading Bot for Forex Gold 0.05

 #property strict #property version "1.00" #include <Trade/Trade.mqh> CTrade trade; #define SIG_NONE 0 #define SIG_BUY  1 #define SIG_SELL -1 // ---------------- USER INPUTS ---------------- input string          InpSymbols                         = "XAUUSD,BTCUSD"; // Broker symbols exact likho: XAUUSDm,BTCUSDm etc. input ENUM_TIMEFRAMES InpSignalTF                        = PERIOD_M5; input ENUM_TIMEFRAMES InpTrendTF                         = PERIOD_H1; input long            InpMagic                           = 26011301; input int             InpTimerSeconds                    ...

Bi-Directional Fixed Lot Grid Recovery EA - Gold Auto Trading Bot 0.01

 //+------------------------------------------------------------------+ //|                                  Karlos_Safe_Gold_Magic.mq5      | //|                                  Copyright 2026, Daniyen Aline   | //+------------------------------------------------------------------+ #property strict #include <Trade/Trade.mqh> CTrade trade; //--- Input Parameters input double FixedLot        = 0.01;      // Sirf 0.01 trades (Sabse Safe) input int    MaxTradesSide   = 15;        // Ek side par max 15 trades input int    GridDistance    = 300;       // Gold ke liye distance input double TargetProfit    = 1.0;       // $1 profit par exit target ...