OnixS C++ FMX UST BIMP Market Data Handler 1.2.0
API documentation
Loading...
Searching...
No Matches
OrderBook Class Referenceabstract

Public Member Functions

 OrderBook ()
virtual ~OrderBook ()
InstrumentId instrumentId () const
bool empty () const ONIXS_FMXUST_BIMP_NOTHROW
bool bestAsk (Price &price, Quantity &quantity) const
bool bestBid (Price &price, Quantity &quantity) const
std::string toString () const
void toString (std::string &) const
std::string toShortString () const
void toShortString (std::string &) const
std::string toFormattedString () const
void toFormattedString (std::string &) const
const PriceLevelsasks () const
const PriceLevelsbids () const
UInt64 lastMessageSeqNumApplied () const

Detailed Description

Order Book. A set of bid prices and ask prices for the given security (bids are descending and asks are ascending). The quantity is provided at each price level.

Definition at line 185 of file OrderBook.h.

Constructor & Destructor Documentation

◆ OrderBook()

OrderBook ( )

◆ ~OrderBook()

virtual ~OrderBook ( )
inlinevirtual

Destruction interface.

Definition at line 192 of file OrderBook.h.

Member Function Documentation

◆ asks()

const PriceLevels & asks ( ) const
inline

Returns a set of descending bid prices for the given security.

Definition at line 308 of file OrderBook.h.

◆ bestAsk()

bool bestAsk ( Price & price,
Quantity & quantity ) const
inline

Definition at line 318 of file OrderBook.h.

◆ bestBid()

bool bestBid ( Price & price,
Quantity & quantity ) const
inline

Definition at line 323 of file OrderBook.h.

◆ bids()

const PriceLevels & bids ( ) const
inline

Returns a set of ascending ask prices for the given security.

Definition at line 313 of file OrderBook.h.

◆ empty()

bool empty ( ) const
inline

Indicates whether book has no bids & asks.

Definition at line 333 of file OrderBook.h.

◆ instrumentId()

InstrumentId instrumentId ( ) const
inline

Instrument Id.

Definition at line 328 of file OrderBook.h.

◆ lastMessageSeqNumApplied()

UInt64 lastMessageSeqNumApplied ( ) const
inline

Returns Last Message Seq Num Applied to the Book.

Definition at line 339 of file OrderBook.h.

◆ toFormattedString() [1/2]

std::string toFormattedString ( ) const

Returns formatted presentation of the book.

◆ toFormattedString() [2/2]

void toFormattedString ( std::string & ) const

Appends Formatted presentation of the book.

◆ toShortString() [1/2]

std::string toShortString ( ) const

Returns brief book info.

◆ toShortString() [2/2]

void toShortString ( std::string & ) const

Appends brief book info to the string.

◆ toString() [1/2]

std::string toString ( ) const

String presentation of the book.

◆ toString() [2/2]

void toString ( std::string & ) const

String presentation of the book.