Hello,
I want to Develop the following EA that has the following functions:
I. Indicator of Decision Points (DP).
a. I (the trader) note the KEY LEVELS on the chart with a certain colour / name/ line type - what ever is easiest for you
to run with BUT they have a finite length and as long as they are drawn i want the EA to draw their Decision Points
The EA must be able to go from a certain date in the past of my choosing ( variable parameter) on 2 3
different time frames of my choosing ( (ex: H4 / M15 / M1)) and draw a rectangle (with
the colour of my choosing ) around the *Decision Points that aligns with my Key Level untill price breaks it.

An Aggressive Decision Point (ADP) is a Closed Candle that
has the Key Level crossing through it or a "swing" that crosses over the level.( Pics Attached - Candle
Decision Point ) or a "RBR/DBD" type of formation that goes beyond the Candle if price fakes it before going forward.

A Conservative Decision Point is an ADP from a higher Time Frame ( pics atached - Conservative
Decision Point) . A Decision Point can be drawn only when price has closed the Candle that crosses it and it breaks the
previous DP that was present at the level.
Every time price crosses again over my key level ( as long as the key level exists) a new decision point is drawn.Here we have the case of the Flipped
Decision Point. where price crosses my level again in the opposite direction, breaks the Decision point to the
Left
These parameters should be set in the description of the object.
- set a sniff parameter- if price comes closer than x (where x is a definable) pips
and makes a move that is at least the size of the DP - wait for the *FlipDP parameter
- set a Times Back parameter (TB - see pics attached) ) ( preferably in the description of the DP - so if price
comes back to the DP and touches it but it does not cross it -
- set a Departure Parameter i define manually : Fixed number of pips and or number
of candles and or based on ATR and or 1-2-3 times the size of the DP
-set a Perfect Touch Parameter (if the key level has a perfect touch ( see pic attached) add in it's description PT
A Flipped DP becomes trade-able DP when
-price has moved away from it at least Y pips ( where Y is a parameter i define manually : Fixed number of
pips and or number of candles and or based on ATR and or 1-2-3
times the size of the DP )
-has broken the DP to the left (here i need a parameter to chose between Agressive and Conservative Decision point
that needs to be broken)
II) Trading the Decision Points drawn by the indicator part of the EA
a) trade the DP
If a DP has No Sniff & zTB( z- definable parameter- zero, one and two times back ) and no
PT & don't wait for the FlipDP parameter than trade
it with a pre-defined position size ( % of balance )
Closing the trade partially - at a fixed number of pips and or number of candles and or based
on ATR and or 1-2-3 times the size of the DP
The size of the Partial Close can be calculated either as a % of the position or using the following
formula: close as much partially at the first target so if price hits initial SL then the trade is on Break even or at BE + 1
At first before running it live i will run it on strategy builder.
Future Stages of improvement will come and i want to develop a long term working partnership with the developer.
If you have any questions please don't hesitate to contact me.
O will need the source code.
Thank you,
E.
相似订单
i need some tradingview strategy that i want to use as a tester, i have something that i am working on currently and i need someone that can provide me with tradingview strategies that doesn't have a win rate, the one with 1:1 RR it need to have low win rate like 10% or 5% profitability, i am not paying $30 for,i dont have up to that for this cause i only want to use it as a test, if anyone have any to send me please
hello i need help building a ea bot for mt5 and i have started on claude but i will need someone if a incredible experience to make my ideas come to live. please contact so we can schedule a quick call and i can share anything that concerns you for the task
I am looking for someone with real experience developing strategies, indicators, or trading tools for Quantower . The strategy itself is relatively simple. The main issue is that I need to use some of Quantower's functions and API capabilities to program the strategy, but there is limited documentation available for some of the functionality, and I do not have enough time to fully understand the API and implement
I am looking for an experienced MQL5 developer who can BOTH research trading strategies and develop a commercial-quality MetaTrader 5 Expert Advisor. This is NOT simply a coding job. The developer is free to choose the trading logic, indicators, entry method, exit method, timeframe architecture and strategy type. I do not require the EA to copy or resemble any existing commercial EA. My priority is: ROBUST LONG-TERM
I DO NOT need any programming or strategy development. I already have a working NinjaTrader 8 automated strategy based on a 3/5 EMA crossover. I need you to run my existing strategy through NinjaTrader Strategy Analyzer/Optimizer, test the existing adjustable parameters, and find robust settings with the best profit factor and lowest reasonable drawdown. I will provide the existing NinjaScript ZIP. I do not want the
I am looking to acquire an EXISTING and PROVEN MetaTrader 5 Expert Advisor. I am NOT looking for someone to develop a random new strategy from scratch. The objective is to find a robust EA with an existing track record, verify its performance and robustness, and purchase the MQL5 source code together with clearly defined commercial rights. MAIN REQUIREMENTS The EA should meet most or all of the following
Looking to acquire an existing, proven EA. Not looking for new strategy development. REQUIREMENTS — non-negotiable: Minimum 12 months verified LIVE history (Myfxbook or MQL5 Signals, real money — not demo, not backtest) Hard stop loss on EVERY trade, set at order placement NO martingale, NO grid, NO averaging into losers, NO lot multiplication after a loss Max historical drawdown under 30% Minimum 5 trades per
Project Description I am looking for an experienced MQL5/MT5 Expert Advisor developer to develop an automated trading EA for XAUUSD on the M3 timeframe , running on an Exness account . The EA will automate a manual strategy based on SNR/GAP zones , using two setup types: Price Rejection Price Correction The EA should identify valid BUY/SELL setups around predefined SNR/GAP areas, apply configurable RSI, SMA, EMA and
Hello Traders, Have a trading strategy or idea you want to automate? I specialize exclusively in MQL5 development, helping traders turn their concepts into professional trading solutions. Custom Expert Advisors — automate your strategy and reduce manual execution Custom Indicators — transform your market ideas into powerful trading tools Fix & Debug — identify errors and get your existing code working properly
//———————————————————————————————————————————————————————————————————— struct S_MCAV { double matureSum; double totalSum; double value; void Init () { matureSum = 0.0; totalSum = 0.0; value = 0.5; } void AddContext (int ctx) { totalSum += 1.0; if (ctx == 1) matureSum += 1.0; } void ApplyDecay (double rate) { matureSum *= rate; totalSum *= rate; } void Update () {