NicBT
Results
2
issues of
NicBT
when you intend to drop the IPO day data with `data = data.drop(0, axis=0)`, you're actually dropping the most recent data, not the oldest. Should instead be `data = data.drop(data.shape[0]...
Hi Yacoubb, Just wanted to give you a heads up that it doesn't appear your code accounts for stocks splits at all. You probably didnt encounter this since MSFT hasnt...