UNPKG

@thoshpathi/utils-smartapi

Version:

Extended utilities for Angel One's smartapi-javascript SDK, including custom methods and helpers for market data like candles, P&L, and more.

11 lines (9 loc) 297 B
declare class OHLCData { readonly open: number; readonly high: number; readonly low: number; readonly close: number; readonly date: Date; constructor(date: Date | string, open: number, high: number, low: number, close: number); } export { OHLCData, OHLCData as default };