TriZone Semafor Plus
- Indicatori
-
Ahmed Hamed Hamed Eadwan
ITALIAN TRANSLATION — ITALIANO
================================
TITLE:
Sviluppatore MQL5 e Trader | Fondatore di R protocols
ABOUT:
Ciao, sono Ahmed — un trader e sviluppatore MQL5 basato negli
Emirati Arabi Uniti, e fondatore di R protocols. - Versione: 1.0
- Attivazioni: 5
Se hai bisogno di un rilevamento strutturato dei punti pivot multilivello combinato con analisi del dashboard in tempo reale, notifiche Push mobili e integrazione per l'automazione EA — TriZone Semafor Plus è progettato appositamente per il tuo workflow.
iCustom Reference — TriZone_Semafor_Plus
Buffer di Uscita:
| Buffer | Indice | Segnale | Contenuto |
|---|---|---|---|
| BufLow1 | 0 | BUY | Prezzo Pivot Low Livello 1 — ZigZag Veloce |
| BufHigh1 | 1 | SELL | Prezzo Pivot High Livello 1 — ZigZag Veloce |
| BufLow2 | 2 | BUY | Prezzo Pivot Low Livello 2 — ZigZag Medio |
| BufHigh2 | 3 | SELL | Prezzo Pivot High Livello 2 — ZigZag Medio |
| BufLow3 | 4 | BUY | Prezzo Pivot Low Livello 3 — ZigZag Lento |
| BufHigh3 | 5 | SELL | Prezzo Pivot High Livello 3 — ZigZag Lento |
| BufSignal | 6 | BUY / SELL | Forza Segnale EA: +1/+2/+3 ACQUISTO, -1/-2/-3 VENDITA, 0 = Nessuno |
Esempio di Codice 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("Segnale ACQUISTO Livello %d", sigValue); else if(sigValue < 0) PrintFormat("Segnale VENDITA Livello %d", MathAbs(sigValue)); } |
EA MinShift Global Variable Auto-Detect
Rilevamento automatico dello shift sicuro (MinShift) per 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 } |
