Documentation
Documentation copied to clipboard
QuantConnect Wiki Style Documentation Behind QuantConnect
#### Expected Behavior Easy to find Docs and examples of Indicator Rolling Window. #### Actual Behavior We mentioned them at [Set Historical Values Window Size](https://www.quantconnect.com/docs/v2/writing-algorithms/indicators/key-concepts#06-Set-Historical-Values-Window-Size) and [Get Historical Values](https://www.quantconnect.com/docs/v2/writing-algorithms/indicators/key-concepts#10-Get-Historical-Values). ####...
#### Examples - Example 1: Update to have methods, and define min-max strike to working example of 0DTE options. - Example 2: Use the new universe filters to select instruments,...
#### Examples - FIX PEP8 Bugs / l.Can - Example comments on all code snippets in the document. - Example 1: Individual: Schedule monthly select of futopt contract to trade....
#### Examples - Example 1: Add call_spread future option, buy call_spread. ### Remember - Don't use variables that aren't defined. - Comment every line or few lines. - Include 40-100...
#### Examples - Example 1: Update Symbol-Changes section to do the roll in on_symbol_changed event handler. - Example 2: Add MicroGold and Gold, get contract multiplier from SPDB. Place 2...
#### Examples - Example 1: Simplest example of individual contract with open interest continuous contract mapping and extended market hours. ### Remember - Don't use variables that aren't defined. -...
#### Examples - Example 0: Expand P under heading "Create Universes" to describe the example below. - Example 1: Buy / roll underlying (same as Create Universes) without the OnData...
#### Examples - Example 1: Individual: Add contracts expiring this week. Loop through quote bars calc mid price. Use seeder. (10 lines) - Example 2: Universe: Filter contracts expiring this...
#### Expected Behavior ```python oi = self.history(OpenInterest, symbol, timedelta(1)) ``` We need to note that the minimum request must be 1 day because we get one data point per day....
#### Examples - Example 1: Covered call. Sell first expiry a call on AAPL and own the underlying. Using basic market orders. - Example 2: 0DTE example using SPY spread...