Auftrag beendet
Ausführungszeit 5 Tage
Bewertung des Entwicklers
Outstanding client! Skyler provided a clear specification and communicated perfectly. Very professional, understanding, and a true pleasure to work with. Highly recommended! 5 stars.
Spezifikation
I am looking for a professional developer to create a specialized Risk Management Expert Advisor (EA) for MetaTrader 5. This EA is designed to enforce Weekly High Watermark and Weekly Drawdown rules for a prop firm challenge.
CRITICAL REQUIREMENT: The EA must allow me to define the exact day and time the weekly cycle resets via input variables.
1. Core Logic: Weekly Cycle & Reset
The EA must monitor the broker server time and trigger a "New Week Reset" at a user-defined moment.
Input Variables:
WeekStartDay: (Dropdown/Enum) Sunday through Saturday (0=Sunday, 1=Monday, etc.)
WeekStartHour: (0–23) Broker server hour
WeekStartMinute: (0–59) Broker server minute
Reset Actions: At the specified time each week, the EA must:
Capture and store WeekStartEquity = AccountEquity()
Initialize WeeklyHighWatermark = AccountEquity()
Reset all drawdown counters and violation flags
Unblock trading (if UnblockOnNewWeek is set to true)
Log to Experts Journal: "Weekly cycle reset at [timestamp]"
Persistence: The EA must use GlobalVariables or a local file to store the WeeklyHighWatermark and WeekStartEquity so that the data is not lost if the terminal or VPS restarts.
Important: The reset must happen once per week only, not every time that day/hour occurs. Use a timestamp check to prevent duplicate resets.
2. High Watermark & Drawdown Tracking
On every tick, the EA must perform the following calculations:
High Watermark Update: If AccountEquity() > WeeklyHighWatermark, update the watermark to the new peak.
Drawdown from High (Floating):
DD_FromHigh_% = (WeeklyHighWatermark - AccountEquity()) / WeeklyHighWatermark * 100
Drawdown from Week Start:
DD_FromStart_% = (WeekStartEquity - AccountEquity()) / WeekStartEquity * 100
3. Early Warning Alert
Input Variables:
UseEarlyWarningAlert (bool): Enable/disable the early warning system
EarlyWarningDD_Percent (double): e.g., 2.5%
When drawdown from the weekly high watermark reaches this percentage, trigger an alert.
Behavior:
When DD_FromHigh_% >= EarlyWarningDD_Percent:
Send a Push Notification to mobile (if enabled)
Write to Experts Journal: "WARNING: Drawdown from weekly high has reached [X]%. Current equity: [Y]"
Do NOT stop trading or close any positions
Alert should trigger only once per threshold breach (use a flag to prevent spam)
Reset the alert flag when equity recovers above the threshold or when the weekly cycle resets
Example:
WeeklyHighWatermark = \$10,000
EarlyWarningDD_Percent = 2.5
When equity drops to \$9,750 → Alert fires
Trading continues normally
If equity recovers to \$9,800, the alert is re-armed and can fire again if it drops back
4. Risk Rules & Protection (Hard Limits)
Parameters:
UseMaxWeeklyDD_FromHigh (bool): Enable/disable this limit
MaxWeeklyDD_FromHigh_Percent (double): e.g., 4.0%
Trigger protection if equity drops this far from the weekly peak
UseMaxWeeklyDD_FromStart (bool): Enable/disable this limit
MaxWeeklyDD_FromStart_Percent (double): e.g., 5.0%
Trigger protection if equity drops this far from the week's starting equity
Actions on Violation:
ActionOnLimitHit (Dropdown/Enum):
0 = None (log only)
1 = Close All Trades & Block Trading
2 = Block New Trades Only (leave existing trades open)
If "Close All Trades & Block" is selected:
Close all open positions across the entire account (all symbols)
Delete all pending orders
Set trading block flag
Trading Block Behavior:
Once a hard limit is hit, the EA must prevent any further trading until:
The next weekly reset occurs (if UnblockOnNewWeek = true), OR
A manual reset is triggered
5. CONTINUOUS FAILSAFE (CRITICAL REQUIREMENT)
On EVERY tick while the trading block is active, the EA must:
Cancel ALL pending orders on the account (all symbols, all magic numbers)
Close ALL open positions on the account (all symbols, all magic numbers)
Log to Experts Journal: "FAILSAFE ACTIVE: All trades closed, all pending orders deleted"
Purpose:
This is a complete failsafe to ensure that if any other EA, script, or manual action attempts to open trades or place orders while the block is active, they are immediately closed/cancelled on the very next tick.
Implementation Notes:
This failsafe loop should run only when the block flag is active
Use a loop to iterate through all open positions and pending orders
Handle both Market and Pending orders
Must work across all symbols on the account, not just the chart symbol
Should be efficient (don't spam the trade server unnecessarily, but ensure protection)
Input Variable:
EnableContinuousFailsafe (bool): Default = true
Allows the user to disable this behavior if needed (though it's highly recommended to keep it enabled)
6. Integration with Other EAs
The EA should set a Global Variable to communicate trading status to other EAs:
GlobalVariableSet("RiskGuardian_BlockTrading", 1) when blocked
GlobalVariableSet("RiskGuardian_BlockTrading", 0) when allowed
Input Variables:
UseGlobalBlockFlag (bool): Enable/disable this feature
GlobalBlockFlagName (string): Default = "RiskGuardian_BlockTrading"
Include a comment in the code explaining how other EAs can check this flag before opening trades.
7. Visual Dashboard (On-Chart Panel)
A clean, non-intrusive UI panel displaying:
Current Balance / Equity
Week Start Equity
Weekly High Watermark
Drawdown % from High (color-coded: green < warning threshold, yellow >= warning, red >= hard limit)
Drawdown % from Start
Status: [TRADING ALLOWED] or [BLOCKED - LIMIT HIT: reason]
Failsafe Status: [FAILSAFE ACTIVE] when continuous failsafe is running
Next Weekly Reset: Displays configured Day/Time (e.g., "Monday 00:00")
Time Until Reset: Countdown (e.g., "2d 14h 23m")
Panel Settings:
ShowInfoPanel (bool)
PanelCorner (enum): Top-Left, Top-Right, Bottom-Left, Bottom-Right
FontSize (int)
PanelColor / TextColor (color inputs)
8. Manual Reset
Input Variable:
ManualReset (bool): When set to true, the EA should:
Immediately reset WeekStartEquity = AccountEquity()
Reset WeeklyHighWatermark = AccountEquity()
Clear all violation and alert flags
Unblock trading (disable failsafe)
Log: "Manual reset executed at [timestamp]"
Automatically set ManualReset back to false to prevent repeated resets
9. Alerts & Notifications
Input Variables:
EnablePopupAlert (bool): Show popup dialog on screen
EnablePushNotification (bool): Send to mobile app
EnableEmailAlert (bool): Send email
EnableSoundAlert (bool): Play sound file
AlertSoundFile (string): e.g., "alert.wav"
Trigger alerts for:
Early warning threshold reached
Hard limit violation (trading blocked)
Weekly cycle reset
Failsafe activation (first time only, not on every tick)
Complete Input Parameters Summary
mql5
Copy
//--- Weekly Cycle Timing
input int WeekStartDay = 1; // Week Start Day (0=Sun,1=Mon,...,6=Sat)
input int WeekStartHour = 0; // Week Start Hour (0-23, broker time)
input int WeekStartMinute = 0; // Week Start Minute (0-59)
input bool UnblockOnNewWeek = true; // Auto-unblock trading on new week
//--- Early Warning Alert
input bool UseEarlyWarningAlert = true; // Enable early warning alert
input double EarlyWarningDD_Percent = 2.5; // Alert threshold % from high watermark
//--- Hard Limits (Protection)
input bool UseMaxWeeklyDD_FromHigh = true; // Enable max DD from high limit
input double MaxWeeklyDD_FromHigh_Percent = 4.0; // Max drawdown % from weekly high
input bool UseMaxWeeklyDD_FromStart = true; // Enable max DD from start limit
input double MaxWeeklyDD_FromStart_Percent = 5.0; // Max drawdown % from week start
//--- Actions
input int ActionOnLimitHit = 1; // 0=None, 1=CloseAll&Block, 2=BlockOnly
input bool EnableContinuousFailsafe = true; // Close all trades/orders on every tick while blocked
//--- Global Variable Integration
input bool UseGlobalBlockFlag = true; // Use global variable for other EAs
input string GlobalBlockFlagName = "RiskGuardian_BlockTrading"; // Global variable name
//--- Manual Controls
input bool ManualReset = false; // Trigger manual reset
//--- Alerts & Notifications
input bool EnablePopupAlert = true; // Show popup alerts
input bool EnablePushNotification = true; // Send push notifications
input bool EnableEmailAlert = false; // Send email alerts
input bool EnableSoundAlert = true; // Play sound on alert
input string AlertSoundFile = "alert.wav"; // Sound file name
//--- Visual Panel
input bool ShowInfoPanel = true; // Display on-chart panel
input int PanelCorner = 1; // 0=TL, 1=TR, 2=BL, 3=BR
input int FontSize = 10; // Panel font size
input color PanelColor = clrDarkSlateGray; // Panel background
input color TextColor = clrWhite; // Panel text color
//--- General
input string CommentText = "RiskGuardian"; // EA comment
input int MagicNumber = 999999; // Magic number (for future use)
Technical Requirements
Platform: MetaTrader 5 only
Account Type: Must work with both Hedging and Netting accounts
No external DLLs
No indicators required – pure equity/account monitoring
Must work on any symbol / any timeframe (logic is account-level, not chart-level)
Must handle:
Platform restarts
VPS restarts
Network disconnections
Use GlobalVariables and/or file storage to persist critical data across restarts
Failsafe must be efficient: Don't spam the trade server, but ensure all trades/orders are closed immediately when block is active
Deliverables
Source code: .mq5 file (well-commented)
Compiled file: .ex5
Short documentation (text or PDF):
Explanation of each input parameter
How the weekly reset logic works
How the continuous failsafe works
How other EAs can read the global block flag
Example configuration for common prop firm rules (FTMO, MyForexFunds, etc.)
Testing instructions:
How to test in Strategy Tester with custom dates
How to verify weekly reset behavior
How to simulate drawdown scenarios and verify failsafe activation
Budget & Timeline
Please provide your price quote and estimated delivery time
I am looking for a clean, robust implementation with no unnecessary complexity
If you have built similar prop firm risk managers or equity protection tools, please share examples or screenshots
Notes
This EA is specifically for prop firm challenges / funded accounts
Accuracy of drawdown calculations is critical
No trading strategy logic needed – this is purely a risk management / equity monitoring tool
The EA should be lightweight and efficient (minimal CPU usage)
The continuous failsafe is a critical safety feature – it must work reliably to protect the account
CRITICAL REQUIREMENT: The EA must allow me to define the exact day and time the weekly cycle resets via input variables.
1. Core Logic: Weekly Cycle & Reset
The EA must monitor the broker server time and trigger a "New Week Reset" at a user-defined moment.
Input Variables:
WeekStartDay: (Dropdown/Enum) Sunday through Saturday (0=Sunday, 1=Monday, etc.)
WeekStartHour: (0–23) Broker server hour
WeekStartMinute: (0–59) Broker server minute
Reset Actions: At the specified time each week, the EA must:
Capture and store WeekStartEquity = AccountEquity()
Initialize WeeklyHighWatermark = AccountEquity()
Reset all drawdown counters and violation flags
Unblock trading (if UnblockOnNewWeek is set to true)
Log to Experts Journal: "Weekly cycle reset at [timestamp]"
Persistence: The EA must use GlobalVariables or a local file to store the WeeklyHighWatermark and WeekStartEquity so that the data is not lost if the terminal or VPS restarts.
Important: The reset must happen once per week only, not every time that day/hour occurs. Use a timestamp check to prevent duplicate resets.
2. High Watermark & Drawdown Tracking
On every tick, the EA must perform the following calculations:
High Watermark Update: If AccountEquity() > WeeklyHighWatermark, update the watermark to the new peak.
Drawdown from High (Floating):
DD_FromHigh_% = (WeeklyHighWatermark - AccountEquity()) / WeeklyHighWatermark * 100
Drawdown from Week Start:
DD_FromStart_% = (WeekStartEquity - AccountEquity()) / WeekStartEquity * 100
3. Early Warning Alert
Input Variables:
UseEarlyWarningAlert (bool): Enable/disable the early warning system
EarlyWarningDD_Percent (double): e.g., 2.5%
When drawdown from the weekly high watermark reaches this percentage, trigger an alert.
Behavior:
When DD_FromHigh_% >= EarlyWarningDD_Percent:
Send a Push Notification to mobile (if enabled)
Write to Experts Journal: "WARNING: Drawdown from weekly high has reached [X]%. Current equity: [Y]"
Do NOT stop trading or close any positions
Alert should trigger only once per threshold breach (use a flag to prevent spam)
Reset the alert flag when equity recovers above the threshold or when the weekly cycle resets
Example:
WeeklyHighWatermark = \$10,000
EarlyWarningDD_Percent = 2.5
When equity drops to \$9,750 → Alert fires
Trading continues normally
If equity recovers to \$9,800, the alert is re-armed and can fire again if it drops back
4. Risk Rules & Protection (Hard Limits)
Parameters:
UseMaxWeeklyDD_FromHigh (bool): Enable/disable this limit
MaxWeeklyDD_FromHigh_Percent (double): e.g., 4.0%
Trigger protection if equity drops this far from the weekly peak
UseMaxWeeklyDD_FromStart (bool): Enable/disable this limit
MaxWeeklyDD_FromStart_Percent (double): e.g., 5.0%
Trigger protection if equity drops this far from the week's starting equity
Actions on Violation:
ActionOnLimitHit (Dropdown/Enum):
0 = None (log only)
1 = Close All Trades & Block Trading
2 = Block New Trades Only (leave existing trades open)
If "Close All Trades & Block" is selected:
Close all open positions across the entire account (all symbols)
Delete all pending orders
Set trading block flag
Trading Block Behavior:
Once a hard limit is hit, the EA must prevent any further trading until:
The next weekly reset occurs (if UnblockOnNewWeek = true), OR
A manual reset is triggered
5. CONTINUOUS FAILSAFE (CRITICAL REQUIREMENT)
On EVERY tick while the trading block is active, the EA must:
Cancel ALL pending orders on the account (all symbols, all magic numbers)
Close ALL open positions on the account (all symbols, all magic numbers)
Log to Experts Journal: "FAILSAFE ACTIVE: All trades closed, all pending orders deleted"
Purpose:
This is a complete failsafe to ensure that if any other EA, script, or manual action attempts to open trades or place orders while the block is active, they are immediately closed/cancelled on the very next tick.
Implementation Notes:
This failsafe loop should run only when the block flag is active
Use a loop to iterate through all open positions and pending orders
Handle both Market and Pending orders
Must work across all symbols on the account, not just the chart symbol
Should be efficient (don't spam the trade server unnecessarily, but ensure protection)
Input Variable:
EnableContinuousFailsafe (bool): Default = true
Allows the user to disable this behavior if needed (though it's highly recommended to keep it enabled)
6. Integration with Other EAs
The EA should set a Global Variable to communicate trading status to other EAs:
GlobalVariableSet("RiskGuardian_BlockTrading", 1) when blocked
GlobalVariableSet("RiskGuardian_BlockTrading", 0) when allowed
Input Variables:
UseGlobalBlockFlag (bool): Enable/disable this feature
GlobalBlockFlagName (string): Default = "RiskGuardian_BlockTrading"
Include a comment in the code explaining how other EAs can check this flag before opening trades.
7. Visual Dashboard (On-Chart Panel)
A clean, non-intrusive UI panel displaying:
Current Balance / Equity
Week Start Equity
Weekly High Watermark
Drawdown % from High (color-coded: green < warning threshold, yellow >= warning, red >= hard limit)
Drawdown % from Start
Status: [TRADING ALLOWED] or [BLOCKED - LIMIT HIT: reason]
Failsafe Status: [FAILSAFE ACTIVE] when continuous failsafe is running
Next Weekly Reset: Displays configured Day/Time (e.g., "Monday 00:00")
Time Until Reset: Countdown (e.g., "2d 14h 23m")
Panel Settings:
ShowInfoPanel (bool)
PanelCorner (enum): Top-Left, Top-Right, Bottom-Left, Bottom-Right
FontSize (int)
PanelColor / TextColor (color inputs)
8. Manual Reset
Input Variable:
ManualReset (bool): When set to true, the EA should:
Immediately reset WeekStartEquity = AccountEquity()
Reset WeeklyHighWatermark = AccountEquity()
Clear all violation and alert flags
Unblock trading (disable failsafe)
Log: "Manual reset executed at [timestamp]"
Automatically set ManualReset back to false to prevent repeated resets
9. Alerts & Notifications
Input Variables:
EnablePopupAlert (bool): Show popup dialog on screen
EnablePushNotification (bool): Send to mobile app
EnableEmailAlert (bool): Send email
EnableSoundAlert (bool): Play sound file
AlertSoundFile (string): e.g., "alert.wav"
Trigger alerts for:
Early warning threshold reached
Hard limit violation (trading blocked)
Weekly cycle reset
Failsafe activation (first time only, not on every tick)
Complete Input Parameters Summary
mql5
Copy
//--- Weekly Cycle Timing
input int WeekStartDay = 1; // Week Start Day (0=Sun,1=Mon,...,6=Sat)
input int WeekStartHour = 0; // Week Start Hour (0-23, broker time)
input int WeekStartMinute = 0; // Week Start Minute (0-59)
input bool UnblockOnNewWeek = true; // Auto-unblock trading on new week
//--- Early Warning Alert
input bool UseEarlyWarningAlert = true; // Enable early warning alert
input double EarlyWarningDD_Percent = 2.5; // Alert threshold % from high watermark
//--- Hard Limits (Protection)
input bool UseMaxWeeklyDD_FromHigh = true; // Enable max DD from high limit
input double MaxWeeklyDD_FromHigh_Percent = 4.0; // Max drawdown % from weekly high
input bool UseMaxWeeklyDD_FromStart = true; // Enable max DD from start limit
input double MaxWeeklyDD_FromStart_Percent = 5.0; // Max drawdown % from week start
//--- Actions
input int ActionOnLimitHit = 1; // 0=None, 1=CloseAll&Block, 2=BlockOnly
input bool EnableContinuousFailsafe = true; // Close all trades/orders on every tick while blocked
//--- Global Variable Integration
input bool UseGlobalBlockFlag = true; // Use global variable for other EAs
input string GlobalBlockFlagName = "RiskGuardian_BlockTrading"; // Global variable name
//--- Manual Controls
input bool ManualReset = false; // Trigger manual reset
//--- Alerts & Notifications
input bool EnablePopupAlert = true; // Show popup alerts
input bool EnablePushNotification = true; // Send push notifications
input bool EnableEmailAlert = false; // Send email alerts
input bool EnableSoundAlert = true; // Play sound on alert
input string AlertSoundFile = "alert.wav"; // Sound file name
//--- Visual Panel
input bool ShowInfoPanel = true; // Display on-chart panel
input int PanelCorner = 1; // 0=TL, 1=TR, 2=BL, 3=BR
input int FontSize = 10; // Panel font size
input color PanelColor = clrDarkSlateGray; // Panel background
input color TextColor = clrWhite; // Panel text color
//--- General
input string CommentText = "RiskGuardian"; // EA comment
input int MagicNumber = 999999; // Magic number (for future use)
Technical Requirements
Platform: MetaTrader 5 only
Account Type: Must work with both Hedging and Netting accounts
No external DLLs
No indicators required – pure equity/account monitoring
Must work on any symbol / any timeframe (logic is account-level, not chart-level)
Must handle:
Platform restarts
VPS restarts
Network disconnections
Use GlobalVariables and/or file storage to persist critical data across restarts
Failsafe must be efficient: Don't spam the trade server, but ensure all trades/orders are closed immediately when block is active
Deliverables
Source code: .mq5 file (well-commented)
Compiled file: .ex5
Short documentation (text or PDF):
Explanation of each input parameter
How the weekly reset logic works
How the continuous failsafe works
How other EAs can read the global block flag
Example configuration for common prop firm rules (FTMO, MyForexFunds, etc.)
Testing instructions:
How to test in Strategy Tester with custom dates
How to verify weekly reset behavior
How to simulate drawdown scenarios and verify failsafe activation
Budget & Timeline
Please provide your price quote and estimated delivery time
I am looking for a clean, robust implementation with no unnecessary complexity
If you have built similar prop firm risk managers or equity protection tools, please share examples or screenshots
Notes
This EA is specifically for prop firm challenges / funded accounts
Accuracy of drawdown calculations is critical
No trading strategy logic needed – this is purely a risk management / equity monitoring tool
The EA should be lightweight and efficient (minimal CPU usage)
The continuous failsafe is a critical safety feature – it must work reliably to protect the account
Bewerbungen
1
Bewertung
Projekte
39
23%
Schlichtung
14
0%
/
93%
Frist nicht eingehalten
4
10%
Frei
2
Bewertung
Projekte
3
33%
Schlichtung
2
0%
/
100%
Frist nicht eingehalten
0
Frei
3
Bewertung
Projekte
844
61%
Schlichtung
33
27%
/
45%
Frist nicht eingehalten
24
3%
Frei
Veröffentlicht: 1 Beispiel
4
Bewertung
Projekte
1
100%
Schlichtung
3
0%
/
100%
Frist nicht eingehalten
0
Frei
5
Bewertung
Projekte
2
0%
Schlichtung
1
0%
/
0%
Frist nicht eingehalten
0
Frei
Veröffentlicht: 2 Artikel
6
Bewertung
Projekte
3
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
7
Bewertung
Projekte
83
28%
Schlichtung
9
33%
/
56%
Frist nicht eingehalten
9
11%
Frei
Veröffentlicht: 1 Beispiel
8
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
Veröffentlicht: 1 Artikel
9
Bewertung
Projekte
3
33%
Schlichtung
0
Frist nicht eingehalten
0
Frei
10
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
11
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
12
Bewertung
Projekte
16
19%
Schlichtung
2
0%
/
50%
Frist nicht eingehalten
3
19%
Beschäftigt
13
Bewertung
Projekte
0
0%
Schlichtung
2
0%
/
100%
Frist nicht eingehalten
0
Frei
14
Bewertung
Projekte
5
60%
Schlichtung
1
0%
/
0%
Frist nicht eingehalten
2
40%
Frei
Veröffentlicht: 1 Beispiel
15
Bewertung
Projekte
35
23%
Schlichtung
4
0%
/
50%
Frist nicht eingehalten
2
6%
Arbeitet
16
Bewertung
Projekte
553
50%
Schlichtung
57
40%
/
37%
Frist nicht eingehalten
227
41%
Arbeitet
17
Bewertung
Projekte
214
69%
Schlichtung
8
38%
/
38%
Frist nicht eingehalten
22
10%
Frei
18
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
Ähnliche Aufträge
PHANTOM PROTOCOL V1
35 - 150 USD
PHANTOM PROTOCOL V1 – MT5 EXPERT ADVISOR SPECIFICATION Develop a professional MetaTrader 5 (MT5) Expert Advisor named “PHANTOM PROTOCOL V1”. PRIMARY MARKET: - XAUUSD (Gold) - Designed primarily for M15 and H1 timeframes. - The EA must work with both 3-digit and 2-digit gold pricing where applicable. TRADING LOGIC: Use pure price-action and market-structure analysis rather than relying on a single indicator. The EA
Wanna Create A Trading Robot That Uses Liquidity Sweep And Smart Money Concept EA That Works On PC. I want A Developer Who Can Program Exactly My Strategy That Will Be Shared on A Video Upon The Selection. it Should Follow My Rules .It has To be able To Read Price Action, followed By Liquidity Sweep Areas And Combine with Smart Money Concept Knowledge. We Will Talk about Parameters later on . The robot should be able
1. Overview: I need an Expert Advisor (EA) for MT5 called "Gold Sniper" specifically optimized for XAUUSD (Gold). The EA should be a sniper scalper that takes high-probability trades on M5 and M15. It must work on any broker with low spread. 2. Strategy Logic: The EA should combine 3 confirmations: a) Trend Filter: EMA 50 & EMA 200. Only Buy if EMA 50 > EMA 200, only Sell if EMA 50 < EMA 200. Sniper Entry: Use RSI
I need an experienced trading-data specialist who can help me obtain 3–4 years of historical market data compatible with NinjaTrader 8 . The data will be used for trading strategy development, backtesting, and analysis
LOOKING FOR THE BEST EA
30 - 500 USD
I would look for an EA with: ✅ Verified MT4/MT5 live account ✅ At least 6–12 months of live results ✅ Low/moderate drawdown ✅ No dangerous martingale/grid unless you specifically want that ✅ Realistic scalping performance with your broker ✅ Spread & slippage filters ✅ Stop Loss + Take Profit ✅ Break-even and trailing stop ✅ News filter ✅ Adjustable lot size/risk ✅ Source code ( .mq4/.mq5 ) if you're purchasing the EA
Шукаю спеціаліста для розширення діючого функціоналу MT5 "New order" або створення окремого робота. Суть проекта - можливість створення відкладеного ордеру BuyStop або SellStop після досягнення ринковою ціною певного значення. Схема руху ціни - хибний пробій рівня (ціна X) та розворот тренду. Ручне встановлення SL та TP. Опція схожа діючого функціоналу BuyStopLimit або SellStopLimit, але відкладений ордер
Need aggressive M1 gold scalper rewrite of Dev3 + 8 strategies. INPUTS: RiskPercent=3, TP=400, SL=300, MaxTrades=6, Mode=BOTH, DailyProfit 15%, DailyLoss -10% LOT = Balance * RiskPercent / 1000 - works for Cent R350 and $1000. 8 STRATEGIES any true = open instantly, check 1 sec: 1 EMA8/21 cross 2 RSI14 30/70 + engulf 3 Engulfing candle 4 BB 20,2 breakout 5 FVG grab M1 6 M5 trend + M1 entry 7 Wick rejection >2 8
Development of custom SMC Trading EA for MT5
80 - 100 USD
Hi, I want to develop a custom SMC (Smart Money Concepts) EA for MT5. My budget is $100. Here are the strategy requirements: 1. Auto identification of BOS, CHoCH, Order Blocks (OB), and FVG. 2. Auto entry when price returns to OB/FVG. 3. Auto SL above/below OB and TP based on Risk-to-Reward ratio (1:2, 1:3). 4. Risk Management (Risk % per trade or fixed lot size), Trailing Stop, Break-Even, and Max Spread filter. 5
I need an experienced MQL5 developer to build a prototype MT5 Expert Advisor called RiskLock. The software should enforce user-defined trading risk rules before trades are executed. It should support risk percentage or fixed monetary risk, calculate position size using account equity, entry price, stop loss, tick value and contract specifications, block or reduce oversized trades, and include daily loss limits
I need EA Lil-MeProBot for MT5. Phone user, deliver .mq5 + .ex5. Symbols: XAUUSD EURUSD GBPUSD USDJPY BTCUSD, M15, Magic 777001 Strategy 6X Confluence score 4/6: 1. EMA 50/200 trend 2. Break of Structure 3. RSI 14 4. Strong body FVG/Order Block 5. Session 8am-9pm GMT+2 6. ATR filter Money Management LASTING: Lot 0.01 fixed, NO martingale, NO grid, Max 1 per symbol Max 2 total, SL ATR*2 TP ATR*3, Daily loss R40 stop
Projektdetails
Budget
30 - 60 USD
Ausführungsfristen
bis 20 Tag(e)