UNPKG

@master-chief/alpaca-ts

Version:

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

21 lines (20 loc) 298 B
export type Clock = { /** * Current timestamp * */ timestamp?: string; /** * Whether or not the market is open * */ is_open?: boolean; /** * Next Market open timestamp */ next_open?: string; /** * Next market close timestamp */ next_close?: string; };