An array of zigzag points to analyse.
An array of identified harmonic patterns.
// Z-Score configuration for peak detection algorithms
const zScoreConfig: IZScoreConfig = {
lag: 5, // Controls smoothing and adaptability
threshold: 2, // Number of standard deviations to classify a signal
influence: 0.3 // How strongly signals affect future calculations (0-1)
};
// Assuming 'candles' is an array of ICandle objects representing the price data
// Generate ZigZag points from candlestick data
const zigzags: IZigZag[] = ZigZags.create(candles, zScoreConfig);
// Find harmonic patterns from the generated ZigZag points
const harmonics: IHarmonic[] = Harmonics.findPatterns(zigzags);
// 'harmonics' now contains an array of identified harmonic patterns
console.log(harmonics); // Outputs the identified harmonic patterns
Generated using TypeDoc
Identifies harmonic patterns from an array of zigzag points.