UNPKG

trading-signals

Version:

Technical indicators to run technical analysis with JavaScript / TypeScript.

9 lines (8 loc) 252 B
export type GridConfig = { lower: number; upper: number; levels: number; spacing: 'arithmetic' | 'geometric'; tickSize?: number; }; export declare function getGrid({ levels, lower, spacing, tickSize, upper }: GridConfig): number[];