-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMerkelMain.cpp
282 lines (239 loc) · 8.63 KB
/
MerkelMain.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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
#include "MerkelMain.h"
#include <iostream>
#include <algorithm>
MerkelMain::MerkelMain()
{
}
void MerkelMain::init()
{
std::string command;
std::cout << "Advisorbot> Please enter a command, or help for a list of commands" << std::endl;
while (true)
{
std::cout << "Advisorbot> ";
std::getline(std::cin, command);
if (command.empty())
continue;
std::istringstream iss(command);
std::vector<std::string> tokens(std::istream_iterator<std::string>{iss}, std::istream_iterator<std::string>());
if (tokens.empty())
continue;
std::string cmd = tokens[0];
if (cmd == "help")
{
if (tokens.size() == 1)
{
printHelp();
}
else if (tokens.size() == 2)
{
printHelpCommand(tokens[1]);
}
else
{
std::cout << "Invalid command. Usage: help or help <cmd>" << std::endl;
}
}
else if (cmd == "prod")
{
listAvailableProducts();
}
else if (cmd == "min")
{
if (tokens.size() == 3)
{
findMinimum(tokens[1], tokens[2]);
}
else
{
std::cout << "Invalid command. Usage: min product bid/ask" << std::endl;
}
}
else if (cmd == "max")
{
if (tokens.size() == 3)
{
findMaximum(tokens[1], tokens[2]);
}
else
{
std::cout << "Invalid command. Usage: max product bid/ask" << std::endl;
}
}
else if (cmd == "avg")
{
if (tokens.size() == 4)
{
int timesteps = std::stoi(tokens[3]);
calculateAverage(tokens[1], tokens[2], timesteps);
}
else
{
std::cout << "Invalid command. Usage: avg product bid/ask timesteps" << std::endl;
}
}
else if (cmd == "predict")
{
if (tokens.size() == 3)
{
if (tokens[1] == "max")
{
predictMinMax(tokens[2], "bid", true);
}
else if (tokens[1] == "min")
{
predictMinMax(tokens[2], "ask", false);
}
else
{
std::cout << "Invalid command. Usage: predict max/min product bid/ask" << std::endl;
}
}
else
{
std::cout << "Invalid command. Usage: predict max/min product bid/ask" << std::endl;
}
}
else if (cmd == "time")
{
displayCurrentTime();
}
else if (cmd == "step")
{
goToNextTimeStep();
}
else if (cmd == "custom")
{
processCustomCommand();
}
else if (cmd == "optimize")
{
optimizeExchangeCode();
}
else
{
std::cout << "Invalid command. Type 'help' for a list of available commands." << std::endl;
}
}
}
void MerkelMain::printHelp()
{
std::cout << "Available commands:" << std::endl;
std::cout << " help : List all available commands" << std::endl;
std::cout << " help <cmd> : Output help for the specified command" << std::endl;
std::cout << " prod : List available products" << std::endl;
std::cout << " min <product> <bid/ask> : Find the minimum bid or ask for a product" << std::endl;
std::cout << " max <product> <bid/ask> : Find the maximum bid or ask for a product" << std::endl;
std::cout << " avg <product> <bid/ask> <timesteps> : Compute the average bid or ask for a product over a number of timesteps" << std::endl;
std::cout << " predict max <product> <bid/ask> : Predict the maximum bid or ask for a product in the next time step" << std::endl;
std::cout << " predict min <product> <bid/ask> : Predict the minimum bid or ask for a product in the next time step" << std::endl;
std::cout << " time : State the current time in the dataset" << std::endl;
std::cout << " step : Move to the next time step" << std::endl;
std::cout << " custom : Execute your own custom command" << std::endl;
std::cout << " optimize : Optimize the exchange code" << std::endl;
}
void MerkelMain::printHelpCommand(const std::string& command)
{
// Implement help command for each specific command
}
void MerkelMain::listAvailableProducts()
{
std::vector<std::string> products = orderBook.getKnownProducts();
std::cout << "Available products:" << std::endl;
for (const std::string& product : products)
{
std::cout << " " << product << std::endl;
}
}
void MerkelMain::findMinimum(const std::string& product, const std::string& type)
{
std::vector<OrderBookEntry> orders = orderBook.getOrders(OrderBookType::stringToOrderBookType(type), product, currentTime);
if (orders.empty())
{
std::cout << "No " << type << " entries found for " << product << " in the current time step." << std::endl;
return;
}
double minPrice = OrderBook::getLowPrice(orders);
std::cout << "The min " << type << " for " << product << " is " << minPrice << std::endl;
}
void MerkelMain::findMaximum(const std::string& product, const std::string& type)
{
std::vector<OrderBookEntry> orders = orderBook.getOrders(OrderBookType::stringToOrderBookType(type), product, currentTime);
if (orders.empty())
{
std::cout << "No " << type << " entries found for " << product << " in the current time step." << std::endl;
return;
}
double maxPrice = OrderBook::getHighPrice(orders);
std::cout << "The max " << type << " for " << product << " is " << maxPrice << std::endl;
}
void MerkelMain::calculateAverage(const std::string& product, const std::string& type, int timesteps)
{
std::vector<OrderBookEntry> orders;
std::string timestamp = currentTime;
for (int i = 0; i < timesteps; i++)
{
std::vector<OrderBookEntry> currentOrders = orderBook.getOrders(OrderBookType::stringToOrderBookType(type), product, timestamp);
if (!currentOrders.empty())
{
orders.insert(orders.end(), currentOrders.begin(), currentOrders.end());
}
timestamp = orderBook.getNextTime(timestamp);
}
if (orders.empty())
{
std::cout << "No " << type << " entries found for " << product << " over the specified number of time steps." << std::endl;
return;
}
double total = 0.0;
for (const OrderBookEntry& order : orders)
{
total += order.price;
}
double average = total / orders.size();
std::cout << "The average " << product << " " << type << " price over the last " << timesteps << " timesteps was " << average << std::endl;
}
void MerkelMain::predictMinMax(const std::string& product, const std::string& type, bool isMax)
void MerkelMain::predictMinMax(const std::string& product, const std::string& type, bool isMax)
{
std::vector<OrderBookEntry> currentOrders = orderBook.getOrders(OrderBookType::stringToOrderBookType(type), product, currentTime);
if (currentOrders.empty())
{
std::cout << "No " << type << " entries found for " << product << " in the current time step." << std::endl;
return;
}
double prediction = 0.0;
// Perform prediction using an appropriate algorithm
// For example, using moving average
double sum = 0.0;
int count = 0;
for (const OrderBookEntry& order : currentOrders)
{
sum += order.price;
count++;
}
if (count > 0)
{
double average = sum / count;
prediction = isMax ? average + 0.1 : average - 0.1;
}
std::string predictionType = isMax ? "max" : "min";
std::cout << "The " << predictionType << " " << type << " for " << product << " in the next time step might be " << prediction << std::endl;
}
void MerkelMain::displayCurrentTime()
{
std::cout << "Current time: " << currentTime << std::endl;
}
void MerkelMain::gotoNextTimeframe()
{
currentTime = orderBook.getNextTime(currentTime);
std::cout << "Now at " << currentTime << std::endl;
}
void MerkelMain::processCustomCommand()
{
// Implement your own custom command
}
void MerkelMain::optimizeExchangeCode()
{
// Implement optimizing the exchange code
}