Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Facebook !
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
Indicateurs

Heiken ashi - histogram - indicateur pour MetaTrader 5

Vues:
14264
Note:
(15)
Publié:
2019.01.04 19:34
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

Very well known Heiken ashi indicator made to show only the essence : the "trend" of the Heiken ashi, and to show that as a simple to use histogram


Market mode - discontinued signal lines Market mode - discontinued signal lines

Market mode - discontinued signal lines

Market mode Market mode

Market mode

Averages crosses Averages crosses

Averages crosses

Singleton Example Singleton Example

This is a working singleton code example. The sole purpose of this post is to provide a working code sample of a singleton object. A singleton object is created when there 'can be only one' of the object. This is accomplished by making an object's constructor private, and ensuring assignment and copy operations are also private. I was working on an EA and identified that an object should never have more than one copy. I don't expect the EA to ever get large enough for it to actually matter that a singleton is used, but I like the clarity in the code for the object's type. The code follows closely the tutorial at http://www.yolinux.com/TUTORIALS/C++Singleton.html.