Specification
NNFX Trading Panel for MT5 V1.4 - with help from ChatGpT NNFX Trading Panel for MT5 - Project Description Overview: This project involves developing a custom Expert Advisor (EA) for MetaTrader 5 (MT5) based on the NNFX strategy. The EA will manage trades with automated risk calculations, ATR-based stop loss and take profit settings, a Chandelier Exit indicator for additional trade exits, and a visually intuitive trading panel for user interaction. The design and functionality of the trading panel are outlined in the attached image. Core Functionality: Trade Execution: Two trades are placed simultaneously with fixed stop loss (SL) and trailing stop logic: Trade 1: Default stop loss set at 1.5 ATR (customizable). 50% of the position closes at 1 ATR take profit (TP) by default (customizable). The remaining position transitions to a 1.5 ATR trailing stop when price reaches the threshold of 2 ATR (customizable). Trade 2: Default stop loss set at 1.5 ATR (customizable). No take profit; instead, a 1.5 ATR trailing stop is applied when price reaches the threshold of 2 ATR (customizable). Exit Indicator: The standard Chandelier Exit will act as an optional exit strategy: Activated after price moves beyond the threshold of 3 ATR (default, customizable). Can close trades on bar close or touch (selectable in settings). Works alongside ATR-based trailing stops for added flexibility. Risk Management: Users can specify the risk percentage for both trades combined (e.g., 2% of account balance or equity). The EA will automatically calculate lot sizes to ensure risk adherence. Include a feature to prevent trades if the maximum daily drawdown exceeds a set percentage (e.g., 4%). User Interface - Trading Panel: The EA will feature an interactive trading panel with the following elements, based on the attached design: Risk Input: A box to input the total risk percentage (e.g., 2%). The risk will be divided equally between the two trades. Market Orders: Buttons for placing Market Buy and Market Sell orders instantly. Pending Orders: Buttons to place Buy Stop and Sell Stop orders. Pending order levels can be adjusted directly by dragging lines on the chart. Stop loss, trailing stop, and risk will be recalculated automatically when pending ordered is triggered by price. Order Management: Close All Pending Orders. Close All Orders. Close All in Profit. Close All in Loss. Settings: The following section defines how the EA's settings should appear in the interface. The parameters must be organized in this exact order, allowing users to customize trade logic, risk management, ATR calculations, and Chandelier Exit settings seamlessly. Trade 1: Fixed SL by ATR (default: 1.5). TP when price has reached ATR from order (default: 1). TP % (default: 50%). Activate ATR trailing stop after price has reached set ATR threshold (default: 2). ATR value of trailing stop distance (default: 1.5). Activate Exit Indicator (default: ON). Activate Exit Indicator after price reaches ATR threshold (default: 3; not activated if TP is set to 100%). Trade 2: Fixed SL by ATR (default: 1.5). Activate ATR trailing stop after price has reached set ATR threshold (default: 2). ATR value of trailing stop distance (default: 1.5). Activate Exit Indicator (default: ON). Activate Exit Indicator after price reaches ATR threshold (default: 3). Risk Management: Risk based on: Balance/Equity (default: Equity). No trades if max daily drawdown exceeds a percentage (default: 4%). ATR Settings: ATR period (default: 14). Chandelier Exit Settings: Show Exit Indicator on chart (default: ON). Exit at bar close/ touch (default: bar close). Include specific settings for the Chandelier Exit indicator, such as multiplier values or lookback periods. Standard Chandelier Exit Code: The EA should integrate the Chandelier Exit indicator code sent by me. Panel Customization: Options to customize button colors. Future possibility for button size adjustments. Panel placement options.
13:55
Developer Notes: Panel Design Reference: Refer to the attached image for the visual layout of the trading panel. The design elements should be intuitive and aligned with the described functionality. Ensure clear labeling and a user-friendly interface. Adding Labels for Trades, Stop Loss (SL), and Trailing SL To enhance the clarity and visualization of trades, Stop Loss (SL), and Trailing SL levels, here’s a detailed description of how to implement labels for both trades in a way that avoids overlap and ensures proper alignment. Key Features of the Label System Text Labels for Trades: • Distinguish between Trade 1 and Trade 2 using unique identifiers in the labels. • Use simple text like "Trade 1: Buy Stop" or "Trade 2: Active Buy" to display the trade status. Text Labels for SL and Trailing SL: • Create labels for Stop Loss (SL) and Trailing SL for each trade. • For SL, display text like "SL (T1)" for Trade 1 or "SL (T2)" for Trade 2. • For Trailing SL, display text like "Trailing SL (T1)" for Trade 1 or "Trailing SL (T2)" for Trade 2. Dynamic Placement of Labels: • Position the labels near their corresponding price levels, ensuring they do not overlap. • Use vertical offsets to create space between labels when trades or SL levels are close together. Real-Time Updates: • Ensure the labels move dynamically as the price, SL, or Trailing SL levels change. • Update or remove labels when trades or orders are modified, activated, or closed. Implementation Details Adding Labels for Trades • For Pending Orders: • Display labels above the price level of the pending order. • Example: "Pending: Buy Stop (T1)" or "Pending: Sell Stop (T2)". • For Active Trades: • Display labels below the entry price level of the trade. • Example: "Active: Buy (T1)" or "Active: Sell (T2)". Adding Labels for SL and Trailing SL • For SL: • Place the label slightly below the SL price line. • Example: "SL (T1)" for Trade 1 or "SL (T2)" for Trade 2. • For Trailing SL: • Place the label further below the price line, using an additional offset to distinguish it from the SL label. • Example: "Trailing SL (T1)" for Trade 1 or "Trailing SL (T2)" for Trade 2. Dynamic Positioning to Avoid Overlaps • Vertical Offsets: • Use a fixed vertical offset to space labels apart when trades or SL levels are close. • For example: • Label 1: SL (T1) placed at SL price - 10 points. • Label 2: Trailing SL (T1) placed at Trailing SL price - 20 points. • Collision Detection: • Check for overlapping price levels between labels (e.g., if SL and Trailing SL are too close). • Adjust label positions dynamically by increasing the offset if overlap is detected. Real-Time Updates • Recalculate the label positions when: • Pending orders are moved (e.g., dragged to a new price). • SL or Trailing SL levels are modified. • Orders are activated, closed, or canceled. • Automatically remove labels for trades or SL levels that no longer exist. Trade and Label Identification • Use unique identifiers for each trade and its corresponding labels: • Trade 1 Labels: • "Trade 1: Buy Stop" • "SL (T1)" • "Trailing SL (T1)" • Trade 2 Labels: • "Trade 2: Sell Stop" • "SL (T2)" • "Trailing SL (T2)". Error Handling • Ensure labels are only created when valid data (e.g., price
13:55
levels) is available. • Prevent multiple labels from being created at the same position by enforcing a minimum spacing threshold. • Log errors if a label cannot be added or updated due to invalid input or conflicting conditions. Overlap Avoidance • If SL and Trailing SL levels are very close (e.g., within 5 points), increase the vertical offset for the Trailing SL label to avoid overlap. Automation Details: All calculations (e.g., risk percentage, ATR-based levels, etc.) must be automated. Drag-and-drop adjustments for pending orders must recalculate stop loss and risk parameters. Error Handling: Ensure robust error handling, especially for invalid input or calculation issues. Efficiency: The EA must be optimized for smooth operation without affecting MT5’s performance.
Responded
1
Rating
Projects
167
25%
Arbitration
23
9%
/
78%
Overdue
16
10%
Working
2
Rating
Projects
2
50%
Arbitration
1
0%
/
100%
Overdue
1
50%
Free
3
Rating
Projects
18
11%
Arbitration
6
33%
/
67%
Overdue
1
6%
Free
Published: 1 code
4
Rating
Projects
475
40%
Arbitration
105
40%
/
24%
Overdue
80
17%
Busy
Published: 2 codes
5
Rating
Projects
228
80%
Arbitration
22
27%
/
50%
Overdue
11
5%
Free
Published: 24 articles, 1882 codes
6
Rating
Projects
477
69%
Arbitration
6
67%
/
0%
Overdue
2
0%
Free
7
Rating
Projects
486
75%
Arbitration
6
67%
/
17%
Overdue
0
Working
Similar orders
I am looking for an experienced MT4 developer/designer who can create a custom chart template using a background image provided NOTE: Apply if you have done this type of job in the past, also provide the prove of your past project
نموزج الكتفين
30+ USD
حلل لي اصل مالي ) اكتب هنا مثلا XAU EUR USD USD اريد تحليلا تعليما و ليس توصية مالية ۱- نوع التحليل المطلوب : ( فني / اساسي / سلوك سعري ) ٢ - المدي الزمني : ( قصير / متوسط / طويل ) M15 / H1 / H4 / ) اذكر الفريمات المطلوبه + (D1 ما اريد استخراجه من التحليل : الاتجاه العام اقوي مستويات دعم و مقاومة رقمية سيناريو صعود و سيناريو هبوط مع شروط كل سيناريو ( IF / THEN ) اين يصبح السيناريو لاغيا مناطق دخول و خروج تعليمية (
Project Title: Looking for an MQL5 developer for a custom MT5 Expert Advisor Hello, I am looking for an experienced MQL5 developer to create a custom Expert Advisor (EA) for MetaTrader 5. The strategy logic will be discussed privately after I find a developer interested in the project. At this stage, I only want to know: • If you are available to develop a custom EA • Your experience with MT5 / MQL5 • Your estimated
I need modifications to an existing MT5 Expert Advisor. Modification 1 EA must be able to run on indices as well as forex , specifically: SP500 US100 US30 No other changes to the current logic Modification 2 Other alterations/notes: Opening breakout range option for 15min or 30 min from session start. 5 min fair value gap (FVG) break outside of the range (instead of 1 min). At least one of the candles must be within
I am looking for an experienced quantitative developer to analyze and optimize an MT5 Expert Advisor that I have already developed. The EA is relatively complex and includes: Multiple strategies (Trend Pullback, Breakout, Mean Reversion, EMA Reclaim) Scoring system combining technical score and probabilistic filter Regime detection (ADX based) Volatility filters (ATR regime) Correlation and cluster exposure control
Translarion
30+ USD
I need expert. Who translate expert and have trust wallet app. If anyone have inbox me. This is very important. Ok anyone interested so dm me.In the situation translater need very important. First dm me
Helo i need on mt4 candle patten strategy developer, only one entry rule and take profit and stoploss and trailing stoploss and Max profit and Max loss and some inputs, I need complete this job is 1 day, only available developer come to my job
Until zone detection is coded , you will be from that point . Trailing Stop Optimization for live chart . Apply with Specific Currency Support . Clean Code . Zone Upper Limit and Lower Limit . Apply with careful understanding of the project requirement
MT5 Trading Bot Developers (Professional Version)
30 - 200 USD
Subject: Professional MT5 Trading Bot Inquiry - Pre-Purchase Requirements Dear [Bot Name/Company Name] Developers, Greetings, I am a professional trader seeking a highly professional and extremely powerful MT5 trading bot , and after extensive research, your product has caught my attention. However, before I click the payment button, I have specific requirements as I am not looking for an ordinary bot, but rather a
hello, please take a moment to review my project. It is for Quanttower. it is very detailed in the instructions. Thank you, Just let me know if you can do it and the whats the cost and timeframe
Project information
Budget
30 - 50 USD