UNPKG

@stoqey/ib

Version:

Interactive Brokers TWS/IB Gateway API client library for Node.js (TS)

12 lines (11 loc) 242 B
/** * Daily Profit&Loss information. */ export interface PnL { /** The daily PnL. */ dailyPnL?: number; /** The daily unrealized PnL. */ unrealizedPnL?: number; /** The daily realized PnL. */ realizedPnL?: number; }