Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Telegram !
Rejoignez notre page de fans
Un script intéressant ?
Poster un lien vers celui-ci -
laisser les autres l'évaluer
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
Vues:
16293
Note:
(36)
Publié:
2016.11.09 16:02
Mise à jour:
2016.11.22 07:32
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

W.D. Gann was a famous trader who developed several technical analysis tools and techniques. One of these tools was the swing-chart, which can be used to identify the trend as well as to trade with it. A swing chart is constructed by first coloring the bars in comparison to their preceding bar as follows:

  • Green a.k.a. "Up-day" if the bar has a higher high and higher low.
  • Red a.k.a. "Down-day" if the bar has a lower low and lower high.
  • Blue a.k.a. "Outside-day" if the bar has a higher high and lower low.
  • Grey a.k.a. "Inside-day" or "Harami" if the bar has a lower high and higher low.

After coloring the bars as such, a ZigZag can be drawn with peaks where the colors change from green to red and troughs where the color changes from red to green.

This implementation takes care of the corner cases in the description (e.g. defining an Upday as a day where the high is higher and the low is higher or equal) and makes sure that the ZigZag obtained has price maximums and minimums on the peaks and troughs. It does not redraw previous swings, but several new peaks and troughs can come in a "burst" in the case of several inside-days and up/down-days without a new high/low.

Trading System:

The trading system associated with this (and ZigZag in general) indicator is as follows:

  • When a peak has formed, set buy stop above the last peak if it was higher than the next-to-last peak. Stop loss is set below the trough. In the image, one would have a buy stop on the high of the rightmost green bar, a stop loss on the low of the next red bar - and in this case be in profits already.
  • When a trough has formed, sell stop below last trough if it was lower than the next-to-last trough. Stop loss is set above the peak.

Comparison to Other ZigZags:

When it comes to a ZigZag for use in technical analysis, EAs and indicators, there are some desirable properties which include:

  1. The ZigZag should not redraw the previous peaks and troughs as new bars come in.
  2. The ZigZag should find significant peaks and troughs and ignore irrelevant ones.
  3. A ZigZag segment should define the maximum and minimum price on that segment.

The standard ZigZag draws nicely formed swings but is known to be able to redraw itself. Therefore it is not as useful for trading as it is for analyzing past price series. The FastZZ (and ZigZags like it) work by defining retracement size and considers price only. If set too high, many significant peaks and troughs can be skipped, and if set too low there can be irrelevant peaks and troughs. The Swingchart ZigZag can be seen as a mid-point between these two, not redrawing itself but also capable of considering a dynamic price range. Its main advantage is that it finds all relevant peaks and troughs and can be used in other applications which require a fine-grained peak/trough ordering.

    STARC bands STARC bands

    Variation of well know STARC (Stoller Average Range Channels) bands.

    Elder Auto Envelopes Elder Auto Envelopes

    The upgraded indicator: now it has new price types and different display type.

    Swing line - extended version Swing line - extended version

    Extended swing line indicator

    Double smoothed stochastic Double smoothed stochastic

    Double smoothed stochastic - extended