Tutorials icon indicating copy to clipboard operation
Tutorials copied to clipboard

Review/Improve Introduction to Financial Python Tutorial

Open AlexCatarino opened this issue 4 years ago • 0 comments
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)

AlexCatarino avatar Dec 08 '20 00:12 AlexCatarino