parent_command:forex/ta
usage: macd [--fast N_FAST] [--slow N_SLOW] [--signal N_SIGNAL]

The Moving Average Convergence Divergence (MACD) is the difference between two Exponential Moving Averages. The Signal line is an Exponential Moving Average of the MACD. The MACD signals trend changes and indicates the start of new
trend direction. High values indicate overbought conditions, low values indicate oversold conditions. Divergence with the price indicates an end to the current trend, especially if the MACD is at extreme high or low values. When
the MACD line crosses above the signal line a buy signal is generated. When the MACD crosses below the signal line a sell signal is generated. To confirm the signal, the MACD should be above zero for a buy, and below zero for a
sell.

optional arguments:
  --fast N_FAST      The short period. (default: 12)
  --slow N_SLOW      The long period. (default: 26)
  --signal N_SIGNAL  The signal period. (default: 9)


Examples:
- Analyze the MACD for a currency pair with default settings: forex/load <PAIR>/ta/macd
- Analyze the MACD for a currency pair with a custom fast period: forex/load <PAIR>/ta/macd --fast 10
- Analyze the MACD for a currency pair with a custom slow period: forex/load <PAIR>/ta/macd --slow 30
- Analyze the MACD for a currency pair with a custom signal period: forex/load <PAIR>/ta/macd --signal 8
- Analyze the MACD for a currency pair with custom fast and slow periods: forex/load <PAIR>/ta/macd --fast 10 --slow 30
- Analyze the MACD for a currency pair with custom fast and signal periods: forex/load <PAIR>/ta/macd --fast 10 --signal 8
- Analyze the MACD for a currency pair with custom slow and signal periods: forex/load <PAIR>/ta/macd --slow 30 --signal 8
- Analyze the MACD for a currency pair with custom fast, slow, and signal periods: forex/load <PAIR>/ta/macd --fast 10 --slow 30 --signal 8