I have some stock data based on daily close values. I need to be able to insert these values into a python list and get a median for the last 30 closes. Is there a python library that does this?
Thank you~ Yueer
|
I have some stock data based on daily close values. I need to be able to insert these values into a python list and get a median for the last 30 closes. Is there a python library that does this? Thank you~ Yueer | |||||||||
feedback
|
|
Have you considered pandas? It is based on Basically it was designed for financial analysis in python. | |||||
feedback
|
|
In pure Python, having your data in a Python list
(This assumes Using the NumPy package, you could use
| ||||
|
feedback
|
|
isn't the median just the middle value in a sorted range? so, assuming your list is
Now you just need to get the off-by-one errors found and fixed and also handle the case of let us try that here a bit:
| |||||
feedback
|
|
Yes there is: | |||
|
feedback
|