UNPKG

@reactivemarkets/switchboard-sdk

Version:
31 lines (30 loc) 592 B
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; }