UNPKG

@stoqey/ibkr

Version:

NodeJS Interactive Brokers wrapper & utilities using @stoqey/ib

6 lines (5 loc) 383 B
import { WhatToShow } from '@stoqey/ib'; import { MarketData } from '../interfaces'; import { GetHistoricalData } from '../utils/instrument.utils'; export declare const getHistoricalData: (opt: GetHistoricalData) => Promise<MarketData[]>; export declare function getSecondsHistoricalDataFromIb(symbol: string | Object, dayDate: Date, whatToShow?: WhatToShow): Promise<MarketData[]>;