Guarda come scaricare robot di trading gratuitamente
Ci trovi su Twitter!
Unisciti alla nostra fan page
Script interessante?
Pubblica il link!
lasciare che altri lo valutino
Ti è piaciuto lo script? Provalo nel Terminale MetaTrader 5
Visualizzazioni:
72
Valutazioni:
(10)
Pubblicato:
2025.06.02 11:52
Freelance MQL5 Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance

Questo indicatore SuperTrend aiuta a identificare le tendenze del mercato in base alla volatilità dell'Average True Range (ATR). Rilasciato sotto licenza MIT per uso libero e open-source.

Formula di base

  • Banda superiore = Prezzo sorgente + (Moltiplicatore × ATR)
  • Banda inferiore = Prezzo sorgente - (Moltiplicatore × ATR)
  • In trend rialzista: SuperTrend = Banda inferiore (verde)
  • In downtrend: SuperTrend = Banda superiore (rosso)

Utilizzo

  • La linea verde indica il trend rialzista (potenziali opportunità di acquisto)
  • La linea rossa indica una tendenza al ribasso (potenziali opportunità di vendita).
  • Può essere utilizzata per strategie di trend following o per identificare le inversioni di tendenza
  • Funziona bene come meccanismo di trailing stop

Installazione

  1. Copiare il file nella cartella degli indicatori di MetaTrader 5 (di solito si trova in Terminal_Directory\MQL5\Indicators\).
  2. Riavviare MetaTrader 5 o aggiornare il pannello Navigator.
  3. Trascinare l'indicatore su qualsiasi grafico

Parametri

  • ATRPeriod: Periodo per il calcolo dell'ATR (default: 22)
  • Moltiplicatore: Moltiplicatore ATR per regolare la sensibilità (default: 3.0)
  • SourcePrice: Tipo di prezzo utilizzato per i calcoli
  • TakeWicksIntoAccount: Se includere o meno gli stoppini nei calcoli

Per la versione multi-timeframe visitate: https://www.mql5.com/it/market/product/134432



Tradotto dall’inglese da MetaQuotes Ltd.
Codice originale https://www.mql5.com/en/code/57063

Indicatore basato su 2 MA Indicatore basato su 2 MA

Buon pomeriggio a tutti) Prima volta che posto il mio codice!!!

Onesto ZigZag Onesto ZigZag

L'indicatore mostra i top sovrascritti ("rotti") dello 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.