MQL5: الصياغة
أساسيات الصياغة في MQL5 مع أنماط شائعة.
MQL5 — Syntax
Hello World
// Hello World in MQL5
Hello, World!
Common patterns
Note: some languages differ. This page is a starter cheat sheet you can expand.
Comments
// line comment
/* block comment */
Variables (example)
// var / let / const / or language-specific syntax
Conditionals
// if / else
Loops
// for / while
Functions
// define a function