Skip to content

Candlestick Patterns Missing from Default Imports #600

@DerekMelchin

Description

@DerekMelchin

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 master branch
  • 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
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions