fme-quotes-oanda
Version:
This takes the oanda interface and streams quotes using the fme-quote format
20 lines (19 loc) • 444 B
TypeScript
export declare class OandaQuote {
instrument: string;
time: string;
bid: number;
ask: number;
}
export declare class OandaInstrument {
instrument: string;
displayName: string;
pip: string;
maxTradeUnits: number;
precision: string;
maxTrailingStop: string;
minTrailingStop: string;
marginRate: string;
halted: boolean;
interestRage: string;
decimalPoints: number;
}