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

MQL5 专家

指定

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.

 

 








































































反馈

1
开发者 1
等级
(8)
项目
10
40%
仲裁
0
逾期
0
空闲
2
开发者 2
等级
(261)
项目
427
38%
仲裁
86
44% / 19%
逾期
71
17%
已载入
3
开发者 3
等级
(586)
项目
1049
49%
仲裁
39
28% / 41%
逾期
49
5%
空闲
相似订单
Job Title: Experienced MT5 Developer Needed to Update MT5 EA PLEASE READ THE ENTIRE JOB DESCRIPTION BEFORE APPLYING Qualifications Required: * Minimum of 5 years of experience in coding Expert Advisors * Experience with at least 150 completed EA projects (must be visible on your profile) * Must have knowledge of both forex trading and coding, as these are different skills * Fluent in English (no translators) * Must
I have a fully coded TradingView indicator that I need updated to function as a strategy. This should include the ability to backtest the strategy using the TradingView strategy tester. The main task is to convert the existing indicator into a strategy format while maintaining its core functionality, but adapting it for automated trading logic and performance analysis. Please ensure that the strategy uses proper
I'm looking for professional developer for long term. Who have skill in Converting trading to MT4/5. Also have good knowledge of Algo. And response and deliver tools on time and at the top need good communication. That's all we need
budget of 500 usd I want to create a rsi bot for eur usd money is the least important thing I want it to look good if you are going to apply do it but send me at least 3 photos or screenshots of this type of work with rsi bot my goal level 50 sell level 20 buy that's all it must have its basic robot functions
I have simple EA i want to modify its parameters. If you are good at modifying EAs contact me for more details. I will issue the source code then you return after finishing without changing the buy or sell conditions
the code wasn't mine, i have got it somewhere on the web, but i like the performance of the EA, so i want to use it on mt5 platform. the given code based on price movements with ladder entry concept
* Advanced level dev only, NDA required * Hi, I have a multi timeframe, multiindicator expert that requires additional features added to it. First started development 5 years ago. Upgrading with new features. To be added Entry - Add Stochastic and CCI options for trade entry to be added to existing signal options. Add config options to existing menu Bulk Exit - Master switch for close all trades based on basket
I am developing a master EA that integrates several sub-EAs. The project is complex, and the documentation is thoroughly structured, spanning 50 pages with detailed step-by-step procedures. 1st sub-EA: This EA opens trades without using indicators. Instead, it opens a new trade based on the color or status of the last candle. For instance, if the last candle was green, a new buy trade is opened. 2nd sub-EA: This EA
Good Day I would like to order a trading robot. Pairs: XAUUSD (GOLD) EUR/USD USD/JPY The robot should be trading daily with TP/SL build in, would like to have trailing and stop loss, should execute up to 5 trades (preffarable setting choice) up to 10 trades Los sizes to be choise setting, must also trade major US vews events Like:US- PPI, CPI, NFP, Sales m/m and so on Must also show/display alert when opening
Hello Guys, I need a trading bot for the MT5 to place order based on my trading strategy which is based on - >> entry based on EMA with rejection from specific levels like support and resistance area - levels and time frame i will apply into the robot manually on daily basis. also need - trailing stoploss , shift to breakeven after gaining some points. need a highly expert developer

项目信息

预算
30 - 100 USD
开发人员
27 - 90 USD
截止日期
 3 天