Wedges 4.0
Indicatore tecnico per Metatrader (MT4/MT5)
-
ℹ Panoramica
L'indicatore PZ Wedges è uno strumento di analisi tecnica che aiuta i trader a identificare potenziali modelli di continuazione nel mercato. Questi modelli, noti come cunei, si formano quando il prezzo di un asset si consolida all'interno di un intervallo di restringimento, delimitato da linee di tendenza convergenti verso l'alto o verso il basso.
I cunei sono considerati pattern di continuazione perché spesso precedono un breakout nella direzione del trend precedente. Quando viene identificato un modello a cuneo, i trader possono cercare un breakout nella direzione del trend per entrare in un'operazione.
L'indicatore PZ Wedges consente ai trader di identificare facilmente questi modelli, nonché di confermare i breakout attuabili. Oltre a identificare i cunei, l'indicatore fornisce anche avvisi di ogni tipo per aiutare i trader a rimanere informati sulle potenziali opportunità commerciali.
Alcune altre caratteristiche dell'indicatore PZ Wedges includono dimensioni del motivo personalizzabili, colori personalizzabili e dimensioni degli oggetti e chiare interruzioni. Questo indicatore è facile da usare e può essere uno strumento prezioso per i trader che cercano di capitalizzare potenziali modelli di continuazione nel mercato.
- ≡
Parametri
Quando carichi l’esperto grafico, avrai a tua disposizione una moltitudine di parametri di input, raggruppati in blocchi di facile comprensione.
- Indicator Settings
- The amplitude reprents the size of the patterns to be found. The max. history bars parameter is the amount of bars in the chart to look back. Less bars to evaluate means the indicator will load faster.
- Pattern Settings
- Choose the colors of the patterns.
- Breakouts
- The indicator implements breakouts to make trading easier. You can choose the size and color of the arrows.
- Alerts
- Enable or disable alerts at will.
- ?
FAQ
- Does the indicator repaint?
- The wedge will not repaint unless a new point arises and the slope of the triangle lines needs to be changed. Additionally, if a breakout happens and later the price retracts inside the triangle again, the arrow will repaint later when another breakout happens.
- Some triangles seem to be missing from the chart
- To find more wedges, load the indicator several times on the chart with different "Size" parameters: for example, load it four times with sizes 6, 12, 18 and 24. This will find wedges of different sizes simultaneously.
- I am seeing a wedge and the indicator has not recognized it!
- Kindly note that the indicator needs 5 price points to find a wedge. Maybe you are seeing a 4 price point pennant yet and projecting it in your mind, but 5 price points are needed to actually recognize one. Other issue can be the size of the wedge relative to the indicator size parameter: refer to the previous question for this issue.
- Does the indicator implement alerts?
- Yes, it does. It implements alerts of all inds.
- </>
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 value from data buffer double value = iCustom(Symbol(), Period(), "PZ_Wedges_LICENSENUM", 0, 1); // Do something if(value == OP_BUY) { /* Your code for bullish signal */ } if(value == OP_SELL) { /* Your code for bearish signal */ } if(value == EMPTY_VALUE) { /* Nothing to do */} // Exit return(0); }