@master-chief/alpaca-ts
Version:
A TypeScript Node.js library for the https://alpaca.markets REST API and WebSocket streams.
15 lines (13 loc) • 328 B
text/typescript
import type { Trade } from "./Trade.js";
/**
* A model representing the result of hitting the Latest Trade api.
*
* Represents a single Trade that should be the latest trade data for a given ticker symbol
*/
export type LatestTradeResponse = {
trade?: Trade;
/**
* Symbol that was queried
*/
symbol: string;
};