OnixS C++ Cboe CFE Multicast PITCH Market Data Handler  1.12.1
API documentation
EndOfDaySummary.h
Go to the documentation of this file.
1 /*
2 * Copyright Onix Solutions Limited [OnixS]. All rights reserved.
3 *
4 * This software owned by Onix Solutions Limited [OnixS] and is protected by copyright law
5 * and international copyright treaties.
6 *
7 * Access to and use of the software is governed by the terms of the applicable ONIXS Software
8 * Services Agreement (the Agreement) and Customer end user license agreements granting
9 * a non-assignable, non-transferable and non-exclusive license to use the software
10 * for it's own data processing purposes under the terms defined in the Agreement.
11 *
12 * Except as otherwise granted within the terms of the Agreement, copying or reproduction of any part
13 * of this source code or associated reference material to any other location for further reproduction
14 * or redistribution, and any amendments to this copyright notice, are expressly prohibited.
15 *
16 * Any reproduction or redistribution for sale or hiring of the Software not in accordance with
17 * the terms of the Agreement is a violation of copyright law.
18 */
19 
20 #pragma once
21 
22 #include <vector>
23 
28 
29 
30 namespace OnixS {
31 namespace CboeCFE {
32 namespace MarketData {
33 namespace Pitch {
34 
35  /// The End of Day Summary is sent out right before the close of a symbol.
37  {
38  /// Nanosecond offset from last unit timestamp.
41  {
42  return ordinary<Binary4>(2);
43  }
44 
45  /// Symbol right padded with spaces.
46  StrRef symbol() const
48  {
49  return fixedStr<6>(6);
50  }
51 
52  /// Trade Date for the settlement.
55  {
56  return ordinary<BinaryDate>(12);
57  }
58 
59  /// Prior Trade Date Open Interest for this symbol.
62  {
63  return ordinary<Binary4>(16);
64  }
65 
66  /// Highest Price for the day (valid only if Total Volume more than 0).
69  {
70  return ordinary<BinaryPrice>(20);
71  }
72 
73  /// Lowest Price for the day (valid only if Total Volume more than 0).
76  {
77  return ordinary<BinaryPrice>(28);
78  }
79 
80  /// Opening Price for the day (valid only if Total Volume more than 0).
83  {
84  return ordinary<BinaryPrice>(36);
85  }
86 
87  /// Closing Price for the day (valid only if Total Volume more than 0).
90  {
91  return ordinary<BinaryPrice>(44);
92  }
93 
94  /// Total number of contracts traded for the day, including block and ECRP trades.
97  {
98  return ordinary<Binary4>(52);
99  }
100 
101  /// Total number of block contracts traded for the day.
104  {
105  return ordinary<Binary4>(56);
106  }
107 
108  /// Total number of contracts traded for the day.
111  {
112  return ordinary<Binary4>(60);
113  }
114 
115  /// Flags.
118  {
119  return ordinary<Binary1>(64);
120  }
121 
122  /// Total message size.
124 
125  /// Check the given size.
126  static void validateSize(MessageSize size)
127  {
128  if (ONIXS_BATS_PITCH_CHECK_EXPECT((size < messageSize_), false))
129  throwIncorrectSize("EndOfDaySummary", size, messageSize_);
130  }
131 
132  /// Initializes instance over given memory block.
133  EndOfDaySummaryMsg(const void* data, MessageSize size)
135  : BinaryMessage(data, size)
136  {
137  }
138  };
139 
140  /// Serializes object into string.
141  ONIXS_CBOECFE_PITCH_API void toStr(std::string&, const EndOfDaySummaryMsg&);
142 
143  /// Serializes object into string.
144  inline std::string toStr(const EndOfDaySummaryMsg& msg)
145  {
146  std::string str;
147  toStr(str, msg);
148  return str;
149  }
150 
151 }
152 }
153 }
154 }
Binary4 eCRPVolume() const ONIXS_BATS_PITCH_NOTHROW
Total number of contracts traded for the day.
BinaryPrice openPrice() const ONIXS_BATS_PITCH_NOTHROW
Opening Price for the day (valid only if Total Volume more than 0).
ONIXS_CBOECFE_PITCH_API ONIXS_BATS_PITCH_COLDPATH ONIXS_BATS_PITCH_NORETURN void throwIncorrectSize(const std::string &messageName, MessageSize receivedSize, MessageSize expectedSize)
EndOfDaySummaryMsg(const void *data, MessageSize size) ONIXS_BATS_PITCH_NOTHROW
Initializes instance over given memory block.
#define ONIXS_BATS_PITCH_CONST_OR_CONSTEXPR
Definition: Compiler.h:110
Binary1 summaryFlags() const ONIXS_BATS_PITCH_NOTHROW
Flags.
Binary4 blockVolume() const ONIXS_BATS_PITCH_NOTHROW
Total number of block contracts traded for the day.
Provides efficient way of accessing text-based FIX field values.
Definition: String.h:45
StrRef symbol() const ONIXS_BATS_PITCH_NOTHROW
Symbol right padded with spaces.
BinaryPrice lowPrice() const ONIXS_BATS_PITCH_NOTHROW
Lowest Price for the day (valid only if Total Volume more than 0).
Binary4 timeOffset() const ONIXS_BATS_PITCH_NOTHROW
Nanosecond offset from last unit timestamp.
Encapsulates services for manipulating little endian encoded messages.
BinaryMessage() ONIXS_BATS_PITCH_NOTHROW
Initializes blank instance referencing to nothing.
Binary2 MessageSize
Aliases message length type.
Definition: Defines.h:90
BinaryDate tradeDate() const ONIXS_BATS_PITCH_NOTHROW
Trade Date for the settlement.
BinaryPrice highPrice() const ONIXS_BATS_PITCH_NOTHROW
Highest Price for the day (valid only if Total Volume more than 0).
BinaryPrice closePrice() const ONIXS_BATS_PITCH_NOTHROW
Closing Price for the day (valid only if Total Volume more than 0).
static ONIXS_BATS_PITCH_CONST_OR_CONSTEXPR MessageSize messageSize_
Total message size.
#define ONIXS_BATS_PITCH_NOTHROW
Definition: Compiler.h:107
static void validateSize(MessageSize size)
Check the given size.
ONIXS_CBOECFE_PITCH_API void toStr(std::string &, SideIndicator::Enum)
Appends string presentation of object.
Binary4 openInterest() const ONIXS_BATS_PITCH_NOTHROW
Prior Trade Date Open Interest for this symbol.
The End of Day Summary is sent out right before the close of a symbol.
Binary4 totalVolume() const ONIXS_BATS_PITCH_NOTHROW
Total number of contracts traded for the day, including block and ECRP trades.