Experts: BEC Trade Breakeven Trail Manager

 

BEC Trade Breakeven Trail Manager:

BEC is an advanced trade management Expert Advisor designed to automate breakeven, trailing stop, and position control — all from a powerful on-chart dashboard.

BEC Trade Breakeven Trail Manager

Author: Shafiq Ur Rehman Siddiqui

 
newer version has been published more powerfull 
 
How can I get this EA
 
golden one #:
How can I get this EA
Check the link in the first post.
 
1. Panel overflows its background (visual bug) The background rectangle is hardcoded at 230px height but the actual content is ~362px. All buttons below Today's profit float outside the dark panel. 2. No toggle state persistence When the chart reloads or MT5 restarts, EnableBE and EnableTrail reset to their input defaults. Any manual toggle via the buttons is lost. Should be saved via GlobalVariableSet. 3. Scalp pip calculation wrong for XAUUSD double pip = (digits == 3 || digits == 5) ? 10 * point : point; XAUUSD has 2 digits — this gives pip = point = 0.01. But XAUUSD pip = 0.1. Should add digits == 2 check. 4. Font bold is a no-op ObjectSetString(..., bold ? "Consolas" : "Consolas"); // same either way MT5 doesn't support bold font weight via OBJPROP_FONT — this is fine to leave but the parameter does nothing.