指定
Additional Note: The indicator is tied to my MQL5 account, I can't share the file. To conduct testing you can put a lock on your file or whatever method is convenient for you.
UPDATED:
Included spread filter
Included trade expiry after x days (if too difficult to implement or won't work with backtesting/optimization, can ignore this)
Hi :) I want to have a simple EA developed using signals from the PZ day trading MT5 indicator.
The EA should not read from the chart objects, we will be calculating SL and TPs ourself so the strategy can be optimised. This spec looks long but it's not a complex strategy.
Indicator path="MQL5\Indicators\Market\PZ Day Trading MT5.ex5"
The signal buffers are available below:
int start()
{
// Read signal from the signal buffer
double signal = iCustom(Symbol(), Period(), "PZ_DayTrading", 4, 1);
// Place orders or do nothing
if(signal == OP_BUY) { /* Your code for buy signal */ }
if(signal == OP_SELL) { /* Your code for sell signal */ }
if(signal == EMPTY_VALUE) { /* Your code for no signal */ }
}
The indicator's settings and values are below:
St_Ex = "=====INDICATOR SETTINGS====="
Range = 12
Filter = 2.5
Max History Bars = 5000
DS_Settings = "=====DASHBOARD AND STATS====="
Dashboard = false
Statistics = false
Bullish Color = SkyBlue
Bearish Color = LightPink
Positive Label = Blue
Negative Label = Red
Se_Ex3 = "=====PRICE BOXES====="
Display boxes = true
Bullish boxes = DeepSkyBlue
Bearish boxes = Tomato
Fill boxes = false
Boxes width = 5
Se_Ex4 = "=====ANALYSIS OPTIONS====="
Trade Analysis = false
MFE Color = Purple
MFE Label = Blue
MAE Color = Red
MAE Label = Red
Font Size = 7
Alerts_ex = "=====ALERTS====="
Custom name for alerts = "My Alert"
Display alerts = false
Send email alerts = false
Send push alerts = false
Sound alerts = false
Sound file = alert.wav
==============================================================
The EA should have the additional setings at the top of the settings list:
Lot size (default 0.01)
Countback Bars (default 15)
Include signal bar (default false)
Price calculation mode (high/low price or close price)
Trade mode 1-9 dropdown (enum). The number is how many positions will be opened. Each additional position will have a higher take profit fibonacci level, from 1.618, 2, 2.272, 2.618, 3, 3.414, 3.618, 4, 4.236
SL mode 1-4 dropdown (enum), these equate to -0.236, -0.45, -0.618 and -0.786 fibonacci levels respectively
TPs broken dropdown (1-9) how many TPs have been invalidated by signal bar spike to cancel signal
Trailing stop after every x pips (default 0 = off)
Trailing stop amount (default 0 pips)
Spread filter (default 0) if spread is larger than or equal to this number at signal, don't open trade
Trade expiry after days (default 0) close positions that have been open for this many days (or will be if weekends are included) example: trade expiry days = 5 then trades opened on tuesday will close on friday because 5 days is including weekend. Ideally it should be closed as late as possible before the day turns over like 10-20 mins before (if too difficult to implement or won't work with backtesting/optimization, can ignore this)
=============================================================
The fibonacci levels are calculated by counting back the number of bars according to the countback bars setting (including or not including signal bar according to setting), and finding the highest and lowest price according to the calculation mode setting.
An example of a trade execution is on mode 5, a signal would open 5 orders in the signal direction at the given lot size, the SL would be set to the SL fib setting, trade 1 would have a tp of 1.618, trade 2 tp of 2, trade 3 tp of 2.272 etc etc.
There can be a situation where the signal bar can spike, and that would invalidate some of the calculated TP points before the trade is even opened. The TP levels broken setting will be used to check, before a trade is executed, if the signal bar already invalidates that many or more TP points. If it is more than or equal to the setting number, don't open the trade, as it would be determined to be too risky.
Finally, trailing stop is simple. If enabled, after every set amount of pips of profit, the trailing stop will move up by the set amount.
応答済み
1
評価
プロジェクト
410
30%
仲裁
66
20%
/
70%
期限切れ
52
13%
仕事中
2
評価
プロジェクト
12
42%
仲裁
1
0%
/
100%
期限切れ
2
17%
暇
3
評価
プロジェクト
74
20%
仲裁
12
17%
/
25%
期限切れ
6
8%
仕事中
4
評価
プロジェクト
122
30%
仲裁
5
40%
/
20%
期限切れ
5
4%
仕事中
5
評価
プロジェクト
233
73%
仲裁
6
100%
/
0%
期限切れ
1
0%
暇
6
評価
プロジェクト
1
0%
仲裁
0
期限切れ
0
暇
7
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
8
評価
プロジェクト
235
34%
仲裁
8
63%
/
38%
期限切れ
6
3%
仕事中
パブリッシュした人: 1 article, 8 codes
9
評価
プロジェクト
5
20%
仲裁
0
期限切れ
1
20%
暇
パブリッシュした人: 3 codes
10
評価
プロジェクト
6
33%
仲裁
4
25%
/
25%
期限切れ
1
17%
暇
11
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
12
評価
プロジェクト
915
76%
仲裁
25
16%
/
68%
期限切れ
99
11%
取り込み中
パブリッシュした人: 1 article, 6 codes
13
評価
プロジェクト
244
31%
仲裁
0
期限切れ
3
1%
暇
パブリッシュした人: 2 codes
14
評価
プロジェクト
4
25%
仲裁
1
0%
/
100%
期限切れ
0
暇
15
評価
プロジェクト
15
40%
仲裁
1
100%
/
0%
期限切れ
1
7%
暇
16
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
17
評価
プロジェクト
29
41%
仲裁
2
50%
/
50%
期限切れ
2
7%
暇
18
評価
プロジェクト
196
67%
仲裁
7
29%
/
43%
期限切れ
21
11%
仕事中
19
評価
プロジェクト
551
50%
仲裁
56
41%
/
36%
期限切れ
227
41%
仕事中
類似した注文
I'm Looking for a trading bot for MooMoo first and think or swim second. I will be using a AVWAP strategy . I will trade SPY and about 5 stocks NOTE: Do not bid unless you can handle this project with 100% accuracy and precision
Yaqubjnadr
40+ USD
In currency trading, every tick tells a story of risk and reward. Strategies unfold across charts, balancing patience with precision. Markets breathe unpredictability, yet discipline builds confidence. Success grows where knowledge meets courage, turning volatile waves into pathways of consistent financial opportunity."
MAKE THE MODIFICATION IN THE EXPERTS' FILES: EA_MT4, EA_MT5 Add more of this in (Function to print info) Trade Mode: Demo Name: Artem Server: MetaQuotes-Demo Currency: USD Company: MetaQuotes Software Corp. Limit Orders: 0 Lot Size Limits: (0.00)-(000.0) StopOut Mode: Percent Trade Allowed: Yes Trade Expert: Yes Margin Mode: Retail hedging Hedge Allowed: Yes Commission: 0.00 USD Swap: 0.00 USD Taxes: 0.00 USD Margin
Ronaldo Souza
30+ USD
Um EA scaper que opere EurUsd Gold que peguei operações curtas, porém tenha um gerenciamento de risco. Que possa ser gerenciado em dólar e não pips. Assim fica mais fácil modificar os valores rápido
Lavie
100+ USD
i order the robot for better analysis of forex trading an d for med 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 below the
Creating General detailed view
100+ USD
Hi developer This project should be delivered in MQL 4 and in MQL 5 and Trading view The analysis is a detailed view of what i want The project is delayed for execution till 05/10/2025
MT5 EA bug fixes
30+ USD
It is a MT5 Breakout EA. Developed by another developer but even the simple breakout logic does not work properly based on wick or candle close. I need someone to check the errors and fix the functionalities of the EA to see if all works properly. Functions include: Grid, EMA confirmation, Candle confirmation, SL (3modes), TP, trailing & breakeven, etc. EA technical plan, source file and graphic how the EA should
looking for programer to convert from pine to ex4 indicator and code it on my ea Moneypal indicator name is Multy tf fvg available created by Zeiierman in Tradingview. Thank you ! Regards
Looking for Profitable Ready Made EA
30 - 80 USD
I want an automated trading bot, and before i will purchase here's want i want as a proof. Trading proof: Screenshots or verified logs showing real trading history, including entry and exit points, profit/loss, and trading duration. Chart evidence: Visual charts demonstrating the bot’s trading activity, backtests, or live trading performance. Additional details: Please include any relevant performance metrics
Trade One A well-structured multi-timeframe liquidity sweep strategy that starts from the higher timeframes and narrows down to precise entries on the 5-minute chart. This approach focuses on identifying where the market is likely to grab liquidity before making a strong move, ensuring tight stop losses and high reward-to-risk ratios. Liquidity Sweep Forex Strategy (Daily → H4 → H1 → M30→ M15 → M5) 1. Higher
プロジェクト情報
予算
30+ USD
依頼者
出された注文7
裁定取引数0