Wedges 4.0
Indicador técnico para Metatrader (MT4/MT5)
-
ℹ Visão global
O indicador PZ Wedges é uma ferramenta de análise técnica que ajuda os traders a identificar possíveis padrões de continuação no mercado. Esses padrões, conhecidos como cunhas, são formados quando o preço de um ativo se consolida dentro de uma faixa estreita, delimitada por linhas de tendência convergentes para cima ou para baixo.
As cunhas são consideradas padrões de continuação porque muitas vezes precedem uma quebra na direção da tendência anterior. Quando um padrão de cunha é identificado, os traders podem procurar uma quebra na direção da tendência para entrar em uma negociação.
O Indicador PZ Wedges torna mais fácil para os traders identificar esses padrões, bem como confirmar rompimentos acionáveis. Além de identificar cunhas, o indicador também fornece alertas de todos os tipos para ajudar os comerciantes a se manterem informados sobre possíveis oportunidades comerciais.
Alguns outros recursos do indicador PZ Wedges incluem tamanho de padrão personalizável, cores e tamanhos de objeto personalizáveis e quebras nítidas. Este indicador é fácil de usar e pode ser uma ferramenta valiosa para os traders que procuram capitalizar os possíveis padrões de continuação do mercado.
- ≡
Parâmetros
Ao carregar o gráfico expert, você terá à sua disposição uma infinidade de parâmetros de entrada, agrupados em blocos de fácil compreensão.
- 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.
- </>
Desenvolvedores
Para construir seu próprio robô com este indicador, use a chamada iCustom () detalhada abaixo. O indicador possui um buffer extra cujo único propósito é armazenar eventos ou sinais como constantes, de forma que você só precisa fazer uma chamada para o indicador para tomar decisões. Copie e cole o código a seguir no código-fonte do seu robô, substituindo o nome do indicador pelo que você recebeu.
//---- 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); }