Please develop a system that can do the following.
1. A system that would allow you add as many Indicators as possible. This should be already designed indicator. There should be no limit to the numbers of indicators i can add.
2. Each Indicator added would be used to provide signals. (Buy signals, Sell signals, Continuation trade signals).
3. there should be signal settings made available. Each Signal should be generated from the signal settings. This means I should be able to define conditions for different signals in the settings. Such conditions should be but not limited to;
a) When two lines crosses in the indicator, please send a buy, sell, exit trade, or continuation trade signal to the (buy, sell, exit trade, or continuation trade) signal template depending on whether it crosses up or down. This also implies that I should be able to define when what i should be when it crosses up or down or remain in position.
b) When the indicator crosses a zero line it should give a buy for upward cross or sell for downward cross or even exit.
c) When the bar chart is above 60% let the trade progress with buy or sell.
d) When the candles closed below the Moving average sell signal sent, or when above buy signal sent.
You can add diff conditions based on how you different indicators take or give signals.
4. Create a Signal template for buy /sell/ Exit trade/ Continuation trade. This is where each setting would be defined. This implies that when certain conditions are all yes, let it buy or Sell or Exit the trade.
5. Pick ATR value, pick the total equity, pick the risk percentage entered for each trade, and calculate the lot size based on these data.
6. Put all those conditions above as an Algorithm.
7. Detect Trends by addition of Trend indicators.
8. Detect Volume by allowing additions of volume indicators.
9. Allow for selection of Deriv, Forex, Indices, Metals for MT5 only
10. Allow all time frames.
Buy Condition:
1. All indicator added for buy are Yes
2. Funds are available
3. Risk ratio imputed
4. Trend favors the Signal (Uptrend for Buy)
5. Lot size is calculated.
Sell Conditions:
1. All indicator added for Sell are Yes
2. Funds are available
3. Risk ratio imputed
4. Trend favors the Signal (Uptrend for Buy)
5. Lot size is calculated.
Exit
1. All indicator added for buy are Yes
Continuation Trades.
1. All indicator added for Buy/Sell are Yes
2. Funds are available
3. Risk ratio imputed
4. Trend favors the Signal (Uptrend for Buy)
5. Lot size is calculated.
11. Freedom to deselect any conditions you want to be deducting.
12. Automatic back testing of preset conditions. This should be based on how the candles are formed.
13. Options for locking it and releasing to only authorized account.
14. Should work on all Time frames
15. Sources code would be delivered
16. Open two trade, TP for Trade 1 = 1ATR or as defined by me. SL for Trade 1= 2ATR or as defined by me. I can change the number of ATR. For Trade 2 TP =Open SL = Same as Trade 1.
17. When Trade 1 hits TP then move SL of Trade 2 to Entry position. Set New SL to trail at 2ATR. TP of Trade 2 = Open. I should also be decide if it’s just one trade that it should open and which of the conditions should follow.
Note: All signals must be formed at the beginning of a new candle for the respective timeframes. Don't give signal at the middle of a time frame. Like the attached file, all the indicator must agree before a buy signal is given. The opposite would be for sell. should be able to add up to 20 indicators per signal.
Ordini simili
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
I need an MT5 Expert Advisor for XAUUSD (Gold) running on an Exness account. STRATEGY LOGIC The exact entry and exit rules will be provided in writing before development starts. Please quote for a single rule-based strategy with clearly separated logic, so the rules can be adjusted later without rewriting the whole EA. RISK MANAGEMENT (this is the priority of the project) - Risk per trade as a percentage of account
Modification of Trade_Panel_7 7.05 Objective . I have this utility “Trade_Panel_7 7.05” with which I open and close positions. Please refer to attached “Trade Panel Modification.jpg”. It shows an input parameter “Volume Step”. This parameter has the initial value of 0.02 as shown. This feature needs to be amended. Present Status . Value of lot size is increased by this “Volume Step”. I have built a whole series of
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
please share: Strategy description — entry/exit rules, indicators used, timeframe(s), and instrument(s) (a written explanation, screenshots, or an existing indicator/EA to reference all work) Risk management rules — position sizing method (fixed lot / % risk), stop loss / take profit logic, max drawdown or daily loss limits, and whether martingale/grid/hedging is involved Broker & account details — broker name
I need a unique grid trading system for XAUUSD that combines entry, controlled two-sided grid expansion, DCA (Dollar Cost Averaging) basket profit control, hedging. Unlike traditional grid EAs that only trade against price, this unique grid system should dynamically build positions in both directions based on market movement, allowing flexible adaptation to changing conditions ie the grid needs to dynamically move
I need an experienced MQL5 developer to create a fully automated MT5 Expert Advisor called Ayoub Gold EA , focused exclusively on XAUUSD (Gold) . Main requirements: Platform: MT5 / MQL5. Fully automated BUY and SELL trading on XAUUSD. Must support broker suffixes such as XAUUSD, XAUUSD.f and XAUUSDm. Trading strategy based mainly on Range Breakout with trend confirmation. EMA, ADX and ATR filters. London/New York
I need a custom MetaTrader 5 indicator designed specifically for XAUUSD gold trading. The indicator should identify potential buy and sell opportunities, display clear entry and exit signals on the chart, provide alerts, and help identify market trends and possible reversals
Looking for an experienced Sierra Chart ACSIL/C++ developer to customize an existing footprint chart. I need 3 things: 7-Day ATR – calculate and display a configurable 7-day ATR. Custom Footprint – modify my existing footprint chart to match my preferred layout/data display. Automatic LVN – detect and plot Low Volume Nodes automatically based on volume distribution. I already have a working footprint chart, so no
//———————————————————————————————————————————————————————————————————— 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 () {