CELEBRATING 12 YEARS - Enjoy 50% off with discount code ANNIVERSARY in the order form.

Double Top / Bottom 5.6

Indicatore tecnico per Metatrader (MT4/MT5)

  • Panoramica

    L'indicatore PZ Double Top/Bottom è uno strumento di analisi tecnica che aiuta i trader a identificare potenziali modelli di inversione dei prezzi nel mercato. Questi modelli, noti come doppi massimi e minimi, sono caratterizzati da due massimi o valli consecutivi nel prezzo di un asset. I doppi massimi e minimi sono spesso visti come potenziali schemi di inversione perché possono segnalare un cambiamento nella direzione del trend attuale.

    L'indicatore PZ Double Top/Bottom fornisce segnali di trading chiari per aiutare i trader a identificare questi modelli e prendere decisioni informate sulle loro operazioni. Oltre a identificare i doppi massimi e minimi, l'indicatore fornisce anche statistiche sulle prestazioni, rapporti di riconoscimento personalizzabili e mostra livelli di stop-loss e take-profit adeguati per aiutare i trader a gestire le proprie operazioni.

    Alcune altre funzionalità dell'indicatore PZ Double Top/Bottom includono colori e dimensioni personalizzabili, avvisi e-mail/suono/visivi e la possibilità di implementare schemi e segnali di breakout. Questo indicatore è facile da usare e può essere uno strumento prezioso per i trader che cercano di capitalizzare potenziali modelli di inversione dei prezzi nel mercato.

    Tieni presente che a volte questi schemi possono espandersi e l'indicatore potrebbe ridipingersi per seguire lo schema. Tuttavia, l'indicatore implementa una svolta per rendere più facile il trading aspettando un breakout di Donchian nella giusta direzione prima di segnalare lo scambio, rendendo i suoi segnali molto affidabili e per lo più non riverniciati.

  • Parametri

    Quando carichi l’esperto grafico, avrai a tua disposizione una moltitudine di parametri di input, raggruppati in blocchi di facile comprensione.

    Amplitude
    The amplitude represents the minimum amount of bars between alternative price points. To find big patterns, increase the amplitude parameter. To find smaller patterns, decrease the amplitude parameter.
    Breakout Period
    A donchian breakout is needed for a signal to arise after a pattern is found, and this indicator controls the amount of bars used in aforementioned breakout.
    Min. Retracement
    The minimum fibonacci retracement needed in a pattern.
    Max. Retracement
    The maximum fibonacci retracement possible in a pattern.
    Max History Bars
    Amount of past bars to evaluate when the indicator loads in the chart.
    Display Stats
    Show or hide the statistics dashboard and performance data.
    Display SL/TP Levels
    Show or hide the suitable stop-loss and take-profit levels for each signal.
    Drawing Options
    Colors and sizes for bullish or bearish lines and labels, as well as font sizes.
    Breakouts
    Colors and sizes for breakout arrows.
    Alert Events
    Enable or disable alerts for patterns and breakouts.
    Alerts
    Enable or disable alerts at will.
  • ? FAQ
    Does the indicator repaint?
    Yes, the indicator can repaint if the market ignores a pattern and keeps moving in the same direction. However, breakouts are mostly non repainting. A high "breakout period" value will decrease the repainting significantly.
    Does the indicator implement alerts?
    Yes, it does. It implements alerts of all kinds.
  • </> Sviluppatori

    Per costruire il tuo robot con questo indicatore, usa la chiamata iCustom () descritta di seguito. L’indicatore ha un buffer aggiuntivo il cui unico scopo è memorizzare eventi o segnali come costanti, in modo che sia sufficiente effettuare una chiamata all’indicatore per prendere decisioni. Copia e incolla il seguente codice nel codice sorgente del tuo robot, sostituendo il nome dell’indicatore con quello che hai ricevuto.

    //---- Read value from data buffer
    int start()
    {
    // Read signal and pattern
    double pattern = iCustom(Symbol(), Period(), "PZ_DoubleTopBottom_LICENSENUM", 0, 1);
    double signal   = iCustom(Symbol(), Period(), "PZ_DoubleTopBottom_LICENSENUM", 1, 1);
    // Do something
    if(pattern == OP_BUY)    { /* Your code for double bottom (no breakout yet) */ }
    if(pattern == OP_SELL)   { /* Your code for double top (no breakout yet) */ }
    if(signal == OP_BUY)      { /* Your code for bullish breakout */ }
    if(signal == OP_SELL)     { /* Your code for bearish breakout */ }
    if(signal == EMPTY_VALUE) { /* Your code if no pattern or breakout */}
    // Exit
    return(0);
    }

Screenshots

Double Top / Bottom Indicator for Metatrader
Double Top / Bottom Indicator for Metatrader
Double Top / Bottom Indicator for Metatrader
Double Top / Bottom Indicator for Metatrader
Double Top / Bottom Indicator for Metatrader
Double Top / Bottom Indicator for Metatrader
Double Top / Bottom Indicator for Metatrader