parent_command:crypto/ta
usage: sma [-l N_LENGTH] [-o N_OFFSET]

Moving Averages are used to smooth the data in an array to help eliminate noise and identify trends. The Simple Moving Average is literally the simplest form of a moving average. Each output value is the average of the previous n
values. In a Simple Moving Average, each value in the time period carries equal weight, and values outside of the time period are not included in the average. This makes it less responsive to recent changes in the data, which can
be useful for filtering out those changes.

optional arguments:
  -l N_LENGTH, --length N_LENGTH
                        Window lengths. Multiple values indicated as comma separated values. (default: [20, 50])
  -o N_OFFSET, --offset N_OFFSET
                        offset (default: 0)


Examples:
- To calculate Simple Moving Averages for a specific crypto coin with default window lengths: crypto/load <COIN>/ta/sma
- To calculate Simple Moving Averages for a specific crypto coin with custom window lengths: crypto/load <COIN>/ta/sma -l 10,30,60
- To calculate Simple Moving Averages for a specific crypto coin with a custom offset: crypto/load <COIN>/ta/sma -o 5
- To calculate Simple Moving Averages for a specific crypto coin with custom window lengths and a custom offset: crypto/load <COIN>/ta/sma -l 10,30,60 -o 5