mql-developer
Comprehensive MQL4/MQL5 development for MetaTrader 4 and MetaTrader 5 platforms. Use when writing, reviewing, debugging, or architecting: Expert Advisors (EAs), custom indicators, scripts, libraries (.mqh), graphical panels, or any MQL code. Also use for: order/position management, risk management, backtesting strategies, communication with external APIs (WebRequest, REST, JSON), inter-program communication, code protection/licensing, and MQL4-to-MQL5 migration. Covers the full MQL ecosystem including trading automation, technical analysis, UI panels, and server integration.
What this skill does
# MQL Developer Guide for professional MQL4/MQL5 development on MetaTrader platforms. ## Quick Reference Navigation Load the appropriate reference file based on the task: | Task | Reference File | |------|---------------| | MQL4 syntax, types, functions, predefined vars | [references/mql4-reference.md](references/mql4-reference.md) | | MQL5 syntax, OOP, CTrade, Standard Library | [references/mql5-reference.md](references/mql5-reference.md) | | Project structure, EA architecture, design patterns | [references/architecture-patterns.md](references/architecture-patterns.md) | | Orders, positions, risk management, trailing stops | [references/trading-operations.md](references/trading-operations.md) | | Custom indicators, UI panels, scripts, chart objects | [references/indicators-and-ui.md](references/indicators-and-ui.md) | | WebRequest, JSON, REST API, Node.js integration | [references/external-communication.md](references/external-communication.md) | | Strategy Tester, optimization, walk-forward, Monte Carlo | [references/backtesting.md](references/backtesting.md) | | Code protection, licensing, anti-decompilation | [references/security-licensing.md](references/security-licensing.md) | ### Search Patterns for Large References For targeted lookup in large files, grep for these section headers: **mql4-reference.md:** `Data Types`, `Variables`, `Operators`, `Arrays`, `Strings`, `Program Types`, `Predefined Variables`, `Technical Indicator Functions`, `Order Management`, `Market Information`, `Account Functions`, `Preprocessor`, `Error Handling`, `Common Gotchas`, `File Operations`, `WebRequest`, `Utility Functions`, `Global Terminal Variables` **architecture-patterns.md:** `Project Structure`, `Simple Single-File`, `Modular EA`, `State Machine`, `Multi-Timeframe`, `Multi-Symbol`, `Singleton`, `Strategy Pattern`, `Observer`, `Include File Design`, `Complete Templates` **mql5-reference.md:** `OOP Features`, `Trade Functions`, `CTrade`, `Native Trade`, `Event Handlers`, `Standard Library`, `Key Enumerations`, `SQLite`, `Sockets`, `Resources`, `OpenCL` ## MQL4 vs MQL5 Key Differences | Aspect | MQL4 | MQL5 | |--------|------|------| | Paradigm | Procedural (C-like) | Full OOP (C++-like) | | Trade model | Orders only (`OrderSend`) | Orders + Deals + Positions (`CTrade`) | | Account model | Hedging only | Netting + Hedging | | Indicator buffers | Max 8 | Max 512 | | Draw styles | 6 basic | 18 (basic + color) | | Standard Library | Minimal | Comprehensive | | Database | None | SQLite built-in | | Sockets | None | TCP + TLS | | OpenCL | No | Yes | ## Core Workflow ### Creating an Expert Advisor 1. Define strategy signal logic (entry/exit conditions) 2. Choose architecture: simple (single-file) or modular (Signal + Trade + Risk + Filter) 3. Implement order/position management with proper error handling and retries 4. Add risk management (position sizing, drawdown control) 5. Add filters (time, spread, volatility) 6. Backtest with Strategy Tester (Open Prices first, then Every Tick) 7. Walk-forward validate and Monte Carlo test ### Creating a Custom Indicator 1. Choose window: `indicator_chart_window` or `indicator_separate_window` 2. Define buffers and plots (`indicator_buffers`, `indicator_plots` in MQL5) 3. Implement `OnCalculate()` with efficient recalculation using `prev_calculated` 4. Set draw styles, colors, labels 5. Handle multi-timeframe data if needed ### Communicating with External APIs 1. Whitelist URL in Tools > Options > Expert Advisors 2. Use `WebRequest()` for REST calls (POST/GET) 3. Build JSON manually (MQL has no native JSON) 4. Parse response with string functions 5. Use `EventSetTimer()` for polling patterns 6. Handle network errors with retries ## Critical Gotchas - **Double comparison**: Never use `==` with doubles. Use `NormalizeDouble()` or tolerance - **4-digit vs 5-digit brokers**: 1 pip = 1 point (4-digit) or 10 points (5-digit). Always detect - **Reverse loop for closing**: Iterate `OrdersTotal()-1` down to `0` when closing orders (MQL4) - **ECN brokers**: Some require two-step: `OrderSend()` without SL/TP, then `OrderModify()` - **Filling policy (MQL5)**: Always detect via `SYMBOL_FILLING_MODE`, never hardcode FOK - **WebRequest limitations**: Synchronous/blocking, not available in indicators or Strategy Tester - **Trade context busy (MQL4)**: Only one EA can trade at a time per terminal - **Array indexing**: Series arrays index 0 = newest bar. Use `ArraySetAsSeries()` to control ## Project Structure (Recommended) ``` MQL5/ (or MQL4/) ├── Experts/ │ └── MyEA/ │ └── MyEA.mq5 // EA entry point ├── Indicators/ │ └── MyIndicator.mq5 ├── Scripts/ │ └── MyScript.mq5 ├── Include/ │ ├── Core/ │ │ ├── CTradeManager.mqh // Order execution + retries │ │ ├── CRiskManager.mqh // Position sizing + drawdown │ │ └── CSignalBase.mqh // Signal interface │ ├── Communication/ │ │ ├── CHttpClient.mqh // WebRequest wrapper │ │ └── CJsonHelper.mqh // JSON build/parse │ ├── UI/ │ │ └── CPanel.mqh // Trading panel │ └── Utils/ │ ├── CTimeFilter.mqh // Session/time filters │ └── CSymbolHelper.mqh // Multi-market helpers └── Libraries/ ``` For simpler projects, a single-file EA with inline functions is acceptable. ## Code Style Conventions - Prefix member variables with `m_` (e.g., `m_magicNumber`) - Prefix global variables with `g_` (e.g., `g_isInitialized`) - Use `input` for user parameters, not `extern` - Always use `#property strict` in MQL4 - Normalize all prices before sending to server: `NormalizeDouble(price, Digits)` - Always check return values of `OrderSelect()`, `OrderSend()`, trade operations - Comment magic numbers and explain non-obvious trading logic ## Official Documentation - MQL4: https://docs.mql4.com/ - MQL5: https://www.mql5.com/en/docs - MQL5 Articles: https://www.mql5.com/en/articles - MQL5 Code Base: https://www.mql5.com/en/code
Related in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.