Termos de Referência
I need a MT5 GUI expert to help with my project.
I should be able to enter %risk or amount risk as input on the GUI and have lines displayed on the screen to place trades by moving lines for entry, TP, SL and clicking. The lines should have handles to drag and move so that I don't have to precisely click on a small line. There should be a third line in additional serving as a "Marker" for multiple orders. 'N' orders should be placed between the entry and the "Marker" with risk equally divided across N orders, where N is given as input. The entry line should have a "Place" button to click which places the trade. (See figure)
I should be able to enter %risk or amount risk as input on the GUI and have lines displayed on the screen to place trades by moving lines for entry, TP, SL and clicking. The lines should have handles to drag and move so that I don't have to precisely click on a small line. There should be a third line in additional serving as a "Marker" for multiple orders. 'N' orders should be placed between the entry and the "Marker" with risk equally divided across N orders, where N is given as input. The entry line should have a "Place" button to click which places the trade. (See figure)
Candles should be visible on top of the shaded areas for placing trade with SL and TP
Once a trade is placed, the EA should remember the SL and TP levels and for any future trades that are placed, the same SL and TP levels should be the default levels for the future.
If there is only one order (N=1), it will be placed at the location of "Place" line and "Marker" line is not displayed.
I need a Close% button to close any given percentage of the CURRENT PROFIT/LOSS. The percentage is given as input. (See figure)
The close% button should work in the following manner:
Say the percentage specified is x. The EA should sort all the orders according the drawdown/profit in PIPS (not USD). Assume the entries 1,2,3,4... are in sorted order now i.e 1 has more drawdown in pips than 2, 2 more drawdown in pips than 3 etc.. . First K orders of 1,2,3.. will be FULLY closed and (K+1)th order will be partially closed causing x% of current profit/loss to be secured.
percprof= x*OpenProfit/100;
K=0
for i=1:totalorders
{
partprof = sum(profit_j); %%%j goes from 1 to i; profit_j is the profit of the entry_j
if partprof>percprof
{
break;
}
K=K+1;
}
diff = percprof-partprof
x2= diff*100/profit_(K+1)
Now orders 1 to K and x2% of the order K+1 need to be closed. Ignore (K+1) if x2 is less than 1%. The closing need to be done in the following order:
Sort (orders 1 to K, x2%(K+1)size) according to lot size. Then close order with largest size first, smallest last.
I need a "Modify TP" functionality with a percentage input. Say x3% is specified. Then I should be able to place TP for x3% of the orders (% in profit) at the "Modify TP" line. Say the TP line is at location L
ProfitatL = sum((entry_i_location - L)*size_i*price_per_point);% i goes across all entries.
percprof= x*ProfitatL/100;
K=0
for i=1:totalorders %orders are sorted according to profit in pips.. 1 has least profit in pips, 2 has more pips than 1, 3 has more pips than 3
{
partprof = sum((entry_j - location)*size_j*price_per_point); %%%j goes from 1 to i
K=K+1;
if partprof>percprof
{
K=K-1
break;
}
}
%place TP at location L for orders 1 to K (See figure for illustration)
I need a similar modify SL option, similar to above, but SL is modified for all orders with out any percentage selection.
All the functionalities shown in the figure should be implemented including the numbers appearing on the handles of lines.
Preferably should be able to show me some example of previous GUI projects the developer has worked in.
I would need the complete source code.
Respondido
1
Classificação
Projetos
416
30%
Arbitragem
74
19%
/
72%
Expirado
52
13%
Trabalhando
2
Classificação
Projetos
1
100%
Arbitragem
4
0%
/
75%
Expirado
0
Trabalhando
3
Classificação
Projetos
49
22%
Arbitragem
14
29%
/
21%
Expirado
13
27%
Livre
4
Classificação
Projetos
5
0%
Arbitragem
3
0%
/
100%
Expirado
3
60%
Livre
Pedidos semelhantes
Attach up to 32 files maximum 16 Mb per upload (.zip .txt .log .mqh .ex5 .mq5 .mq4 .mqproj .ex4 .mt5 .set .tpl .cl .py .sqlite .csv .ini .ipynb .onnx .gif .png .jpg .jpeg .mp4 .webm)
Forex
30 - 200 USD
Develop an Expert Advisor trading trend reversals. Reversal signals will be generated based on Price Action patterns. Trend will be determined based on ADX, Alligator and MACD, while the indicator selection should be available in the EA's input parameters
Convert Pinescript into MQL5 EA trading bot
30 - 200 USD
I need a scalping-specific logic MT5 trading bot with a Donchian-channel–based dynamic stop-loss and take-profit system, applies RSI volatility filtering to avoid low-quality setups, and allows asset-specific adjustable parameters for fine-tuning performance Trading details: - Symbol: Any Forex EUR/USD - Platform: MT5 - Strategy type: Scalping (fast trades) - Timeframes: 5sec/ M1 / M5 - Fixed Stop Loss and Take
I am looking for an experienced MQL4/MQL5 developer to build an Expert Advisor with the following specific behavior: • Place buy and sell orders with entry price equal to the stop loss Stop loss should trigger immediately when the trade goes into a small loss Trailing stop should activate immediately once the trade is in profit Designed for micro-scalping (very small price movements) Proper handling of spread
Se necesita un bot basado buy limit y sell stop
30 - 50 USD
deseo un bot que genere una orden de compra y una orden venta simultanea, con una distancia no muy lejos una de la otra para aplicarla en el par oro/dolar. el bot requiere que al momento que se active una de las dos ordenes, la de compra o la de venta y se cierre la operacion en positivo, vuelva a generar una nueva orden siguiendo la tendencia del mercado
Self sufficient Trading robot
30+ USD
1. The idea of the trading system is as follows : market entries are performed when MACD's main and signal lines intersect in the current trend direction . 2. Trend is determined based on the Exponential Moving Average with the specified period (InpMATrendPeriod). If the current EMA value is greater than the previous one, the trend is seen as growing (ema_current > ema_previous). Alternatively, if current EMA is
I am looking for a highly experienced developer with proven AI / Machine Learning expertise applied to financial markets to work with me on building an AI-driven trading EA for MT5 . This is NOT a traditional indicator-based EA and NOT a signal provider role. The objective is to build an AI/ML system that generates trade signals , which will then be executed automatically by an MT5 Expert Advisor . I am specifically
Zaki boot
30+ USD
//+------------------------------------------------------------------+ //| XAUUSD Safe Scalp - TP $2 / SL 60 points | //+------------------------------------------------------------------+ #include <Trade\Trade.mqh> CTrade trade; // ===== Inputs ===== input double LotSize = 0.01; input int StopLoss = 60; // points input double DollarTP = 2.0; // ربح بالدولار input int MAPeriod = 50; input
1. **Indicator Integration**: The EA should be developed utilizing the Bheurekso pattern indicator. 2. **Sell Signals**: The EA must execute a sell order upon the appearance of any of the following bearish signals or a down arrow that appears on the chart: - Bearish Engulfing - Bear Cross - Bearish Dark Cloud - Bearish Shooting Star - Bearish Harami - Bearish Evening Star - Bearish Hanging Man 3. **Buy
Looking for an experienced MQL5 developer to analyze and reverse-engineer the trading logic of an existing scalping Zone Recovery EA using Moving Averages and Bollinger Bands, and then rebuild it
Informações sobre o projeto
Orçamento
80 - 100 USD
Prazo
de 5 para 10 dias