TriZone Semafor Plus
- Indikatoren
-
Ahmed Hamed Hamed Eadwan
GERMAN TRANSLATION — DEUTSCH
==============================
TITLE:
MQL5 Entwickler & Trader | Gründer von R protocols
ABOUT:
Hallo, ich bin Ahmed — ein Trader und MQL5-Entwickler aus
den Vereinigten Arabischen Emiraten und Gründer von R protocols. - Version: 1.0
- Aktivierungen: 5
Wenn Sie eine strukturierte, mehrstufige Drehpunkt-Erkennung (Pivot) kombiniert mit Echtzeit-Dashboard-Analysen, mobilen Push-Benachrichtigungen und EA-Automatisierungsintegration benötigen — ist TriZone Semafor Plus speziell für Ihren Arbeitsablauf entwickelt worden.
iCustom Reference — TriZone_Semafor_Plus
Ausgabepuffer (Output Buffers):
| Puffer | Index | Signal | Inhalt |
|---|---|---|---|
| BufLow1 | 0 | BUY | Stufe 1 Low Pivot-Preis — Schnelles ZigZag |
| BufHigh1 | 1 | SELL | Stufe 1 High Pivot-Preis — Schnelles ZigZag |
| BufLow2 | 2 | BUY | Stufe 2 Low Pivot-Preis — Mittleres ZigZag |
| BufHigh2 | 3 | SELL | Stufe 2 High Pivot-Preis — Mittleres ZigZag |
| BufLow3 | 4 | BUY | Stufe 3 Low Pivot-Preis — Langsames ZigZag |
| BufHigh3 | 5 | SELL | Stufe 3 High Pivot-Preis — Langsames ZigZag |
| BufSignal | 6 | BUY / SELL | EA-Signalstärke: +1/+2/+3 für KAUF, -1/-2/-3 für VERKAUF, 0 = Kein Signal |
iCustom Code Beispiel
| 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("KAUF-Signal Stufe %d", sigValue); else if(sigValue < 0) PrintFormat("VERKAUF-Signal Stufe %d", MathAbs(sigValue)); } |
EA MinShift Global Variable Auto-Detect
Automatische Erkennung des sicheren Versatzes (MinShift) für EAs:
| // 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 } |
