Its a pivot indicator and the EA must place the trades according to the given lines.
if price crosses the red line, then Ea places Sell and if it crosses the blue line it must place a sell.
the ---------- lines is where the take profit must be
there are multiple red and blue lines.. say it crosses the first red line and the EA places a sell, then if it goes to the second line then it must place another sell and the tp and the order size must match to close at the second ------------- line.
it must use martingale algorithm according to the given lines distance. it must be calculated automatically.
it must continue until it takes profit. next day the indicator is updated again. if the trades don't close then it must continue following the new days chart.
eg-When the first SELL triggers (DR1), use base lot size (e.g. 0.10).
When DR2 is hit, open another SELL with increased lot (calculated automatically so if price returns to mR2, total profit ≥ TargetProfit).
Same for DR3. ( and vice versa for buy)
EA must auto-calculate lot based on Distance between entry and mR TP level.
If new day starts and indicator updates with new DR/mR and Ds/mS levels:
EA continues with open trades (it does not close them prematurely).
New triggers use the new lines automatically.
Continue until all trades close in profit at the matching mR TP line.
Next day, the pivot indicator updates — EA continues monitoring new lines while maintaining old open positions.
Opens SELLs on red line crosses
Opens BUYs on blue line crosses
Takes profit at corresponding minor level (mR or mS)
Automatically increases lot using martingale to ensure overall profit
Runs continuously — if trades remain open overnight, uses new pivot levels next day
Once all trades of a side (BUY or SELL) hit TP → closes all in that cycle and waits for next signal
inputs -
UseBuySide = true/false
UseSellSide = true/false
Maxorders
InitialLot
MaxLot
> Example:
XAUUSD price moves up and crosses DR1 (3272.78) → EA opens SELL 0.10.
If price continues to DR2 (3279.77) → EA opens SELL 0.22 (calculated automatically).
If price continues further to DR3 (3307.65) → EA opens SELL 0.45.
When price drops back to mR3 (3293.74) → EA closes all SELLs in profit.
Example Trade Sequence (XAUUSD)
1. Price crosses DR1 (3272.78) → EA opens SELL 0.10
2. Goes higher, crosses DR2 (3279.77) → EA opens SELL 0.22
3. Crosses DR3 (3307.65) → EA opens SELL 0.45
4. Drops to mR3 (3293.74) → EA closes all sells in profit
5. Later price falls, crosses DS1 (3223.95) → EA opens BUY 0.10
6. Falls again, crosses DS2 (3210.01) → EA opens BUY 0.22
7. Rebounds to mS2 (3230.94) → EA closes all buys in profit
8. Waits for next day’s pivots.
Solicitudes similares
I have a EA for XAUUSD which works awesome in sideways and trending market as well, capital requirement is only 2000USd and weekly profit is around 1500-2000 USD. I am using this bot from 3 months and getting continuous good result
Советник. Открываю сделку вручную. Советник закрывает эту сделку по окончании установленного количества свечей...то есть советник по таймеру окончания свечи. Например; установил время свечи равное 2 ( 2 свечи ), открыл позицию вручную и по окончании второй свечи советник закроет сделку
Hello, I'm looking for EA or indicator that would help me reach at least 0.5 lot daily on XAUUSD pair. I trade with 30-35 spread on live standard account. 0.3 to 0.5 lot on XAUUSD is all i need per day, without losing too much money during week or month doing that. Every advice od product is welcome. tg @stellarcptadmin
Professional MT5 Multi-Asset Trading Robot Realistic Architecture & Practical Characteristics Specification Below is a filtered, realistic, and practical specification for an excellent automated MT5 Expert Advisor focused on XAUUSD scalping (M1–M15) with multi-asset capability. I've removed marketing fluff and kept only what's technically achievable and profitable in live trading conditions. CORE IDENTITY Attribute
I am looking for a professional EA (Expert Advisor) trading bot for XAUUSD with a high success rate and low drawdown. Key requirements: Consistent and stable profitability Low drawdown (preferably under 10%) Strong risk management High risk-to-reward ratio No martingale or dangerous recovery systems Works on MT4/MT5 Adjustable lot size, stop loss, and take profit News filter and spread filter Backtesting and verified
Expert Advisor Development Specification (MT5) Project Overview I am looking for an experienced MQL5 developer to build a professional Expert Advisor for MetaTrader 5 dedicated exclusively to Bitcoin trading (BTCUSD / BTCUSDT). The objective is to create a robust, adaptive trading system focused on consistency, controlled drawdown, and long-term scalability. The EA must NOT use: Martingale Grid systems Recovery
Dear All i am working on strategy in forex market specifically in xausud and i just want someone to make it automatic execution mode as per my requirements with propee risk management my broker is exness and i have an account in MT5
✅ MT4 EA Developer Checklist (For Your Ladder EA) 1️⃣ Indicator Integration EA reads signals from provided custom indicator (.ex4 or .mq4) Detects “Buy Next” / “Sell Next” signals on current candle Works with arrow-based or buffer-based signals 2️⃣ Next Candle Execution EA does not trade on the candle where the signal appears Orders placed only at first tick of the next candle Timeframes supported: M1, M5, M15
Hi to all, I need a modification of an existing grid EA with the following instructions: Add the following optional external inputs to the attached Expert Advisor: input bool TradeModeAgainstTrend ( TMAT ) = true ; input int CounterTrendLotsToStartTMAT = 0.15 ; input double CoefficientForTrendLots = 0.30 ; input double MaxTrendLot = 0.08 ; input bool OneSideTMATOnly = true ; input double CombinedClosureAmount = 10.0
I need write EA which load csv file which content prices where is expected support/resistance level. When market price overstep price from csv file, EA open trade some pips above/under csv file price. Example: at symbol EURUSD market price overstep 1.16500 where is expected resistance. EA open trade pending order sellstop 1.1647 (3 pips will be external input). Trade will be closed based on smart trailling stoploss