OnixS BME SENAF Handler C++ library  2.2.0
API documentation
BidAskNewLevelInvolved.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 <OnixS/Senaf/MarketData/Export.h>
25 
26 #include <iosfwd>
27 #include <string>
28 #include <vector>
29 
30 namespace OnixS { namespace Senaf { namespace MarketData {
31 
32 /// Bid / Ask Opening New Level. Involved.
33 struct ONIXS_BME_SENAF_EXPORT BidAskNewLevelInvolved
34 {
35  /// Message code.
36  enum { code = 6 };
37 
38  /// Default constructor.
40 
41  /// Message Number.
42  unsigned int messageNumber;
43 
44  /// Market.
45  unsigned char market;
46 
47  /// Publication Time.
49 
50  /// Investment Decision.
51  unsigned int investmentDecision;
52 
53  /// Execution.
54  unsigned int execution;
55 
56  /// Liquidity Provision Activity.
58 
59  /// Instrument Type.
61 
62  /// Reference.
63  unsigned short reference;
64 
65  /// Level.
66  unsigned char level;
67 
68  /// Side.
70 
71  /// Price.
72  int price;
73 
74  /// Yield / Rate.
75  int yield;
76 
77  /// Volume.
78  unsigned int volume;
79 
80  /// Position Number.
81  unsigned int positionNumber;
82 
83  /// Member.
84  unsigned char member;
85 
86  /// Broker.
87  unsigned char broker;
88 
89  /// User.
90  unsigned char user;
91 
92  /// Label.
93  unsigned int label;
94 
95  /// Original Request Number.
96  unsigned int originalRequestNumber;
97 
98  /// Returns string representation.
99  std::string toString () const;
100 
101 private:
102  friend class MessageDeserializer;
103  BidAskNewLevelInvolved(const char* data, size_t dataSize);
104  void deserialize(const char* data, size_t dataSize);
105  void reset();
106 };
107 
108 ONIXS_BME_SENAF_EXPORT std::ostream& operator<<(std::ostream&, const BidAskNewLevelInvolved&);
109 
110 }}}
unsigned int investmentDecision
Investment Decision.
std::ostream & operator<<(std::ostream &, const Error &)
Make it printable to formatted C++ I/O streams.
unsigned int originalRequestNumber
Original Request Number.
InstrumentType::Enum instrumentType
Instrument Type.
Bid / Ask Opening New Level. Involved.
unsigned char liquidityProvisionActivity
Liquidity Provision Activity.