Trade Manager EA for MT5 , Renko and Futures Needed

MQL5 Experts Futures

Tâche terminée

Temps d'exécution 12 jours
Commentaires du client
He is an excellent developer and helpful. Can not recommend enough!

Spécifications

(Currently I have a version in MT4, which could not be converted hence this new job)

This should be:
  1. Written for US Futures (S&P etc)
  2. Should be developed and tested for this Renko bar generator generated chart: https://www.mql5.com/en/market/product/16347
  3. Please apply only if you have developed EAs for Renko charts on MT5, in the past. Please apply only if you are one of best MQL5 coders outthere, as code quality will be assessed by an experienced coder
Specifications:
  1. 9 Buttons: (vertically placed and user definable location)
    1. Limit Sell - Distance to PO from current price, definable in Ticks(Futures)
    2. Buy Stop - Distance to PO from current price, definable in Ticks(Futures)
    3. Buy Market   
    4. Close Pending (this should close ALL POs)
    5. Close Opened (this should close ALL opened orders)
    6. Sell Market 
    7. Sell Stop - Distance to PO from current price, definable in Ticks(Futures)
    8. Limit Buy - Distance to PO from current price, definable in Ticks(Futures)
    9. EA Auto Trade mode (auto trading code will be hooked to this button, from a later Job):
      1. When pressed, there should be a way to see clearly that the Auto trading is ON...with a different colour and texts with LARGER font size in the Table - see point 7 below...
      2. Please provide(for testing purposes) a very rudimentary simple sample function for a signal trigger, that creates orders that use defined-from-below mentioned settings(stop and limit orders) SL,TPS, Trailing and BE...
        1. I think the Author of the Renko chart generator provides some sample code, that can be utilized here.
  2. Eg of the appearance of the buttons:
  3. This Trade Manager should display it's buttons on each chart(Renko chart) . When several charts opened, with a Trade Manager instance for each chart, there should not be any issue with Magic numbers etc...
  4. TWO sets of settings for Limit and Stop orders ( each ).
    1. Settings:
      1. Risk
        1. Contracts | Lots (or % ) risk per trade
        2. SL Ticks
        3. TP Ticks
      2. Trailing:
        1. Start At Ticks
        2. Trail Ticks
        3. Trail Step Ticks
      3. BE (can use negative value here...eg -1Tick)
      4. Partial closes:
        1. Partial close at ticks(eg 20,30,40 etc)
        2. Partial close percentage of contracts (% of lots) (eg 50,75,25 etc)
      5. Order Comments
  5. IMPORTANT: The TP is achieved using ANOTHER Limit order. So once a PO is executed, this profit-taking order should be created, at the above user defined TP level. This second TP taking order can have the same SL as defined above, but without a TP level. So, for the above mentioned initial POs (Stop and Limit Orders), TP levels should not be created, instead another Limit order is created(but ONLY after the PO was triggered).
  6. Spread:
    1. Setting: MaximumSpread 
    2. If the MaximumSpread is exceeded in the current tick:
      1. ALL trades in the profits should be closed
      2. ALL POs should be deleted
      3. No new POs can be created (with a warning?)
  7. A table similar to following (location user definable), on the chart
    1.  or  or This is needed to visually verify that the user chosen values in the Trade Manager is correct..
    2. This example is for Forex, but for this version we need Futures terminology...mainly "Ticks"
  8. Quality of code:
    1. Please use a standard EA template...clean non-monolithic code base needed...at least use the MQL book template...
      1. Please use "Include Files" for most of the re-usable functions eg. Lot calculation, Buttons, Info Table, Error functions etc
    2. Standard error handling and logging
    3. Please use well tested libraries every where possible
    4. Please add lot of comments throughout the code, to enable future changes...well structured code would be appreciated.






































Répondu

1
Développeur 1
Évaluation
(94)
Projets
148
59%
Arbitrage
16
38% / 13%
En retard
25
17%
Gratuit
2
Développeur 2
Évaluation
(1)
Projets
1
0%
Arbitrage
1
0% / 100%
En retard
0
Gratuit
Commandes similaires
Moving average cross strategy that has no stop but will just reverse direction each time the crossover happens. But will have a 3 step profit taking method at certain percentage points. It will be used for futures options on the buy side. 3 days out
hi. I hv a strategy on tradingview need to convert to mt4/mt5 expert advisor for algo trading. would like to add some tradingview strategy setting to the mt4/mt5 EA(not included in my tradingview source code): recalculate after order is filled, order size: xx% of equity
This Bot will work on strategy which works using moving averages,RSI and candle stick pattern and what I want is that trade will execute when setup will form on both 30 min and 1 hr time frame trade will execute strategy needs all 4 parameters to be on right calculations to execute trade and I want some options where I can select risk to reward ratio to back test this strategy and some other parameters
i want a forex robot that will read chats and enter trades on its oown. i want it to be able to use all trading strategies and partterns. good risky manegmemt, i want it to forcuse on Gold and and all major forex pairs. i want it to use stop loses and take profits as the market might change direction anytime. i want to work on both mt5 and mt4
I want to make something automatic which EMA will automatically trade in my account. For this I want to make a simple robot I want to get this made automatically on a simple EMA
Dear All, I need to design and implement an EA with the involvement of a possible AI. I would like the entries to be realized with all MACD, RSI, Stoch parameters but also Ai. I mainly want the system to immediately close the transaction itself at the time of trend reversal even before reaching the TP position. It should work for intervals M15, H1, H4 and maybe long-term on D1 Platform for MT5 and exclusive only
Saya memerlukan Expert Advisor berdasarkan sinyal AOX. Itu harus memiliki pemeriksaan dan penanganan kesalahan operasi perdagangan. Kriteria utama pembukaan dan posisi penutupan: ■ arah rata-rata bergerak ■ harga lebih tinggi dari bar sebelumnya. Lot perdagangan adalah parameter masukan
Good Day I would like to create a trading bot that is able to link to my news provider. The bot will execute trades based on the actual news release data as soon as the data is released. I will need to input parameters that would automatically trigger once the actual data is released (Need to know what format you will require or other recommendations) Execution speed will be a crucial factor in this regard. Adding to
I believe in Robotics as a major artificial intellect to function of growth of business.Therefore if you script there is a likelihood of bringing economies of scale.The retrospective of the dynamics of indulgence of work can be economics of scale
// @version= 5 strategy ( "EMA Crossover Strategy with 1:1.6 Risk-Reward" , overlay = true ) // Define the EMAs shortEma = ta.ema ( close , 10 ) longEma = ta.ema ( close , 20 ) // Plot the EMAs on the chart plot ( shortEma , color = color.blue , title = "10 EMA" ) plot ( longEma , color = color.red , title = "20 EMA" ) // Calculate the crossover conditions longCondition = ta.crossover ( shortEma , longEma )

Informations sur le projet

Budget
200+ USD
Pour le développeur
180 USD
Délais
de 10 à 15 jour(s)