You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The first embedded backtest was having a logic error on buying a covered call option instead of selling. The line self.MarketOrder(self.call, 1)
should be self.MarketOrder(self.call, -1)
The text was updated successfully, but these errors were encountered:
From community thread:
https://www.quantconnect.com/forum/discussion/12504/covered-call-tutorial-mistake-quantconnect-com-tutorials-applied-options-covered-call/p1
The first embedded backtest was having a logic error on buying a covered call option instead of selling. The line
self.MarketOrder(self.call, 1)
should be
self.MarketOrder(self.call, -1)
The text was updated successfully, but these errors were encountered: