Trading indicator's implementation in python
>>> from trindipy import sma
>>> prices = [25.25,25.50,25.00,24.90,26.80]
>>> sma = sma(data_feed=prices,time_period=5)
>>> sma
... 25.49
feel free to MR to repository :)
Trading indicator's implementation in python
>>> from trindipy import sma
>>> prices = [25.25,25.50,25.00,24.90,26.80]
>>> sma = sma(data_feed=prices,time_period=5)
>>> sma
... 25.49
feel free to MR to repository :)