@stoqey/ib
Version:
Interactive Brokers TWS/IB Gateway API client library for Node.js (TS)
16 lines (15 loc) • 461 B
TypeScript
/**
* A WshEventData event.
*/
export declare class WshEventData {
conId: number;
fillWatchlist: boolean;
fillPortfolio: boolean;
fillCompetitors: boolean;
startDate: string;
endDate: string;
totalLimit: number;
constructor(conId: number, fillWatchlist?: boolean, fillPortfolio?: boolean, fillCompetitors?: boolean, startDate?: string, endDate?: string, totalLimit?: number);
filter: string;
}
export default WshEventData;