UNPKG

@master-chief/alpaca-ts

Version:

A TypeScript Node.js library for the https://alpaca.markets REST API and WebSocket streams.

22 lines (21 loc) 412 B
/** * Name or source of given news article */ export declare type MarketMoverAsset = { /** * Symbol of market moving asset */ symbol: string; /** * Percentage difference change for the day */ percent_change: number; /** * Difference in change for the day */ change: number; /** * Current price of market moving asset */ price: number; };