UNPKG

@gabriel3615/ta_analysis

Version:

stock ta analysis

9 lines (8 loc) 359 B
import type { Strategy } from '../Backtester.js'; export interface SupplyDemandParams { minZoneWidthPercent?: number; allowFreshEntry?: boolean; requireTested?: boolean; coolDownBars?: number; } export declare function SupplyDemandRetestStrategy(symbol: string, timeframe: 'weekly' | 'daily' | '1hour', params?: SupplyDemandParams): Strategy;