@stoqey/ib
Version:
Interactive Brokers TWS/IB Gateway API client library for Node.js (TS)
13 lines (12 loc) • 341 B
TypeScript
/**
* A container for storing Soft Dollar Tier information.
*/
export interface SoftDollarTier {
/** The name of the Soft Dollar Tier. */
name?: string;
/** The value of the Soft Dollar Tier. */
value?: string;
/** The display name of the Soft Dollar Tier. */
displayName?: string;
}
export default SoftDollarTier;