Candlestick Patterns

Hikkake

Introduction

Create a new Hikkake candlestick pattern to indicate the pattern's presence.

To view the implementation of this candlestick pattern, see the LEAN GitHub repository.

Using Hikkake Indicator

To create an automatic indicators for Hikkake, call the Hikkake helper method from the QCAlgorithm class. The Hikkake method creates a Hikkake object, hooks it up for automatic updates, and returns it so you can used it in your algorithm. In most cases, you should call the helper method in the Initializeinitialize method.

public class HikkakeAlgorithm : QCAlgorithm
{
    private Symbol _symbol;
    private Hikkake _hikkake;

    public override void Initialize()
    {
        _symbol = AddEquity("SPY", Resolution.Daily).Symbol;
        _hikkake = CandlestickPatterns.Hikkake(_symbol);
    }

    public override void OnData(Slice data)
    {
        if (_hikkake.IsReady)
        {
            // The current value of _hikkake is represented by itself (_hikkake)
            // or _hikkake.Current.Value
            Plot("Hikkake", "hikkake", _hikkake);
            
        }
    }
}
class HikkakeAlgorithm(QCAlgorithm):
    def Initialize(self) -> None:
        self._symbol = self.AddEquity("SPY", Resolution.Daily).Symbol
        self.hikkake = self.CandlestickPatterns.Hikkake(self.symbol)

    def on_data(self, slice: Slice) -> None:
        if self.hikkake.IsReady:
            # The current value of self.hikkake is represented by self.hikkake.Current.Value
            self.plot("Hikkake", "hikkake", self.hikkake.Current.Value)
            

The following reference table describes the Hikkake method:

Hikkake()1/1

            Hikkake QuantConnect.Algorithm.CandlestickPatterns.Hikkake (
    Symbol                                symbol,
    *Nullable<Decimal>              resolution,
    *Func<IBaseData, IBaseDataBar>  selector
   )
        

Creates a new Hikkake pattern indicator. The indicator will be automatically updated on the given resolution.

If you don't provide a resolution, it defaults to the security resolution. If you provide a resolution, it must be greater than or equal to the resolution of the security. For instance, if you subscribe to hourly data for a security, you should update its indicator with data that spans 1 hour or longer.

For more information about the selector argument, see Alternative Price Fields.

For more information about plotting indicators, see Plotting Indicators.

You can manually create a Hikkake indicator, so it doesn't automatically update. Manual indicators let you update their values with any data you choose.

Updating your indicator manually enables you to control when the indicator is updated and what data you use to update it. To manually update the indicator, call the Updateupdate method with a TradeBar. The indicator will only be ready after you prime it with enough data.

public class HikkakeAlgorithm : QCAlgorithm
{
    private Symbol _symbol;
    private Hikkake _hikkake;

    public override void Initialize()
    {
        _symbol = AddEquity("SPY", Resolution.Daily).Symbol;
        _hikkake = new Hikkake();
    }

    public override void OnData(Slice data)
    {
        if (data.Bars.TryGetValue(_symbol, out var bar))
        {      
            _hikkake.Update(bar);
        }
   
        if (_hikkake.IsReady)
        {
            // The current value of _hikkake is represented by itself (_hikkake)
            // or _hikkake.Current.Value
            Plot("Hikkake", "hikkake", _hikkake);
            
        }
    }
}
class HikkakeAlgorithm(QCAlgorithm):
    def Initialize(self) -> None:
        self._symbol = self.AddEquity("SPY", Resolution.Daily).Symbol
        self.hikkake = Hikkake()

    def on_data(self, slice: Slice) -> None:
        bar = slice.Bars.get(self.symbol)
        if bar:
            self.hikkake.Update(bar)
        if self.hikkake.IsReady:
            # The current value of self.hikkake is represented by self.hikkake.Current.Value
            self.plot("Hikkake", "hikkake", self.hikkake.Current.Value)
            

To register a manual indicator for automatic updates with the security data, call the RegisterIndicator method.

public class HikkakeAlgorithm : QCAlgorithm
{
    private Symbol _symbol;
    private Hikkake _hikkake;

    public override void Initialize()
    {
        _symbol = AddEquity("SPY", Resolution.Daily).Symbol;
        _hikkake = new Hikkake();
        RegisterIndicator(_symbol, _hikkake, Resolution.Daily);
    }

    public override void OnData(Slice data)
    {
        if (_hikkake.IsReady)
        {
            // The current value of _hikkake is represented by itself (_hikkake)
            // or _hikkake.Current.Value
            Plot("Hikkake", "hikkake", _hikkake);
            
        }
    }
}
class HikkakeAlgorithm(QCAlgorithm):
    def Initialize(self) -> None:
        self._symbol = self.AddEquity("SPY", Resolution.Daily).Symbol
        self.hikkake = Hikkake()
        self.RegisterIndicator(self.symbol, self.hikkake, Resolution.Daily)

    def on_data(self, slice: Slice) -> None:
        if self.hikkake.IsReady:
            # The current value of self.hikkake is represented by self.hikkake.Current.Value
            self.plot("Hikkake", "hikkake", self.hikkake.Current.Value)
            

The following reference table describes the Hikkake constructor:

Hikkake()1/2

            Hikkake QuantConnect.Indicators.CandlestickPatterns.Hikkake (
    string  name
   )
        

Initializes a new instance of the Hikkake class using the specified name.

Hikkake()2/2

            Hikkake QuantConnect.Indicators.CandlestickPatterns.Hikkake (
    
   )
        

Initializes a new instance of the Hikkake class.

You can also see our Videos. You can also get in touch with us via Discord.

Did you find this page helpful?

Contribute to the documentation: