Missing Default Imports
Closed this issue · 1 comments
DerekMelchin commented
Expected Behavior
The C# default imports include the following:
using QuantConnect.Commands;
using QuantConnect.Data.Shortable;
using QuantConnect.Securities.IndexOption;
using Calendar = QuantConnect.Data.Consolidators.Calendar;
The Python default imports include the following:
from QuantConnect.Securities.IndexOption import *
from QuantConnect.Indicators.CandlestickPatterns import *
Actual Behavior
Not included
Potential Solution
N/A
Reproducing the Problem
N/A
System Information
N/A
Checklist
- I have completely filled out this template
- I have confirmed that this issue exists on the current
master
branch - I have confirmed that this is not a duplicate issue by searching issues
- I have provided detailed steps to reproduce the issue
DerekMelchin commented
We need to be
using QuantConnect.Data.Shortable;
to write
security.SetShortableProvider(new InteractiveBrokersShortableProvider());