Interface ISignalsConfig

Configuration object used for generating signals, particularly in the context of peak detection algorithms.

interface ISignalsConfig {
    config: IZScoreConfig;
    values: number[];
}

Properties

Properties

Configuration parameters for the Z-Score algorithm.

values: number[]

An array of numerical values (e.g., closing prices of candles) to be analysed.

Generated using TypeDoc