Skip to content

Commit

Permalink
ccxt.d.ts Order clientOrderId, timeInForce
Browse files Browse the repository at this point in the history
  • Loading branch information
kroitor committed Nov 17, 2020
1 parent 1d511ac commit 9951285
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ccxt.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,14 @@ declare module 'ccxt' {

export interface Order {
id: string;
clientOrderId: string;
datetime: string;
timestamp: number;
lastTradeTimestamp: number;
status: 'open' | 'closed' | 'canceled';
symbol: string;
type: string;
timeInForce?: string;
side: 'buy' | 'sell';
price: number;
average?: number;
Expand Down

0 comments on commit 9951285

Please sign in to comment.