Nur Nutzer, die das Produkt gekauft oder gemietet haben, können Kommentare hinterlassen
chensuining  
蜡烛图的收盘价结束后,信号已经确认做单方向,TP和SL已经确认,唯一不好的就是,在下一根K线结束后,TP和SL的值会自动修改。我从2022年就已经购买了这个指标和EA,但是EA更新后就用不了。
iczboi  
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.
iczboi  
chensuining #:
蜡烛图的收盘价结束后,信号已经确认做单方向,TP和SL已经确认,唯一不好的就是,在下一根K线结束后,TP和SL的值会自动修改。我从2022年就已经购买了这个指标和EA,但是EA更新后就用不了。
我发现是buffer7和buffer8不是在方向出来有的。
Evgenii Aksenov  
iczboi #:
我发现是buffer7和buffer8不是在方向出来有的。

Hello. The buffer_7 is the Buy Signal and the buffer_8 is the Sell Signal 

iczboi #:
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 


immanuel.mone  
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.

What are the buffers # for TP1, TP2, TP3 & SL? Thanks
immanuel.mone  
mmanuel.mone #:
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.

What are the buffers # for TP1, TP2, TP3 & SL? Thanks

Nevermind. I got it from the blog. Thanks.

 

Thomas Alva  

Hi,


The indicator no longer send alerts to phone once this last update was installed.

chensuining  

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?

simtasing  
Thomas Alva #:

Hi,


The indicator no longer send alerts to phone once this last update was installed.

I faced the same problem today

simtasing  
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.
Evgenii Aksenov  
simtasing #:
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? 

simtasing  
simtasing #:

I faced the same problem today

Now I am getting the alerts. Not sure what happened.

Evgenii Aksenov  
simtasing #:

See attached

Hello. The price did not reach the SL


simtasing  
Evgenii Aksenov #:

Hello. The price did not reach the SL


I was referring to the Sell order not the Buy order. 

dantonsuisse  

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);

}


Xue Yuan Zhang  
Hello,After I write the value of the EA call buffer, how do I transfer the value of Amplitude to the Indicator? Please let me know, thank you.
Sebastien Provost  

Hi,

I used TrendLine Pro MT4 and I like it.  What's the best setting for XAUUSD M1 ?

Thanks

Nur Nutzer, die das Produkt gekauft oder gemietet haben, können Kommentare hinterlassen