@stoqey/ib
Version:
Interactive Brokers TWS/IB Gateway API client library for Node.js (TS)
15 lines (14 loc) • 415 B
TypeScript
import OrderAction from "./enum/order-action";
import { OrderType } from "./enum/orderType";
/**
* Represents a limit order.
*/
export declare class LimitOrder {
action: OrderAction;
lmtPrice: number;
totalQuantity: number;
transmit: boolean;
constructor(action: OrderAction, lmtPrice: number, totalQuantity: number, transmit?: boolean);
orderType: OrderType;
}
export default LimitOrder;