UNPKG

@stoqey/ib

Version:

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

11 lines (10 loc) 271 B
import { PnL } from "./pnl"; /** * Daily Profit&Loss information of a position. */ export interface PnLSingle extends PnL { /** Current size of the position. */ position?: number; /** The current market value of the position. */ marketValue?: number; }