@stoqey/ib
Version:
Interactive Brokers TWS/IB Gateway API client library for Node.js (TS)
15 lines (14 loc) • 373 B
TypeScript
/**
* The historical tick's description.
*
* Used when requesting historical tick data with whatToShow = MIDPOINT.
*/
export interface HistoricalTick {
/** The UNIX timestamp of the historical tick. */
time: number;
/** The historical tick price. */
price: number;
/** The historical tick size. */
size: number;
}
export default HistoricalTick;