MetaTrader 5 / Indicateurs
BB_ATR_Oscillator - indicateur pour MetaTrader 5
8031
The BB ATR oscillator indicator shows an average true range based on Bollinger Bands
It has four adjustable parameters:
- ATR period - ATR calculation period
- ATR multiplier - ATR multiplier value
- BB period - Bollinger Bands calculation period
- BB deviation - Bollinger Bands deviation
Calculations:
BBATR = UpperBB - LowerBB - ATR * ATR Multiplier
where:
UpperBB = BollingerBands(UPPER_BAND, BB period, BB deviation)
LowerBB = BollingerBands(LOWER_BAND, BB period, BB deviation)
ATR - AverageTrueRange(ATR period)

Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/22990