-
Notifications
You must be signed in to change notification settings - Fork 148
Open
Description
Expected Behavior
When we create a new project, the project contains
using QuantConnect.Indicators.CandlestickPatterns;
Actual Behavior
This statement isn't present
Potential Solution
Update the default imports
Reproducing the Problem
Create a new project
Add this code
public class GapSideBySideWhiteAlgorithm : QCAlgorithm
{
private Symbol _symbol;
private GapSideBySideWhite _gapsidebysidewhite;
public override void Initialize()
{
_symbol = AddEquity("SPY", Resolution.Daily).Symbol;
_gapsidebysidewhite = new GapSideBySideWhite();
}
}
Try to compile
System Information
QC Cloud
Checklist
- I have completely filled out this template
- I have confirmed that this issue exists on the current
masterbranch - I have confirmed that this is not a duplicate issue by searching issues
- I have provided detailed steps to reproduce the issue
Metadata
Metadata
Assignees
Labels
No labels