Fxob Ea
To avoid overloading the CPU on FXOB’s high-tick environment, use:
extern int TickFilter = 5; // Process every 5th tick int tickCounter = 0;
void OnTick() tickCounter++; if(tickCounter < TickFilter) return; tickCounter = 0; // EA logic here
The EA must utilize ORDER_TYPE_BUY and ORDER_TYPE_SELL with ORDER_FILLING_FOK (Fill or Kill) or ORDER_FILLING_IOC (Immediate or Cancel) modes. It should never use ORDER_FILLING_RETURN, which is incompatible with ECN bridges.
Suitable for: Intermediate traders who understand SMC concepts and can run the EA on a VPS with an ECN broker.
Not suitable for: Beginners, or anyone looking for "set and forget" high-frequency scalping. fxob ea
Suggested starting parameters:
Disclaimer: Past performance does not guarantee future results. Always forward-test any EA on a demo account for at least 4 weeks before going live.
The FXOB EA (often referred to as the FXOB SD Ranges EA) is an automated trading software designed for the MetaTrader 4 and 5 platforms that specializes in Order Block and Supply & Demand trading strategies. It is marketed as a high-precision tool that filters out "random" market noise to identify institutional-grade setups. Core Trading Strategy
The FXOB EA is built on Institutional Trading Methods, focusing on the concept of Smart Money:
Order Block Identification: Specifically scans for high-probability Supply and Demand zones, rather than every minor price reversal. To avoid overloading the CPU on FXOB’s high-tick
Market Structure Shifts: Uses indicators like CHoCH (Change of Character) and BOS (Break of Structure) to confirm trend reversals or continuations.
Liquidity & FVG: Incorporates Liquidity sweeps and Fair Value Gaps (FVG) into its entry criteria to ensure the market has enough momentum.
Premium & Discount Pricing: Uses Fibonacci retracements to determine if price is in a "Premium" (sell) or "Discount" (buy) zone relative to a range. Technical Features
Automated Scanner: Includes a built-in scanner that monitors multiple currency pairs simultaneously and sends notifications when a signal is detected.
Multi-Timeframe Analysis: Capable of showing BOS/CHoCH across different timeframes to provide a broader market perspective. The EA must utilize ORDER_TYPE_BUY and ORDER_TYPE_SELL with
Automated Execution: Can be set to open, manage, and close trades based on predefined risk parameters, including stop-loss and take-profit orders.
Risk Management: Typically allows users to set fixed risk percentages per trade (e.g., 1% of account balance) and position sizing. FXOB SD RANGES EA v6.035 + Supply & Demand Scanner (BASIC)
The EA should allow trading on all FXOB-supported instruments: Forex majors, minors, exotics, metals (XAU/USD), and indices (SPX500, UK100).
The bridge’s liquidity varies by session. An EA optimized for London open may lose money during Asian session due to thinner order books.
Order blocks fail often (40–50% of the time). Survive them with:
✅ Maximum 2% risk per block (1% if correlated pairs)
✅ Block invalidation rule: If price closes past block + 1 ATR → turn off EA for 2 hours (prevents revenge trades)
✅ Weekly drawdown limit: 6% → EA stops until Monday
💡 Clever trick: Set EA to only trade if the previous order block was profitable. If last trade hit SL → pause for 2 bars (stops emotional spirals).