parent_command:etf/ta
usage: adx [-l N_LENGTH] [-s N_SCALAR] [-d N_DRIFT]

The ADX is a Welles Wilder style moving average of the Directional Movement Index (DX). The values range from 0 to 100, but rarely get above 60. To interpret the ADX, consider a high number to be a strong trend, and a low number, a
weak trend.

optional arguments:
  -l N_LENGTH, --length N_LENGTH
                        length (default: 14)
  -s N_SCALAR, --scalar N_SCALAR
                        scalar (default: 100)
  -d N_DRIFT, --drift N_DRIFT
                        drift (default: 1)


Examples:
- To calculate the ADX for an ETF with default settings: etf/ta/adx
- To calculate the ADX for an ETF with a custom length of 20: etf/ta/adx -l 20
- To calculate the ADX for an ETF with a custom scalar of 50: etf/ta/adx -s 50
- To calculate the ADX for an ETF with a custom drift of 2: etf/ta/adx -d 2
- To calculate the ADX for an ETF with a custom length of 20 and scalar of 50: etf/ta/adx -l 20 -s 50
- To calculate the ADX for an ETF with a custom length of 20 and drift of 2: etf/ta/adx -l 20 -d 2
- To calculate the ADX for an ETF with a custom scalar of 50 and drift of 2: etf/ta/adx -s 50 -d 2
- To calculate the ADX for an ETF with custom length of 20, scalar of 50, and drift of 2: etf/ta/adx -l 20 -s 50 -d 2