@master-chief/alpaca
Advanced tools
Comparing version 1.2.2 to 1.3.0
@@ -99,6 +99,8 @@ export interface AddToWatchList { | ||
side: 'buy' | 'sell' | ||
type: 'market' | 'limit' | 'stop' | 'stop_limit' | ||
type: 'market' | 'limit' | 'stop' | 'stop_limit' | 'trailing_stop' | ||
time_in_force: 'day' | 'gtc' | 'opg' | 'cls' | 'ioc' | 'fok' | ||
limit_price?: number | ||
stop_price?: number | ||
trail_price?: number | ||
trail_percent?: number | ||
extended_hours?: boolean | ||
@@ -105,0 +107,0 @@ client_order_id?: string |
{ | ||
"name": "@master-chief/alpaca", | ||
"version": "1.2.2", | ||
"version": "1.3.0", | ||
"description": "A TypeScript Node.js library for the https://alpaca.markets REST API and WebSocket streams.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -8,4 +8,4 @@ # alpaca | ||
A TypeScript Node.js library for the https://alpaca.markets REST API and | ||
WebSocket streams. | ||
a TypeScript Node.js library for the https://alpaca.markets REST API and | ||
WebSocket streams | ||
@@ -12,0 +12,0 @@ ## Contents |
@@ -82,6 +82,8 @@ export interface AddToWatchList { | ||
side: 'buy' | 'sell'; | ||
type: 'market' | 'limit' | 'stop' | 'stop_limit'; | ||
type: 'market' | 'limit' | 'stop' | 'stop_limit' | 'trailing_stop'; | ||
time_in_force: 'day' | 'gtc' | 'opg' | 'cls' | 'ioc' | 'fok'; | ||
limit_price?: number; | ||
stop_price?: number; | ||
trail_price?: number; | ||
trail_percent?: number; | ||
extended_hours?: boolean; | ||
@@ -88,0 +90,0 @@ client_order_id?: string; |
1617
53068
23