@reactivemarkets/switchboard-sdk
Version:
SDK for the Reactive Markets Switchboard
31 lines (30 loc) • 592 B
TypeScript
import { SecurityType } from "@reactivemarkets/switchboard-api";
/**
* A market represents a tuple of instrument symbol and venue.
*/
export interface IMarket {
/**
* Instrument symbol.
*
* @readonly
*/
readonly symbol: string;
/**
* Security Type. Defaults to SpotFwd.
*
* @readonly
*/
readonly securityType?: SecurityType;
/**
* Tenor symbol. Defaults to SP.
*
* @readonly
*/
readonly tenor?: string;
/**
* Exchange or venue symbol.
*
* @readonly
*/
readonly venue: string;
}