candlestick icon indicating copy to clipboard operation
candlestick copied to clipboard

Cannot chain the patterns

Open vitaly-t opened this issue 7 years ago • 1 comments

The essential value of pattern recognition is in constructing a chain of patterns from an array of candles, i.e. taking an array of candles, and producing an array of [pattern1, pattern2, pattern3,...], so it is possible to use such data to evaluate data predicted by the pattern versus the actual data, which in turn provides evaluation of patterns accuracy/reliance within any given data set.

Currently, the library does not let you construct such pattern chain at all.

So this is a proposed improvement :wink:

vitaly-t avatar Nov 01 '18 06:11 vitaly-t

Is this solved by "quantifying" the candles (from object with just OHLC to trying to label them)?

isHammer(candlestick)
isInvertedHammer(candlestick)
isBullishHammer(candlestick)
isBearishHammer(candlestick)
isBullishInvertedHammer(candlestick)
isBearishInvertedHammer(candlestick)

Can't you call these functions on each candle to determine what it is?

brandonros avatar Jun 16 '22 22:06 brandonros