peerchemist / finta

Common financial technical indicators implemented in Pandas.
GNU Lesser General Public License v3.0
2.13k stars 688 forks source link

SSMA and SMMA are the same function #136

Open xxxxyyyy80008 opened 2 years ago

xxxxyyyy80008 commented 2 years ago

SSMA and SMMA are the same function

both SSMA and SMMA are the smoothed simple moving average that first run the EMA on input prices, then run the SMA on the EMA smoothed data.

I think SMMA can be removed and keep SSMA.