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:
177
Note:
(10)
Publié:
2025.06.02 11:52
MQL5 Freelance Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

Cet indicateur SuperTrend permet d'identifier les tendances du marché en se basant sur la volatilité de l'Average True Range (ATR). Il est publié sous licence MIT pour une utilisation libre et gratuite.

Formule de base

  • Bande supérieure = Prix d'origine + (Multiplicateur × ATR)
  • Bande inférieure = prix d'origine - (multiplicateur × ATR)
  • En cas de tendance haussière : SuperTrend = Bande inférieure (verte)
  • En cas de tendance baissière : SuperTrend = Bande supérieure (rouge)

Utilisation

  • La ligne verte indique une tendance haussière (opportunités d'achat potentielles)
  • La ligne rouge indique une tendance baissière (opportunités de vente potentielles)
  • Peut être utilisé pour les stratégies de suivi de tendance ou pour identifier les retournements de tendance.
  • Fonctionne bien comme mécanisme de stop suiveur

Installation

  1. Copiez le fichier dans le dossier des indicateurs de MetaTrader 5 (généralement situé dans Terminal_Directory\MQL5\Indicators\).
  2. Redémarrez MetaTrader 5 ou actualisez le panneau du Navigateur.
  3. Faites glisser l'indicateur sur n'importe quel graphique

Paramètres

  • ATRPeriod: Période de calcul de l'ATR (par défaut : 22)
  • Multiplier: Multiplicateur ATR pour ajuster la sensibilité (par défaut : 3.0)
  • SourcePrice: Type de prix utilisé pour les calculs
  • TakeWicksIntoAccount: Inclure ou non les mèches de prix dans les calculs

Pour la version multi-cadres temporels, veuillez consulter : https://www.mql5.com/fr/market/product/134432



Traduit de l’anglais par MetaQuotes Ltd.
Code original : https://www.mql5.com/en/code/57063

Indicateur basé sur 2 AMM Indicateur basé sur 2 AMM

Bonjour à tous) C'est la première fois que je poste mon code !!!

ZigZag honnête ZigZag honnête

L'indicateur montre les sommets écrasés ("cassés") du ZigZag standard.

Show Positions on Custom Chart (or standard chart) for MT5 Show Positions on Custom Chart (or standard chart) for MT5

This indicator is a utility that shows labelled trade levels on any chart. If you want to replace your native trade levels on a native chart, then turn off "Show trade levels" in your F8 Chart Properties and attach this indicator. If you want to show trade levels on a Custom Chart (where native trade levels cannot be shown), then simply attach this indicator. BaseSymbol - specify the Symbol from which the trade level data will be pulled--handy for unique Custom Symbols. TextBarsBack - specify the number of bars back in history from the current bar where the level labels will be drawn. Note: Although magic number is referenced in the code, it is not presently included in the trade lines. If you're running multiple EA's on the same Symbol, you can edit the code to show magic numbers and then run multiple instances of the indicator on one chart. You can also edit the font sizes and text spacing in the object properties as needed for different display resolutions.

Baseline: iMA + ATR Bands Baseline: iMA + ATR Bands

Combines a Moving Average with ATR-based upper and lower bands to act as a trend filter and volatility channel.