@stoqey/ib
Version:
Interactive Brokers TWS/IB Gateway API client library for Node.js (TS)
14 lines (13 loc) • 346 B
TypeScript
import SecType from "../data/enum/sec-type";
import { Contract } from "./contract";
/**
* Crypto contract.
*/
export declare class Crypto implements Contract {
symbol: string;
exchange?: string;
currency?: string;
constructor(symbol: string, exchange?: string, currency?: string);
secType: SecType;
}
export default Crypto;