python script to create/track stoic index

Quote from betterLate:

Hi all,

Is anyone aware of any open source python scripts to create/track a custom stock index?

Thanks,
Frank

sure here...

prices=[34.2,12.43,18.88]
sum(prices)/len(prices)
 
Back
Top