API documentation
interface
FullInstrument
export interface FullInstrument {
id: number;
type: number;
symbol: string;
description: string;
exchange: string;
currencyId: number;
ccy1: number;
ccy2: number;
tickSize: number;
maturity: string;
factor: number;
strike: number;
putcall: number;
margin: number;
priceFormat: string;
// formula: string;
esma: string;
marginRequirement: number;
marginCall: number;
closeOut: number;
financing: number;
minimumOrderSize: number;
maximumOrderSize: number;
minimumStepSize: number;
expired: boolean;
// altId: AltId[];
// legs: any[]
parent: any;
isDeleted: boolean;
isPersistent: boolean;
bid: Bid;
ask: Ask;
trade: Trade;
bar: any;
}