-
Notifications
You must be signed in to change notification settings - Fork 168
/
Copy pathFeatureSet.cpp
252 lines (218 loc) · 7.34 KB
/
FeatureSet.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
/************************************************************************
* Copyright(c) 2022, One Unified. All rights reserved. *
* email: [email protected] *
* *
* This file is provided as is WITHOUT ANY WARRANTY *
* without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* *
* This software may not be used nor distributed without proper license *
* agreement. *
* *
* See the file LICENSE.txt for redistribution information. *
************************************************************************/
/*
* File: FeatureSet.cpp
* Author: [email protected]
* Project: lib/TFIQFeed/Level2
* Created: May 11, 2022 15:24
*/
#include <TFIndicators/RunningStats.h>
#include "FeatureSet.hpp"
namespace ou { // One Unified
namespace tf { // TradeFrame
namespace iqfeed { // IQFeed
namespace l2 { // level 2 data
FeatureSet::FeatureSet()
: m_nLevels {}
{}
FeatureSet::~FeatureSet() {}
void FeatureSet::Set( size_t nLevels ) {
assert( 0 < nLevels );
assert( 3 <= nLevels ); // need at least 3 levels
assert( 0 == m_nLevels ); // one time set only
m_nLevels = nLevels;
m_vLevels.resize( m_nLevels + 1 ); // level 0 not used, levels numbered 1 - 10
m_vLevels[ 1 ].Set( 1, nullptr, &m_vLevels[ 2 ] );
for ( int ix = 2; ix < m_nLevels; ix++ ) {
m_vLevels[ ix ].Set( ix, &m_vLevels[ 1 ], &m_vLevels[ ix + 1 ] );
}
m_vLevels[ m_nLevels ].Set( m_nLevels, &m_vLevels[ 1 ], nullptr );
}
void FeatureSet::Set( const vSentinel_t& vSentinel ) { // comes after Set( levels )
assert( 0 < m_nLevels );
for ( vLevels_t::value_type& level: m_vLevels ) {
level.Set( vSentinel );
}
}
void FeatureSet::HandleBookChangesAsk( ou::tf::iqfeed::l2::EOp op, unsigned int ix, const ou::tf::Depth& depth ) {
if ( ( 0 == ix ) || ( m_nLevels < ix ) ) {
assert( 0 != ix );
assert( m_nLevels > ix );
}
else {
switch ( op ) {
case ou::tf::iqfeed::l2::EOp::Insert:
if ( m_nLevels > ix ) {
m_vLevels[ ix + 1 ].Ask_CopyFrom( m_vLevels[ ix ] );
}
m_vLevels[ ix ].Ask_Activate( true );
m_vLevels[ ix ].Ask_Quote( depth );
break;
case ou::tf::iqfeed::l2::EOp::Increase:
case ou::tf::iqfeed::l2::EOp::Decrease:
m_vLevels[ ix ].Ask_Quote( depth );
break;
case ou::tf::iqfeed::l2::EOp::Delete:
if ( m_nLevels > ix ) {
m_vLevels[ ix + 1 ].Ask_CopyTo( m_vLevels[ ix ] );
}
m_vLevels[ m_nLevels ].Ask_Activate( false );
break;
}
}
}
void FeatureSet::HandleBookChangesBid( ou::tf::iqfeed::l2::EOp op, unsigned int ix, const ou::tf::Depth& depth ) {
if ( ( 0 == ix ) || ( m_nLevels < ix ) ) {
assert( 0 != ix );
assert( m_nLevels > ix );
}
else {
switch ( op ) {
case ou::tf::iqfeed::l2::EOp::Insert:
if ( m_nLevels > ix ) {
m_vLevels[ ix + 1 ].Bid_CopyFrom( m_vLevels[ ix ] );
}
m_vLevels[ ix ].Bid_Activate( true );
m_vLevels[ ix ].Bid_Quote( depth );
break;
case ou::tf::iqfeed::l2::EOp::Increase:
case ou::tf::iqfeed::l2::EOp::Decrease:
m_vLevels[ ix ].Bid_Quote( depth );
break;
case ou::tf::iqfeed::l2::EOp::Delete:
if ( m_nLevels > ix ) {
m_vLevels[ ix + 1 ].Bid_CopyTo( m_vLevels[ ix ] );
}
m_vLevels[ m_nLevels ].Bid_Activate( false );
break;
}
}
}
// v7 Ask
void FeatureSet::Ask_IncLimit( unsigned int ix, const ou::tf::Depth& depth ) {
m_vLevels[ ix ].Ask_IncLimit( depth );
}
void FeatureSet::Ask_IncMarket( unsigned int ix, const ou::tf::Depth& depth ) {
m_vLevels[ ix ].Ask_IncMarket( depth );
}
void FeatureSet::Ask_IncCancel( unsigned int ix, const ou::tf::Depth& depth ) {
m_vLevels[ ix ].Ask_IncCancel( depth );
}
// v7 Bid
void FeatureSet::Bid_IncLimit( unsigned int ix, const ou::tf::Depth& depth ) {
m_vLevels[ ix ].Bid_IncLimit( depth );
}
void FeatureSet::Bid_IncMarket( unsigned int ix, const ou::tf::Depth& depth ) {
m_vLevels[ ix ].Bid_IncMarket( depth );
}
void FeatureSet::Bid_IncCancel( unsigned int ix, const ou::tf::Depth& depth ) {
m_vLevels[ ix ].Bid_IncCancel( depth );
}
void FeatureSet::ImbalanceSummary( ou::tf::linear::Stats& stats ) const {
double ix( 1.0 );
ou::tf::RunningStats rs;
for ( const vLevels_t::value_type& vt: m_vLevels ) {
//if ( vt.ask.bActive && vt.bid.bActive ) {
rs.Add( ix, vt.cross.v2.imbalanceAgg ); // not sure which of the two are most appropriate
//rs.Add( ix, vt.cross.v2.imbalanceLvl );
ix += 1.0;
//}
}
rs.CalcStats( stats );
}
const std::string FeatureSet::Header() {
bool bSeparator( false );
bool bSkipLevel0( true );
std::string header;
size_t level = 1;
for ( const vLevels_t::value_type& vt: m_vLevels ) {
if ( bSkipLevel0 ) bSkipLevel0 = false;
else {
if ( bSeparator ) header += ',';
else bSeparator = true;
header += vt.Header( level );
level++;
}
}
return header;
}
void FeatureSet::Changed( bool& bChanged ) {
for ( const vLevels_t::value_type& vt: m_vLevels ) {
vt.Changed( bChanged );
}
}
std::ostream& FeatureSet::operator<<( std::ostream& stream ) const {
bool bSeparator( false );
bool bSkipLevel0( true );
for ( const vLevels_t::value_type& vt: m_vLevels ) {
if ( bSkipLevel0 ) bSkipLevel0 = false;
else {
if ( bSeparator ) stream << ',';
else bSeparator = true;
stream << vt;
}
}
return stream;
}
std::ostream& operator<<( std::ostream& stream, const FeatureSet& fvs ) {
fvs.operator<<( stream );
return stream;
}
bool FeatureSet::IntegrityCheck() const {
bool bFine( true );
double bidPrice {}, askPrice {};
bool bidActive( false ), askActive( false );
enum ELevel { Zero, One, Remaining } level( Zero );
for ( const vLevels_t::value_type& vt: m_vLevels ) {
switch ( level ) {
case ELevel::Zero:
assert( vt.ask.v1.price == 0.0 );
assert( !vt.ask.bActive );
assert( vt.bid.v1.price == 0.0 );
assert( !vt.bid.bActive );
level = ELevel::One;
break;
case ELevel::One:
if ( vt.ask.bActive ) {
askActive = true;
askPrice = vt.ask.v1.price;
}
if ( vt.bid.bActive ) {
bidActive = true;
bidPrice = vt.bid.v1.price;
}
level = ELevel::Remaining;
break;
case ELevel::Remaining:
if ( vt.ask.bActive ) {
//assert( askActive ); // prior needs to be active, may need to deal with fill-in after delete
assert( askPrice < vt.ask.v1.price );
askPrice = vt.ask.v1.price;
askActive = true;
}
if ( vt.bid.bActive ) {
//assert( bidActive ); // prior needs to be active, may need to deal with fill-in after delete
assert( bidPrice > vt.bid.v1.price );
bidPrice = vt.bid.v1.price;
bidActive = true;
}
break;
}
}
return bFine;
}
} // namespace l2
} // namesapce iqfeed
} // namespace tf
} // namespace ou