@master-chief/alpaca-ts
Version:
A TypeScript Node.js library for the https://alpaca.markets REST API and WebSocket streams.
16 lines (14 loc) • 416 B
text/typescript
import type { Bar } from "./Bar.js";
import type { Quote } from "./Quote.js";
import type { Trade } from "./Trade.js";
/**
* The Snapshot API for one ticker provides the latest trade, latest quote, minute bar daily bar and previous daily bar data for a given ticker symbol.
*
*/
export type Snapshot = {
latestTrade?: Trade;
latestQuote?: Quote;
minuteBar?: Bar;
dailyBar?: Bar;
prevDailyBar?: Bar;
};