UNPKG

shrimpy-node

Version:
14 lines (12 loc) 273 B
import { Decimal } from 'decimal.js'; export interface ICandlestick { open: Decimal; high: Decimal; low: Decimal; close: Decimal; volume: Decimal; quoteVolume: number; btcVolume: number; usdVolume: number; time: Date; }