on part d'une stratégie qui se concentre sur la session américaine c'est a dire identifier et racer le plus haut et le plus bas de la bougie qui démarre a 15h30 heure de paris sur l'unité de temps 15min aussi on utilisera deux moyenne mobile exponentiel la EMA (50 et 20) réglé sur une plage horaire fixe 5min et un autre indicateur le supertrende (supertendance) tradingview elle réglé sur la plage horaire fixe de 1h
I’ve got a functuional EA (simple but solid) running on MT4. Now I want to turn it into a real AI-powered bot that: Sends trade ideas to Azure Machine Learning via ZeroMQ Waits for the AI to approve or not Only places the trade if the AI approves Pushes clean updates to Telegram (entry, AI decision , result , errors , etc.) What I need from you : Strong MQL4 code (EA + DLLs
i want you to convert my Trading view indicator into mt5 EA bot . This bot will trade on heikin ashi candles only. This is my chandelier exit indicator which u will convert to a mt5 bot
I need an MT4 EA. It just simply operates with Price Action. The EA need auto lot size function and martingale function. Open Trade Example: Buy - When momentums Up, the price pull back (not more then X %) of the signal up candles - The pull back candles must be at least 2 same colour candles - The up candles can be single candle or continuer up candles - Use the top body (not
Ɇ〆₮°°Rɪғᴀᴛ⨳࿐, [11/2/2025 10:25 AM] //+------------------------------------------------------------------+ //| Gold_XAU_EA_MT5.mq5 | //| Lightweight XAU/USD EA for MT5 | //| Strategy: MA crossover (Fast/Slow) + ATR-based SL/TP + trailing | //| Designed to be low-RAM friendly for 2GB laptops | //+------------------------------------------------------------------+ #include <Trade\Trade.mqh> CTrade trade; //--- input
//| Function to print info | Initial Deposit Withdrawals Deposits Reset to start over if the account balance drops to $0.00 string InitialDeposit_Str = DoubleToString (return_deposit(), 2 ) + " " + Currency_Str; In MT4, this leads nowhere.( string Withdrawals_Str = "0.00 " + Currency_Str; ) string Deposits_Str = DoubleToString (total_deposits(), 2 ) + " " + Currency_Str; This seems to only be
LUCKY ROBOTICS 3.1 ok. Here is a professional / marketplace grade description for this specific bot you now have (RSI CROSS + SL/TP + TRAIL TYPE A + CLOSE OPPOSITE) Use this inside code header, in Market , GitHub, documentation, YouTube, selling page etc. EA Description (Meaningful Professional Description) RSI Crossover AutoTrader EA is a precision technical entry Expert Advisor that opens trades when market
Need a professional MQL4/MQL5 developer to build a trend-following scalping EA for MT4 & MT5. EA should trade with the trend using engulfing candles , support multiple entries at the same price , include equity protection , and stop after one winning trade per day . Must have adjustable TP, SL, trailing %, and inputs for risk control
// Expert Advisor for XAUUSD (Gold) - Multi-strategy MT5 Bot input double LotSize = 0.1; input double RiskPercent = 2.0; input int FastEMA = 12; input int SlowEMA = 26; input int RSI_Period = 14; input double RSI_Overbought = 70; input double RSI_Oversold = 30; input int MACD_Fast = 12; input int MACD_Slow = 26; input int MACD_Signal = 9; input int BB_Period = 20; input double BB_Deviation = 2.0; input int ATR_Period
//+------------------------------------------------------------------+ //| Script program start function | //+------------------------------------------------------------------+ void OnTick() { // Define variables double high = iHigh(_Symbol, PERIOD_CURRENT, 1); double low = iLow(_Symbol, PERIOD_CURRENT, 1); double retracement = (high - low) * 0.3; double currentPrice = SymbolInfoDouble(_Symbol