trading-signals
Version:
Technical indicators to run technical analysis with JavaScript / TypeScript.
9 lines (8 loc) • 450 B
TypeScript
import type { HighLowCloseVolume } from '../../base/Candle.type.js';
import { TrendIndicatorSeries } from '../../base/Indicator.js';
export declare class PVT extends TrendIndicatorSeries<HighLowCloseVolume> {
#private;
getRequiredInputs(): number;
update(candle: HighLowCloseVolume, replace: boolean): number | null;
protected calculateSignalState(result: number | null | undefined): "BEARISH" | "BULLISH" | "SIDEWAYS" | "UNKNOWN";
}