Tutorials
Tutorials copied to clipboard
Review/Improve Introduction to Financial Python Tutorial
trafficstars
- This tutorial should use QuantConnect data.
In Pandas-Resampling and DataFrame,
monthly_return = aapl.resample('M').agg(lambda x: x[-1]/x[1] - 1)
should read
monthly_return = aapl.resample('M').agg(lambda x: x[-1]/x[0] - 1)