OnixS C++ B3 BOE Binary Order Entry 1.3.0
API Documentation
Loading...
Searching...
No Matches
FIXP Session

Inner Contents

 Establishing Connection
 Exchanging Messages
 Message Sequence Numbers
 Session Version Identification (sessionVerId)

Detailed Description

An 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 OnixS::B3::BOE::Session class with the correspondent 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);