parent_command:forex/ta
usage: bbands [-l N_LENGTH] [-s N_STD] [-m {ema,sma,wma,hma,zlma}]

Bollinger Bands consist of three lines. The middle band is a simple moving average (generally 20 periods) of the typical price (TP). The upper and lower bands are F standard deviations (generally 2) above and below the middle band.
The bands widen and narrow when the volatility of the price is higher or lower, respectively. Bollinger Bands do not, in themselves, generate buy or sell signals; they are an indicator of overbought or oversold conditions. When the
price is near the upper or lower band it indicates that a reversal may be imminent. The middle band becomes a support or resistance level. The upper and lower bands can also be interpreted as price targets. When the price bounces
off of the lower band and crosses the middle band, then the upper band becomes the price target.

optional arguments:
  -l N_LENGTH, --length N_LENGTH
                        length (default: 5)
  -s N_STD, --std N_STD
                        std (default: 2)
  -m {ema,sma,wma,hma,zlma}, --mamode {ema,sma,wma,hma,zlma}
                        mamode (default: sma)


Examples:
- To calculate Bollinger Bands for a forex pair with default settings: forex/load <PAIR>/ta/bbands
- To calculate Bollinger Bands for a forex pair with a custom length of 10 periods: forex/load <PAIR>/ta/bbands -l 10
- To calculate Bollinger Bands for a forex pair with a custom standard deviation of 3: forex/load <PAIR>/ta/bbands -s 3
- To calculate Bollinger Bands for a forex pair using exponential moving average (EMA) as the middle band: forex/load <PAIR>/ta/bbands -m ema
- To calculate Bollinger Bands for a forex pair using weighted moving average (WMA) as the middle band: forex/load <PAIR>/ta/bbands -m wma
- To calculate Bollinger Bands for a forex pair using Hull moving average (HMA) as the middle band: forex/load <PAIR>/ta/bbands -m hma
- To calculate Bollinger Bands for a forex pair using zero lag moving average (ZLMA) as the middle band: forex/load <PAIR>/ta/bbands -m zlma
- To calculate Bollinger Bands for a forex pair with a custom length of 10 periods, a custom standard deviation of 3, and using exponential moving average (EMA) as the middle band: forex/load <PAIR>/ta/bbands -l 10 -s 3 -m ema