I need a skilled developer who can create an ‘Multi-Indicator EA’ for me that works on all time-frames, currencies and commodities.

MQL5 Uzmanlar

İş Gereklilikleri

If I increase this project then I need developers to share more than they can do it and show/point to previous work!!


1. The idea of the trading system is as follows: market entries are performed when ALL (Trend A+B+C) Indicators main and signal lines intersect in the current trend direction. (You need to allow for a +/- input variable to dictate the strength of the trend upside/downside.

2. Indicator: Trend A is initially determined based on the ADX Trend Indicator with the specified period (14 bars is default) but allow for this value to be changed from 1 bar to 30 bars. If the current ADX value is greater than the previous one, the trend is seen as growing (adx_current>adx_previous). Alternatively, if current ADX is below the previous one, the trend is considered to be falling (adx_curent<adx_previous).ADX Trend Indicator:EUR, GBP, AUD, NZD, USD, CAD, CHF, JPY & allow for more currencies/commodities to be added.

 

https://www.investopedia.com/articles/trading/07/adx-trend-indicator.asp


When the +DMI is above the -DMI, prices are moving up, and ADX measures the strength of the uptrend. When the -DMI is above the +DMI, prices are moving down, and ADX measures the strength of the downtrend. Figure 1 is an example of an uptrend reversing to a downtrend. Notice how ADX rose during the uptrend, when +DMI was above -DMI. When price reversed, the -DMI crossed above the +DMI, and ADX rose again to measure the strength of the downtrend.

 





2.1 Indicator: Trend B is initially determined based on the TEMA (Triple Exponential Moving Average) with the specified period (3x periods) (Period1 is 15bars, Period2 is 15bars (the same) and Period3 is calculated using the formula below but allow for this value to be changed accordingly. Please use the formula that is includedhere.

 

https://www.investopedia.com/terms/t/triple-exponential-moving-average.asp 

 

KEY TAKEAWAYS:

- The angle of TEMA can be used to indicate the short-term price direction

- The TEMA formula is complex and actually subtracts out some of the lag

- When the price is above TEMA it helps confirm a price uptrend

- When the price is below TEMA it helps confirm a price downtrend

- When the price crosses down through TEMA that could indicate the price is pulling back or reversing to the downside.

- When the price moves above TEMA, a price rally could be starting

 



 

2.2 Indicator: Trend C is initially determined based on theHeiken-Ishiwith the specified period ranging from 1 bar to 90 bars. Lets call the default 15 bars for now. If the current HI value is greater than the previous one, the trend is seen as growing (HI_current>HI_previous). Alternatively, if current HI is below the previous one, the trend is considered to be falling (HI_current<HI_previous).

 

https://www.investopedia.com/trading/heikin-ashi-better-candlestick/

Putting It to Use

These charts can be applied to any market. Most charting platforms have Heikin-Ashi charts included as an option. There are five primary signals that identify trends and buying opportunities:

 

- Hollow or green candles with no lower "shadows" indicate a strong uptrend: Let your profits ride!

- Hollow or green candles signify an uptrend: You might want to add to your long position and exit short positions.

- Candles with a small body surrounded by upper and lower shadows indicate a trend change: Risk-loving traders might buy or sell here, while others will wait for confirmation before going long or short.

- Filled or red candles indicate a downtrend: You might want to add to your short position and exit long positions.

- Filled or red candles with no higher shadows identify a strong downtrend: Stay short until there's a change in trend.

- These signals may make locating trends or trading opportunities easier than with traditional candlesticks. The trends are not interrupted by false signals as often and are thus more easily spotted.




 

3. Buy Trading Signals: Trend A + B + C Indicators must cross their respective signal line upwards. We will call the combined Trend Formula A+B+C = Odyssey for the purpose of this EA ok. (Odyssey_current>signal_current && Odyssey_previous<signal_previous) + (Odyssey_current>signal_current && Odyssey_previous<signal_previous).

ALL 3x Trends (A+B+C) must cross together simultaneously for the buy trade signal. (We are using 3x combined buy trading signals)

 

4. Sell Trading Signals: Both Trend A+B+C Indicators cross their respective signal line downwards (Odyssey_current<signal_current && Odyssey_previous>signal_previous) + (Odyssey_current<signal_current && Odyssey_previous<signal_previous). Both Trend A+B+C must cross together simultaneously for the sell trade signal. (We are using 3x combined sell trading signals/indicators)

 

5. Positions are closed at opposite combined signals (Trend A+B+C): Buy positions are closed at Sell signals, and Sell positions are closed at Buy signals

 

6. Positions are opened at the market price, when a new bar emerges. The Expert Advisor is to be tested using Open prices, so there is no need to add functions for disabling operations inside the bar for now.

 

7. Additional filters for opening a position:

 

The absolute value of Odyssey (Combined 3x indicator trends) main line will be used to filter out weak signals: the signal is only confirmed if this value is greater than open_level (in points). Signal confirmation conditions are as follows:

- Confirmation of a buy signal:Abs(Odyssey_current)>open_level

Q. What is Abs?

- Confirmation of a sell signal: Odyssey_current>open_level

 

 

 

7. Additional filters for closing a position:

 

The absolute value of Odyssey's main line will also be used to confirm position closure: the signal is confirmed if this value is greater than close_level (in points). Close signal confirmation conditions are as follows:

Confirmation to close Buy positions — Odyssey_current>close_level

Confirmation to close Sell positions —Abs(Odyssey_current)>close_level

 

8. Close by Take Profit — during position opening, a Take Profit level is set at a dynamic fixed distance from the open price, specified in points. The value is set in the InpTakeProfit input parameter. Point values to include are: 0.01 – 5. Default value set to: 0.1. All scenarios must be available for back-testing inc. Trend A/B/C. I need to establish the best options available based on the Trend Indicators provided.

In an ideal world I would prefer to take a min. $ profit amount per trade (versus point profit, can we do this?) which I would like added as a input parameter value i.e $5-100 USD. The GOAL is to generate a net profit per trade/s that equates to $50+. Collectively i.e. every  X mins or $X per hour.


I want this EA to be a compoundable algorithm that has risk in-place and maximum upside.

Risk is set aside from: 10% to 40% with matching periods shown above. I want to see ALL scenarios so that WE can the best trading options available etc.

 

9. Position management

Dynamic TrailngStop is used to protect profit. Stop Loss is set if profit in points exceeds the value specified in the InpTrailingStop parameter. If the price continues to move in the profit direction, Stop Loss should be trailed at the given distance. Allow trail to vary from 0.001 to 1 point. The stop loss maximises ALL profit whether buy/sell order.

Stop Loss cannot be moved towards the loss direction, i.e. the Stop Loss value cannot be increased. If none of protective orders (Take Profit or Stop Loss) triggers, the position should be closed by an opposite signal. No other position exit methods are available.

 

Trading idea

If ALL 3x trends (above) demonstrate + or – trend (In-Order i.e. Trend A, B, C) then WE buy/sell based on the collective trend that has been identified allowing for multiple data input scenarios OR just default giving us access to ALL backtesting output scenarios. The idealistic Goal is to generate the following returns scored as a percentage within the EA report:

- 95+%, 90-95%, 85-90% & 80-85%

 

I only want to see actionable trades that deliver 80%+ success based on the 3x indicators (Odyssey) and I am open to how often these trades occur across multiple currencies or commodities etc ok.

 

 








































































Yanıtlandı

1
Geliştirici 1
Derecelendirme
(8)
Projeler
10
40%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
2
Geliştirici 2
Derecelendirme
(296)
Projeler
475
40%
Arabuluculuk
105
40% / 24%
Süresi dolmuş
80
17%
Meşgul
Yayınlandı: 2 kod
3
Geliştirici 3
Derecelendirme
(588)
Projeler
1064
50%
Arabuluculuk
39
28% / 41%
Süresi dolmuş
49
5%
Çalışıyor
Yayınlandı: 1 makale, 8 kod
Benzer siparişler
Hello, I am searching a good programmed to convert EA from mql5 into pinescript and DX TRADE made automatisation. Source of code required. Budget is negotiable. Thanks for attention and have a nice day
Profitable EA for sell 200 - 1000 USD
I am having 2 very proven and profitable EA which will give you profit and at the end of week you are always in profit. 1 This bot is safe bot and it generates handsome amount of profit with very less drawdown and high accuracy of 75-85%. 2. This bot is very aggressive and will suggest to go with only when you are having big capital and wanted to take more risk. It can make your account multiple fold
Looking for a Marketing Partner for my EAs! I am a developer looking for an experienced partner to help promote and market my Expert Advisors (MT4/MT5). How it works: > * I handle the coding, updates, and technical support. You handle the marketing, outreach, and bringing in traders. Compensation: We work on a Revenue Share / Profit Split basis. If you have an audience of traders or know how to market forex tools
Money wizard 30 - 200 USD
I Malwande Linda require a trading bot that would for me because I don't usually get ft time to seat and analyze the chat. I want a robot that would analyze the market and take trades for me. I want a robot that will make money weekly because I'm a student so Fridays are not busy days for me I want a robot that I can trust. I also would appreciate some indicators on my live account so that even when I'm not using a
EA based on CSV 50+ USD
Hello Developers, I need some consultation to help narrow down an idea and develop an EA. I have a csv file that stores data like this: Date portfolio portfolio_value 18/11/2025 ['EURNZD', 'EURCAD', 'EURJPY', 'EURCHF', 'AUDNZD', 'AUDCAD', 'AUDJPY', 'AUDCHF', 'USDNZD', 'USDCAD', 'USDJPY', 'USDCHF', 'GBPNZD', 'GBPCAD', 'GBPJPY', 'GBPCHF'] 1.7970698812202368 19/11/2025 ['CHFAUD', 'CHFNZD', 'CHFGBP', 'CHFJPY', 'EURAUD'
* For Buy - Time = greater than _______ and Less than ______ Remove SL , Time = greater than _______ Replace SL At _______ and also Spread= Less than ( points) ________ ( Same condition for sell side also ) at opposite direction . * For Buy - Time = greater than ______ and price is Below _______ and spread is lower than ( points) _____ cut loss . ( Same condition for sell side also) At opposite direction
Trading can take us to the top but trading robots would take us to the sky with trades, money and more. Trading is about learning how to make money and become successful without pressure. I need an excellent trading robot with excellent skills and knowledge
The strategy is already fully defined with exact logic, scoring system, entry rules, risk management, and execution protection (spread, slippage, deviation). The strategy is already fully defined with exact logic, scoring system, entry rules, risk management, and execution protection (spread, slippage, deviation). Please follow the specification strictly without any discretionary interpretation
Job Description: I am looking for a skilled MQL5 developer to create a custom Expert Advisor (EA). The trading strategy relies on standard indicators, but requires precise execution logic and strict risk management rules. Key Technical Requirements & Skills Needed: Multi-Timeframe (MTF): Basic ability to read one indicator's data from a higher timeframe (M15) while the EA runs on a lower timeframe (M5). Instant
EA MACENIC PRO V12L 30 - 50 USD
Ready made robot for executing trades because don't have PC or laptop does it come as license key that allows straight extension to be a ready made of change your mind and the match is still hustling and I recommend exness broker on any. Strategy of a mobile robot arrena that execute trades it self and 24/7 operational system that enhances power of electronic art technology with automatic EA optimization

Proje bilgisi

Bütçe
30 - 100 USD
Son teslim tarihi
to 3 gün