Add a function to a EA created with Molanis Strategy Builder

MQL4 Experts Integração

Trabalho concluído

Tempo de execução 2 dias
Comentário do cliente
Very good job. Excellent quality / price :) Very good communication. Thank you.

Termos de Referência

Hello, I would like to add in an expert advisor created using molanis strategy builder , a regulatory recovery orders.

It will give some things like this for example :


Order Recover ALL X Pips : 5

( This function should be used to cover orders will need to buy a new order with a batch size identical to the basic order in example we scored 5 if we bought eur / usd . . to 1.3050 , then a new order will be open to 1.3045 . )


Order Recover Factor: 1.4

( we have seen that the recovery will do all X pips , this function Order Recover Factor will be used to determine the distance between each recovery order in Example 1.4 we have , so if covering the first order will be 5 pips in our example and therefore the third order is 5 pips * recover factor 1.4 = 7 pips, the fourth order is 7 pips (third order) * recover factor 1.4 = 9,8  pips )


Close Partial Orders in Sequence: true or false

( this function should if it is TRUE close all open positions limit the number authorized by the function below order)


Number of Orders To Close: 7

(this feature can say how many orders can be opened up if the Close Partial Orders in Sequence function is TRUE.) 


Decrease Profit  When X Orders Reached: 3

(This function sets the number of open order before reducing profit) 


Profit Reduced: 2

(Number of PIPS function Decrease When Profit X Orders Reached) 


Global Take Profit: 10

(Global TP if several orders are open and function Decrease Profit Orders Reached When X has not yet taken over)


Equity Security%: 15.0

(can limit the loss on the account to a certain percentage of equity)


So as previously announced, the robot which you will have to add these options reocuvrement order has been created with MOlanis strategy builder. This will mean that the Order Recover should be more or less independent, for example, I have asked the help of Molanis the robot executes only one command at a time, so the Order Recover in this case it will dissociated will Molanis.

 

All orders must be hidden BROKER 

 

 

EXAMPLE :

 

My EA places a buy order on EUR / USD 1.3050 (we call this order "INIT") TP is already set to 7. 


If the course redescent to 1.3045 or - 5 pips, figure marked in "Order Recover ALL X Pips" then EA will cover its position by purchasing a new order with the same batch size that the order "INIT". 


if the price continues to fall, then EA will continue to cover its positions, taking into account the "Order Recover Factor" function in our example 1.4, then the next position will be open to 5 pips * 1.4 = 7 pips for the next position, ca give 7 pips * 1.4 = 9.8 pips for the next 9.8 * 1.4 = 13.72 pips pips, etc ... 


If the "Close Partial Orders in Sequence" function is "TRUE", then all positions will be closed under this number in the "Number of Orders To Close" function. In our example, if one reaches 7 position, then closes all positions. 

 

If the order number on the "Decrease When Profit X Orders Reached" function reaches, then the overall profit will be reduced this number in the "Profit Reduced" function in our example if reaches 3 orders, then profit overall is 2 pips. 

 

The "Global Take Profit" function is used to define a total profit when opening several positions covering. In our example, if one open position we take an overall profit of 10 pips, 2 open positions we also take an overall profit of 10 pips, by cons if 3 open positions, then the "Decrease When X function Profit Orders Reached "take over and take the overall profit will be 2 pips like asking in the" Reduced Proft. "


The Equity Security function we serve to protect the count X​​% of the equity account. 

Respondido

1
Desenvolvedor 1
Classificação
(49)
Projetos
134
27%
Arbitragem
62
13% / 53%
Expirado
58
43%
Livre
Publicou: 274 artigos, 1 código
2
Desenvolvedor 2
Classificação
(41)
Projetos
160
45%
Arbitragem
16
13% / 50%
Expirado
48
30%
Livre
3
Desenvolvedor 3
Classificação
(59)
Projetos
182
55%
Arbitragem
31
45% / 16%
Expirado
103
57%
Livre
4
Desenvolvedor 4
Classificação
(180)
Projetos
301
30%
Arbitragem
54
24% / 56%
Expirado
98
33%
Livre
Pedidos semelhantes
I am looking for an experienced MQL5 developer to convert a complex TradingView Pine Script (will provide the script from tradingview) into a fully automated MT5 Expert Advisor -bot. The TradingView script includes: Market Structure (BOS, CHoCH, Swing BOS) Strong / Weak High & Low Equilibrium (Premium / Discount zones) Volumetric Order Blocks Fair Value Gaps (FVG / VI / OG) Accumulation & Distribution zones Equal
Hello, My budget is $30, for all job I have four expert advisors on MetaTrader 5. I want to add a trailing stop loss to all four experts in the same way, based on the stop loss percentage. For example, If I set the trailing stop loss percentage in the input menuto 100%, and the stop loss to 500 points, this means that if the price moves 10 points in profit, then the stop loss will also move 10 points, and so on. If I
Ai 1. Trend identify up or down through lMA 50 at daily time frame ( if market stay above LMA 50 is called up trend & stay down lMA is called Down trend. 2. Entry :for uptrend buy & down trend sell though cross over lMA 50by21 & 21 by 14or7 ( customisable )1m or 5m flexible time 3. Daily target Floating loss (DD) if over no entry as % - close all 4. TP, break even after 2 pips (customisable)& SL option
Scalper in life 100+ USD
//+------------------------------------------------------------------+ //| XAUUSD FULL AUTO SAFE BOT MT5 | //| Converted from Pine Script v5 | //+------------------------------------------------------------------+ #property copyright "Converted by ChatGPT" #property version "1.00" #property strict #include <Trade/Trade.mqh> CTrade trade; // === INPUT === input double LotPercent =
Zoroe 30+ USD
//+------------------------------------------------------------------+ //| XAUUSD H1 Auto Trading Bot | //| Works on MT5 Desktop / VPS | //+------------------------------------------------------------------+ #property strict input double LotSize = 0.1; input int StopLossPoints = 200; input int TakeProfitPoints = 400; input int MagicNumber = 777; int emaHandle;
Trading robots are programs, which operate according to underlying algorithms. An algorithm is a set of actions that need to be performed in response to certain events. For example, the most common task in algo trading is the identification of the "New bar" event. When the event occurs, the robot checks the emergence of trading signals and acts accordingly. Before you decide to program or order a trading robot, you
// Add this to your EA after ExportState() function void SendToBase44(const string state, const string dir, double entry, double sl, double tp) { string url = " https://preview-sandbox--ee0a32a725b788974de435e8cef40b7a.base44.app/api/functions/receiveEAState "; string headers = "Content-Type: application/json\r\n"; string json = "{" "\"symbol\":\""+_Symbol+"\","
I need a prop firm ready EA that can make around 3% monthly. I am not expecting miracles, If you want to apply please send me backtesting stats from at least few years. 1 year is not enough, I am ready to sign in an agreement today
Develop a Gold scalper based on the arrow indicator in MT5. Buy at up arrow and close with the profit / Trailing Stop profit. If not profit, then close at the opposite sell arrow with profit/loss. Sell at down arrow and close with the TP / Trailing Stop profit. If not profit, then close at the opposite buy arrow with profit/loss. EA Properties: Lot Size: 0.1 Stop Loss: 0 / 50 Take Profit: 100 Trailing Start: Trailing
Hi, looking for an EA for passing prop accounts, profit target is 2,5% weekly with low drawdown, strict risk management, session filters, spread control, automatic stop, daily loss limits, VPS compatibility, reporting, and consistent performance across EURUSD in market conditions

Informações sobre o projeto

Orçamento
10 - 50 USD
Prazo
de 1 para 5 dias