parent_command:crypto/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 a cryptocurrency with default settings: crypto/load <COIN>/ta/adx
- Calculate the ADX for a cryptocurrency with a custom length of 20: crypto/load <COIN>/ta/adx -l 20
- Calculate the ADX for a cryptocurrency with a custom scalar of 200: crypto/load <COIN>/ta/adx -s 200
- Calculate the ADX for a cryptocurrency with a custom drift of 2: crypto/load <COIN>/ta/adx -d 2
- Calculate the ADX for a cryptocurrency with custom length, scalar, and drift values: crypto/load <COIN>/ta/adx -l 20 -s 200 -d 2