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)
プロジェクト
425
38%
仲裁
86
44% / 19%
期限切れ
71
17%
取り込み中
3
開発者 3
評価
(586)
プロジェクト
1048
49%
仲裁
39
28% / 41%
期限切れ
49
5%
仕事中
類似した注文
Zzz 30+ USD
// กำหนดค่าตัวแปรพื้นฐาน input double lotSize = 0.1; // ขนาดล็อตที่ต้องการ input int takeProfit = 50; // ระยะ Take Profit (จุด) input int stopLoss = 50; // ระยะ Stop Loss (จุด) input int magicNumber = 123456; // หมายเลข Magic Number input int smaPeriod = 14; // ช่วงเวลา Simple Moving Average (SMA) // เวลาที่ออเดอร์ล่าสุดถูกเปิด datetime lastOrderTime = 0; // ฟังก์ชั่นหลักของ EA void OnTick() { //
Mobile robot 50 - 100 USD
I want a profitable scalping EA robot for mt5 and mobile phones (licence key should be provided).the video link attached below indicates how the EA robot should operate it.it analyses the market before taking trades and it trades candle to candle .also coding samples are provided on the video .it should be applicable to all timeframes.it should trade indices(Nas100,US30,S&p500,GER30,)
I use the translator I hope to make myself understood. I'm looking for a cyclical indicator. mt5. I attach videos to understand how it works. to be inserted at any point of the graph. It is possible to change the color and thickness of the line
This EA must have the following functions together: BE: place BE when the price reach a certain gain in PIPS and you can choose the offset too, so, for example it activates after 10 pips with 1 pip of offset so you can have profit with BE too Auto SL and TP Can manage the trades made by phone when MT5 is open in the PC or VPS Trailing stop (step by step): I can decide at what number of pips the trailing stop get
This is a strategy based on crossing two trend indicators on the second timeframe (1s, for example). We work not only with the market but with the limit orders as well (robot must "read" an order book). Read the whole instruction please for more details. Speak Russian, English
Martingale EA for MT5 30 - 100 USD
Criteria: Only one trade at a time. Cannot open another trade if one is running Trade on EURUSD only, once job is completed I will be happy to schedule more for other pairs You choose entry strategy and criteria win rate must be above 50% in long term backtest of EURUSD Every trade has got TP and SL Trades to last about a day, few trades a week, at least 10 pips gain per trade, so that it can be launched on normal
I have a indicator, mql file. The signals are seen below on a EURNZD H1 chart. Very important to get accurate entries. The signal to trade is the first tic after the the indicator signal paints. I've tried to demonstrate that below. Other than that the EA will have a lot size escalation, an on-screen pip counter, a button to stop taking new trades, SL/TP, and magic number. I would like the indicator to be within the
I would like to create an EA based on the Shved Supply and Demand indicator. you can find the Shved Supply and Demand v1.7 indicator in the following link https://www.mql5.com/en/code/29395 NB: Checks the trading robot must pass before publication in the Market ( https://www.mql5.com/en/articles/2555 ) MQ5 file to be provided
Im looking for an coder to code an EA: Trade management 1. opening trades according to the indicator 2. trades settings to choose from like: open all trades according to the signal open only trade 1,2,3 or 4 % per trade ( example 50/30/20 of the lot settings, with 4 trades it would be for example 50/30/10/10) 3. SL/Trailing settings: Move SL to entry after hitting TP1/TP2 or TP3 moving SL by % keep the original SL
Hi I'm looking to have 2 of my pinescript strategies converted to MQL5 and was wondering if you could first give me a quote for the more simple strategy and then for both the simple and complex strategy together. The simple strategy is a MACD crossover type thing that uses a special EMA script that filters out some ranging price action and also fractal candles for the stop loss. The second strategy is market

プロジェクト情報

予算
30 - 100 USD
開発者用
27 - 90 USD
締め切り
最高 3 日