TriZone Semafor Plus
- Indicateurs
-
Ahmed Hamed Hamed Eadwan
FRENCH TRANSLATION — FRANÇAIS
===============================
TITLE:
Développeur MQL5 & Trader | Fondateur de R protocols
ABOUT:
Bonjour, je suis Ahmed — un trader et développeur MQL5 basé aux
Émirats Arabes Unis, et fondateur de R protocols. - Version: 1.0
- Activations: 5
Si vous avez besoin d'une détection structurée des points pivots multi-niveaux combinée à des analyses de tableau de bord en temps réel, des notifications Push mobiles et une intégration d'automatisation EA — TriZone Semafor Plus est conçu spécialement pour votre flux de travail.
iCustom Reference — TriZone_Semafor_Plus
Buffers de Sortie :
| Buffer | Index | Signal | Contenu |
|---|---|---|---|
| BufLow1 | 0 | BUY | Prix Pivot Bas Niveau 1 — ZigZag Rapide |
| BufHigh1 | 1 | SELL | Prix Pivot Haut Niveau 1 — ZigZag Rapide |
| BufLow2 | 2 | BUY | Prix Pivot Bas Niveau 2 — ZigZag Moyen |
| BufHigh2 | 3 | SELL | Prix Pivot Haut Niveau 2 — ZigZag Moyen |
| BufLow3 | 4 | BUY | Prix Pivot Bas Niveau 3 — ZigZag Lent |
| BufHigh3 | 5 | SELL | Prix Pivot Haut Niveau 3 — ZigZag Lent |
| BufSignal | 6 | BUY / SELL | Force du Signal EA : +1/+2/+3 pour ACHAT, -1/-2/-3 pour VENTE, 0 = Aucun |
Exemple de Code iCustom
| int g_tzsHandle = INVALID_HANDLE; int OnInit() { g_tzsHandle = iCustom(_Symbol, PERIOD_CURRENT, "TriZone_Semafor_Plus", 5, 1, 3, 159, 159, 2, 13, 8, 5, 108, 108, 3, 34, 21, 12, 108, 108, 4, "EA1", 0, 1, 1, 0, 0, 0, 0, 0, 0, "alert.wav", 0, 20, 30, clrDodgerBlue, clrOrangeRed, C'20,20,30', 9); if(g_tzsHandle == INVALID_HANDLE) return INIT_FAILED; return INIT_SUCCEEDED; } void OnTick() { int safeShift = 4; double sigBuf[1]; if(CopyBuffer(g_tzsHandle, 6, safeShift, 1, sigBuf) != 1) return; int sigValue = (int)sigBuf[0]; if(sigValue > 0) PrintFormat("Signal ACHAT Niveau %d", sigValue); else if(sigValue < 0) PrintFormat("Signal VENTE Niveau %d", MathAbs(sigValue)); } |
EA MinShift Global Variable Auto-Detect
Détection automatique du décalage sécurisé (MinShift) pour EA :
| // EA: Auto-detect safe shift from indicator Global Variable int GetMinShift(string instanceID) { string hash = HashToHex8(instanceID); string gvName = "TZP_" + hash + "_MinShift"; if(GlobalVariableCheck(gvName)) return (int)GlobalVariableGet(gvName); return 4; // fallback to default } |
