TrendLine PRO MT4
50 USD
Demo heruntergeladen:
8 506
Veröffentlicht:
20 Februar 2019
Aktuelle Version:
11.5
Keinen passenden Roboter gefunden?
Geben Sie Ihren Eigenen in Auftrag
auf Freelance!
Gehen Sie zu Freelance
Geben Sie Ihren Eigenen in Auftrag
auf Freelance!
Wie man einen Roboter oder Indikator kaufen kann
Starte Deinen EA im
Virtual Hosting
Virtual Hosting
Teste einen Indikator/Roboter vor dem Kauf
Möchtest Du Geld im Market verdienen?
Wie man Produkte richtig präsentiert
Sie verpassen Handelsmöglichkeiten:
- Freie Handelsapplikationen
- Über 8.000 Signale zum Kopieren
- Wirtschaftsnachrichten für die Lage an den Finanzmärkte
Registrierung
Einloggen
Sie stimmen der Website-Richtlinie und den Nutzungsbedingungen zu.
Wenn Sie kein Benutzerkonto haben, registrieren Sie sich

蜡烛图的收盘价结束后,信号已经确认做单方向,TP和SL已经确认,唯一不好的就是,在下一根K线结束后,TP和SL的值会自动修改。我从2022年就已经购买了这个指标和EA,但是EA更新后就用不了。
我发现是buffer7和buffer8不是在方向出来有的。
Hello. The buffer_7 is the Buy Signal and the buffer_8 is the Sell Signal
Hi, your buffer value have issues. The signal candle only shows tp1, tp2, tp3, sl buffer values. There is no value for the buy and sell signal. The buy and sell values buffer values only appear after the next candle close. There is no way to make a EA to trade this values at all. Please fix it.
The value of the Signal buffer is available while the Entry candle only
Excellent indicator, Evgenii. Could you please give info for buffers needed for iCustom? I noticed that buffer 7 is for Buy signal & buffer 8 is for Sell signal.
Nevermind. I got it from the blog. Thanks.

Hi,
The indicator no longer send alerts to phone once this last update was installed.
The indicator's automatic correction frequency is too high. The confirmed TP and SL values will be automatically modified, which seriously affects the parameter settings. As shown in the figure, the market changes over time, and the values will also change. The TP and SL values are inconsistent with the email reminders received. Can this problem be fixed?
Hi,
The indicator no longer send alerts to phone once this last update was installed.
I faced the same problem today
Loaded this indicator GBPUSD chart M15. I put in 2 orders with SL as recommended by the indicator. At 8.30 PM (GMT +8), there was USD news and the SL was triggered, however the indicator did not show the SL losses x 2. Is this a bug or I am missing something? Appreciate your advice please.
Hello. Can you share a screenshot of the situation?
Hello. Can you share a screenshot of the situation?
See attached
I faced the same problem today
Now I am getting the alerts. Not sure what happened.
See attached
Hello. The price did not reach the SL
Hello. The price did not reach the SL
I was referring to the Sell order not the Buy order.
I'm unable to read the indicator buffer signals. Sometimes, I can only read 'Sell' and 'Buy' signals but never the Take Profit (TP) and Stop Loss (SL). Additionally, I can do this only during backtesting; in live trading, it indicates there's a problem with the milliseconds (500). Can someone help me? Thank you.
this is read routine
#property strict
double trendline_value_7, trendline_value_8;
int handle;
int OnInit() {
string indicatorName = "TrendLine PRO MT4";
// 📌 Carichiamo l'indicatore con i parametri corretti
handle = iCustom(Symbol(), PERIOD_CURRENT, indicatorName,
false, 12, 150, 0.2, 0.8, 1.7, 1.0, false, PERIOD_H4,
false, 10, 21, 0x808080, false, true, false,
true, true, 0xFFFFFF, 0x708090, 0xFFA500,
0xFF0000, 0x4682B4, 8, 8);
if (handle == INVALID_HANDLE) {
Print("❌ ERRORE: iCustom() ha fallito. Codice errore: ", GetLastError());
return INIT_FAILED;
}
Print("✅ Indicator '", indicatorName, "' caricato con successo!");
return INIT_SUCCEEDED;
}
void OnTick() {
if (handle == INVALID_HANDLE) {
Print("⚠️ ERRORE: L'indicatore non è stato caricato correttamente!");
return;
}
// 📌 Leggiamo i buffer
// 📌 Controlla se i buffer contengono dati validi
trendline_value_7 = iCustom(Symbol(), PERIOD_CURRENT, "TrendLine PRO MT4", 7, 0);
trendline_value_8 = iCustom(Symbol(), PERIOD_CURRENT, "TrendLine PRO MT4", 8, 0);
if (trendline_value_7 != 2147483647.0 ) Print("Segnale Buy: ", trendline_value_7, " | Segnale Sell: ", trendline_value_8 );
if (trendline_value_8 != 2147483647.0 ) Print("Segnale Buy: ", trendline_value_7, " | Segnale Sell: ", trendline_value_8);
}
// 📌 Se tutto è OK, stampiamo i valori
// Print("🔥 Buffer 7: ", trendline_value_7, " | Buffer 8: ", trendline_value_8, " | Stop Loss: ", StopLoss);
}
Votre EA a besoin de faire fonctionner votre indicateur pour fonctionner ?
Hi,
I used TrendLine Pro MT4 and I like it. What's the best setting for XAUUSD M1 ?
Thanks