Quick StartKeep all settings on Automatic mode - the indicator adapts to any symbol and timeframe automatically. If you trade on TF lower than M5 please contact me for extra advice.
Complete Trading SystemLooking for multi-indicator confluence? Check out Oracle - our 7-indicator consensus system for institutional-grade signal confirmation.
Need Help?Send me a private message - I typically respond within 24h.
For the golden meridian pro, when i load the indicator through an ea (icustom), the visual objects are not shown. only the panel is shown. how can i enable to visual objects to be shown too?
For the golden meridian pro, when i load the indicator through an ea (icustom), the visual objects are not shown. only the panel is shown. how can i enable to visual objects to be shown too?
Hi,
this is normal MetaTrader 5 behavior.
When an indicator is loaded through iCustom(), MT5 creates an indicator handle mainly for EA access via CopyBuffer(). This does not automatically attach the full visual indicator instance to the chart.
If you want the full Meridian Pro visuals to be displayed while your EA reads the buffers, you can either:
1. Attach Meridian Pro manually to the chart, and let the EA read it through iCustom()/CopyBuffer().
2. Or attach the indicator handle from the EA with ChartIndicatorAdd(), for example:
int handle = iCustom(_Symbol, PERIOD_CURRENT, "Meridian Pro");
if(handle != INVALID_HANDLE)
ChartIndicatorAdd(0, 0, handle);
For automated workflows, the recommended integration method remains the documented buffer interface.
⭐⭐⭐⭐⭐ Meridian Pro 2.00 — Ausgezeichnetes Produkt, noch besserer Support
Ich nutze Meridian Pro als Basis für einen vollautomatischen Expert Advisor und war von Anfang an beeindruckt — sowohl vom Indikator selbst als auch vom Support durch Ottaviano.
Der Indikator liefert durch die synthetische HTF-Architektur eine Multi-Timeframe-Analyse ohne Repaint und ohne Sync-Lag, was für automatisierte Systeme entscheidend ist. Die EA-fähigen Buffer (Direction, TIS, Conviction, Fuel) funktionieren zuverlässig und stabil.
Besonders hervorzuheben ist Version 2.00: Auf meine konkrete Anfrage hin wurde der MTF-Konsens als nativer EA-Buffer (Buffer 22) implementiert — ein Feature das mir zuvor gefehlt hatte. Dass Merkava Labs das Feedback eines Nutzers direkt in eine Produktverbesserung umgesetzt hat, ist heute leider keine Selbstverständlichkeit.
Noch beeindruckender war die technische Unterstützung bei der Integration der HTF-Kontextlinien in meinen EA. Ottaviano hat mir präzise erklärt welche Buffer (7/8/9/10) die HTF-Linienpreise und Farbindizes liefern — inklusive des Hinweises auf Shift 1 für stabile Auswertung. Diese Information war Gold wert und hat meinen EA-Filter grundlegend verbessert.
Kurz zusammengefasst: Meridian Pro ist ein durchdachtes, professionelles Werkzeug für diskretionäre und systematische Trader. Der Support ist schnell, präzise und auf Augenhöhe. Absolute Kaufempfehlung.
MERIDIAN PRO - USER RESOURCES
User Manual (PDF) https://merkavalabs.com/docs.html
Quick Start Keep all settings on Automatic mode - the indicator adapts to any symbol and timeframe automatically. If you trade on TF lower than M5 please contact me for extra advice.
Complete Trading System Looking for multi-indicator confluence? Check out Oracle - our 7-indicator consensus system for institutional-grade signal confirmation.
Need Help? Send me a private message - I typically respond within 24h.
Buffer Content Values
0, 1 Ribbon (Alpha, Offset) Price levels for DRAW_FILLING
2 Buy Signal arrow Price level or EMPTY_VALUE
3 Sell Signal arrow Price level or EMPTY_VALUE
4 Direction +1 = Bull, 0 = Neutral, −1 = Bear
5 Trend Intensity (TIS) −1.0 to +1.0 (signed strength)
6 Conviction 0 = none, 1 = low, 2 = mid, 3 = high
15 Fuel 0–100 ratchet momentum pulse
22 MTF Consensus Current weighted matrix consensus (-1.0 to +1.0)
for the MTF alignment, is there a separate buffer?
Buffer Reference
Buffer Content Values
0, 1 Ribbon (Alpha, Offset) Price levels for DRAW_FILLING
2 Buy Signal arrow Price level or EMPTY_VALUE
3 Sell Signal arrow Price level or EMPTY_VALUE
4 Direction +1 = Bull, 0 = Neutral, −1 = Bear
5 Trend Intensity (TIS) −1.0 to +1.0 (signed strength)
6 Conviction 0 = none, 1 = low, 2 = mid, 3 = high
15 Fuel 0–100 ratchet momentum pulse
22 MTF Consensus Current weighted matrix consensus (-1.0 to +1.0)
for the MTF alignment, is there a separate buffer?
For the golden meridian pro, when i load the indicator through an ea (icustom), the visual objects are not shown. only the panel is shown. how can i enable to visual objects to be shown too?
Hi,
For the golden meridian pro, when i load the indicator through an ea (icustom), the visual objects are not shown. only the panel is shown. how can i enable to visual objects to be shown too?