OnixS C++ B3 BOE Binary Order Entry 1.4.0
Users' manual and API documentation
Loading...
Searching...
No Matches
FIXP Session

A FIXP session is defined as a bi-directional stream of ordered messages between two parties within a continuous sequence number series. It is represented by the OnixS::B3::BOE::Session class. Each FIXP session is identified by a Session Version Identification (sessionVerId).

Constructing FIX Session

To create a FIXP session, use the OnixS::B3::BOE::Session class with the corresponding constructors:

Example

using namespace OnixS::B3::BOE;
SessionSettings settings;
settings.licenseStore("../../license")
.sessionId(100000000 /* "Value Received From B3" */)
.accessKey("Value Received From B3")
.enteringFirm(100 /* "Value Received From B3" */)
.tradingSystemName("Your Trading System Name Here");
Session session(settings, &sessionListener);
See also
Session Version Identification (sessionVerId)
Establishing Connection
Exchanging Messages
Message Sequence Numbers