BetaTrader
A HFT Eco-System
Loading...
Searching...
No Matches
LogonRequest.h
Go to the documentation of this file.
1
6#pragma once
7
8#include "common_fix/Types.h"
9#include <chrono>
10
11namespace fix
12{
13
21{
23 uint32_t heartBtInt;
24
27
30
31 // Other fields like EncryptMethod(98), RawData(96), etc., can be added here if needed.
32};
33
34} // namespace fix
Defines type aliases for FIX protocol fields.
Definition ExecutionReport.h:6
uint32_t CompID
Type alias for a component ID (e.g., SenderCompID, TargetCompID).
Definition Types.h:16
Represents a parsed FIX Logon (35=A) message.
Definition LogonRequest.h:21
fix::CompID senderCompID
Sender's component ID (SenderCompID, FIX Tag 49).
Definition LogonRequest.h:26
fix::CompID targetCompID
Target's component ID (TargetCompID, FIX Tag 56).
Definition LogonRequest.h:29
uint32_t heartBtInt
Heartbeat Interval in seconds (HeartBtInt, FIX Tag 108).
Definition LogonRequest.h:23