OnixS ICE iMpact Multicast Price Feed Handler C++ library  8.15.1
API documentation
SpecialField.h
Go to the documentation of this file.
1 /**
2  * \file
3  * \brief Declare `OnixS::ICE::iMpact::MarketData::SpecialField` message structure
4  */
5 /*
6  * Copyright (c) Onix Solutions Limited. All rights reserved.
7  *
8  * This software owned by Onix Solutions Limited and is protected by copyright law
9  * and international copyright treaties.
10  *
11  * Access to and use of the software is governed by the terms of the applicable ONIXS Software
12  * Services Agreement (the Agreement) and Customer end user license agreements granting
13  * a non-assignable, non-transferable and non-exclusive license to use the software
14  * for it's own data processing purposes under the terms defined in the Agreement.
15  *
16  * Except as otherwise granted within the terms of the Agreement, copying or reproduction of any part
17  * of this source code or associated reference material to any other location for further reproduction
18  * or redistribution, and any amendments to this copyright notice, are expressly prohibited.
19  *
20  * Any reproduction or redistribution for sale or hiring of the Software not in accordance with
21  * the terms of the Agreement is a violation of copyright law.
22  */
23 
24 #pragma once
25 
26 #include "../Export.h"
27 #include "../Types.h"
28 #include "../Optional.h"
29 
30 #include <iosfwd>
31 #include <string>
32 
33 namespace OnixS { namespace ICE { namespace iMpact { namespace MarketData {
34 
35 /// This class represents the Special Field Message.
36 struct ONIXS_ICEMDH_EXPORT SpecialField
37 {
38  /// Message type constant
39  enum { messageType = 'b' };
40 
41  /// This field is equivalent to Eris Futures Price. AltPriceDenominator
42  /// for the market should be applied to get the real alt price.
44 
45  /// This field is equivalent to High Eris Futures Price.
46  /// AltPriceDenominator for the market should be applied to get the real
47  /// alt price.
49 
50  /// This field is equivalent to Low Eris Futures Price.
51  /// AltPriceDenominator for the market should be applied to get the real
52  /// alt price.
54 
55  /// This field is equivalent to Volume-weighted Average Eris Futures
56  /// Price. AltPriceDenominator for the market should be applied to get the
57  /// real alt price.
59 
60  /// This field is equivalent to Last Trade Eris Futures Price.
61  /// AltPriceDenominator for the market should be applied to get the real
62  /// alt price.
64 
65  /// This field indicated if Order is AON order. This is only sent on AON
66  /// enabled market.
68 
69  /// The sum of all daily distributions. Daily Distribution on a given day
70  /// is equal to the latest UKXCD value (published the business day prior)
71  /// subtracted from the prior value of UKXCD. Daily Distributions (t) =
72  /// Distribution Index (t) - Distribution Index (t-1) NumDecimals will be
73  /// 2.
75 
76  /// The sum of all daily funding values. Daily Funding is calculated on a
77  /// given day using the following formula: Daily Funding(t) = Index Close
78  /// (t-1) * FundingRate (t-1) * (Funding Days (t) / Annualization Factor)
79  /// NumDecimals will be 6.
81 
82  /// The number of periods used to annualize a return.
84 
85  /// This is a weighting factor determined for each expiry calculated daily
86  /// using the following formula: TRF Days to Maturity(t) = [expiry date +
87  /// 2 Settlement days] - [ t + 2 Settlement days]
89 
90  /// Default constructor.
91  SpecialField();
92 
93  /// Initialize from raw message data.
94  SpecialField(const char* data, size_t dataSize);
95 
96  /// Deserialize from raw data.
97  void deserialize(const char* data, size_t dataSize);
98 
99  /// Reset all fields to default values.
100  void reset();
101 
102  /// Returns string representation.
103  std::string toString() const;
104 };
105 
106 /// Make it printable using C++ I/O streams.
107 ONIXS_ICEMDH_EXPORT std::ostream& operator<<(std::ostream&, const SpecialField&);
108 
109 }}}} // namespace MarketData, iMpact, ICE, OnixS
std::ostream & operator<<(std::ostream &, const Error &)
Make it printable to formatted C++ I/O streams.
This class represents the Special Field Message.
Definition: SpecialField.h:36
Optional< int > annualizationFactor
The number of periods used to annualize a return.
Definition: SpecialField.h:83