-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprelim.cpp
412 lines (354 loc) · 11.6 KB
/
prelim.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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
/* HOW TO RUN
1) Configure things in the Configuration class
2) Compile: g++ -o bot.exe bot.cpp
3) Run in loop: while true; do ./bot.exe; sleep 1; done
*/
/* C includes for networking things */
#include <stdlib.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <unistd.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <string.h>
/* C++ includes */
#include <string>
#include <iostream>
#include <stdexcept>
#include <algorithm>
#include <vector>
#include <sstream>
#include <map>
using namespace std;
/* The Configuration class is used to tell the bot how to connect
to the appropriate exchange. The `test_exchange_index` variable
only changes the Configuration when `test_mode` is set to `true`.
*/
class Configuration {
private:
/*
0 = prod-like
1 = slower
2 = empty
*/
static int const test_exchange_index = 0;
public:
std::string team_name;
std::string exchange_hostname;
int exchange_port;
/* replace REPLACEME with your team name! */
Configuration(bool test_mode) : team_name("liberalartseducation"){
exchange_port = 20000; /* Default text based port */
if(true == test_mode) {
exchange_hostname = "test-exch-" + team_name;
exchange_port += test_exchange_index;
} else {
exchange_hostname = "production";
}
}
};
/* Connection establishes a read/write connection to the exchange,
and facilitates communication with it */
class Connection {
private:
FILE * in;
FILE * out;
int socket_fd;
public:
Connection(Configuration configuration){
int sock = socket(AF_INET, SOCK_STREAM, 0);
if (sock < 0) {
throw std::runtime_error("Could not create socket");
}
std::string hostname = configuration.exchange_hostname;
hostent *record = gethostbyname(hostname.c_str());
if(!record) {
throw std::invalid_argument("Could not resolve host '" + hostname + "'");
}
in_addr *address = reinterpret_cast<in_addr *>(record->h_addr);
std::string ip_address = inet_ntoa(*address);
struct sockaddr_in server;
server.sin_addr.s_addr = inet_addr(ip_address.c_str());
server.sin_family = AF_INET;
server.sin_port = htons(configuration.exchange_port);
int res = connect(sock, ((struct sockaddr *) &server), sizeof(server));
if (res < 0) {
throw std::runtime_error("could not connect");
}
FILE *exchange_in = fdopen(sock, "r");
if (exchange_in == NULL){
throw std::runtime_error("could not open socket for writing");
}
FILE *exchange_out = fdopen(sock, "w");
if (exchange_out == NULL){
throw std::runtime_error("could not open socket for reading");
}
setlinebuf(exchange_in);
setlinebuf(exchange_out);
this->in = exchange_in;
this->out = exchange_out;
this->socket_fd = res;
}
/** Send a string to the server */
void send_to_exchange(std::string input) {
std::string line(input);
/* All messages must always be uppercase */
std::transform(line.begin(), line.end(), line.begin(), ::toupper);
int res = fprintf(this->out, "%s\n", line.c_str());
if (res < 0) {
throw std::runtime_error("error sending to exchange");
}
}
/** Read a line from the server, dropping the newline at the end */
std::string read_from_exchange()
{
/* We assume that no message from the exchange is longer
than 10,000 chars */
const size_t len = 10000;
char buf[len];
if(!fgets(buf, len, this->in)){
throw std::runtime_error("reading line from socket");
}
int read_length = strlen(buf);
std::string result(buf);
/* Chop off the newline */
result.resize(result.length() - 1);
return result;
}
};
/** Join a vector of strings together, with a separator in-between
each string. This is useful for space-separating things */
std::string join(std::string sep, std::vector<std::string> strs) {
std::ostringstream stream;
const int size = strs.size();
for(int i = 0; i < size; ++i) {
stream << strs[i];
if(i != (strs.size() - 1)) {
stream << sep;
}
}
return stream.str();
}
//returns index of element in a list
int getind(vector<string>& a, string elem) {
for(int i = 0; i < a.size(); i++) {
if(a[i] == elem) return i;
}
}
int getmed(vector<pair<int, int> >& a, int tot){
if(a.size() == 0) return 0;
int rsum = 0;
for(int i = 0; i < a.size(); i++){
if(rsum >= tot/2) {
return a[i].first;
}
rsum += a[i].second;
}
if(rsum >= tot/2) return a[a.size() - 1].first;
}
int getmean(vector<pair<int, int> >& a, int tot){
double rsum = 0.0;
double div = 1.0 * tot;
for(int i = 0; i < a.size(); i++){
rsum += a[i].first * (a[i].second/div);
}
return rsum;
}
int main(int argc, char *argv[])
{
ios_base::sync_with_stdio(false);
cin.tie(0);
vector<string> securids;
securids.push_back("BOND");
securids.push_back("VALBZ");
securids.push_back("VALE");
securids.push_back("GS");
securids.push_back("MS");
securids.push_back("WFC");
securids.push_back("XLF");
vector<pair<int, int> > lastids;
vector<double> lastFV;
vector<pair<int, int> >SMA;
vector<int> bookreads;
for(int i = 0; i < 7; i++){
lastids.push_back(make_pair(0, 0));
lastFV.push_back(0.0);
bookreads.push_back(0);
SMA.push_back(make_pair(0,0));
}
vector<int> amt;
amt.push_back(100);
amt.push_back(10);
amt.push_back(10);
amt.push_back(100);
amt.push_back(100);
amt.push_back(100);
amt.push_back(100);
// Be very careful with this boolean! It switches between test and prod
bool test_mode = true;
Configuration config(test_mode);
Connection conn(config);
map<string, double> fair_value_map;
fair_value_map["VALBZ"] = 0.0;
fair_value_map["VALE"] = 0.0;
fair_value_map["GS"] = 0.0;
fair_value_map["MS"] = 0.0;
fair_value_map["WFC"] = 0.0;
fair_value_map["XLF"] = 0.0;
map<string, double> real_fair_value_map;
real_fair_value_map["BOND"] = 1000;
std::vector<std::string> data;
data.push_back(std::string("HELLO"));
data.push_back(config.team_name);
/*
A common mistake people make is to conn.send_to_exchange() > 1
time for every conn.read_from_exchange() response.
Since many write messages generate marketdata, this will cause an
exponential explosion in pending messages. Please, don't do that!
*/
conn.send_to_exchange(join(" ", data));
string line = conn.read_from_exchange();
cout << "The exchange replied: " << line << endl;
int ids = 1;
int Nsize = 5;
double smoother = 2.0/(1.0 + 1.0*Nsize);
//start our trading here
while(1) {
//read from the exchange
string curline = conn.read_from_exchange();
vector<string> res;
istringstream iss(curline);
for(string curline; iss >> curline;) {
res.push_back(curline);
// cout << curline << " ";
}
// cout << endl;
if(curline.find("BOOK") == 0) {
//type is res[1]"
// for(int i = 0; i < res.size(); i++){
// cout << res[i] << " ";
// }
// cout << endl;
int curind = getind(securids, res[1]);
bookreads[curind]++;
//find location of sell
int locsell = getind(res, "SELL");
//here is buy
int tot = 0;
vector<pair<int, int> > low;
for(int i = 3; i < locsell; i++) {
string cur = res[i];
replace(cur.begin(), cur.end(), ':', ' ');
vector<int> array;
stringstream ss(cur);
int temp;
while (ss >> temp) array.push_back(temp);
low.push_back(make_pair(array[0], array[1]));
tot += array[1];
}
//get median
int temp1 = getmed(low, tot);
// int temp1 = getmean(low, tot);
//here is sell
tot = 0;
vector<pair<int, int> > hi;
for(int i = locsell+1; i < res.size(); i++) {
string cur = res[i];
replace(cur.begin(), cur.end(), ':', ' ');
vector<int> array;
stringstream ss(cur);
int temp;
while (ss >> temp) array.push_back(temp);
hi.push_back(make_pair(array[0], array[1]));
tot += array[1];
}
int temp2 = getmed(hi, tot);
// int temp2 = getmean(hi, tot);
int todays = (temp1 + temp2)/2;
if(temp1 == 0) todays = temp2;
else if(temp2 == 0) todays = temp1;
cout << temp1 << " " << temp2 << " " << todays << endl;
//we just need to build an SMA for now
if(bookreads[curind] <= Nsize) {
int sum = SMA[curind].first;
int days = SMA[curind].second;
SMA[curind] = make_pair(sum + todays, days + 1);
fair_value_map[res[1]] = (double)((sum + todays)/(1.0*(days+1)));
}
else if(bookreads[curind] == Nsize + 1) {
//now we slide with our SMA
double SMAval = (double) (SMA[curind].first/(1.0 * SMA[curind].second));
fair_value_map[res[1]] = (todays - SMAval)*smoother + SMAval;
}
else {
//now we slide with our EMA
double EMAval = fair_value_map[res[1]];
fair_value_map[res[1]] = (todays - EMAval)*smoother + EMAval;
}
if (res[1] == "VALE" || res[1] == "VALBZ") {
if (fair_value_map["VALBZ"] != 0 && fair_value_map["VALE"] != 0) {
real_fair_value_map["VALBZ"] = (1/5.0) * fair_value_map["VALE"] + (4/5.0) * fair_value_map["VALBZ"];
real_fair_value_map["VALE"] = (1/5.0) * fair_value_map["VALE"] + (4/5.0) * fair_value_map["VALBZ"];
// cout << "REAL FAIR VALUE OF VALBZ/VALE IS " << (1/3.0) * fair_value_map["VALE"] + (2/3.0) * fair_value_map["VALBZ"] << endl;
}
} else {
if (fair_value_map["GS"] != 0 && fair_value_map["MS"] != 0 && fair_value_map["WFC"] != 0) {
real_fair_value_map["XLF"] = 0.8*((3 * fair_value_map["BOND"] + 2 * fair_value_map["GS"] + 3 * fair_value_map["MS"] + 2 * fair_value_map["WFC"])/10.0) + 0.2*fair_value_map["XLF"];
// cout << "REAL FAIR VALUE OF XLF IS " << real_fair_value_map["XLF"] << endl;
}
}
int fairval = int(fair_value_map[res[1]]);
if (res[1] == "XLF" || res[1] == "VALBZ" || res[1] == "VALE") {
fairval = int(real_fair_value_map[res[1]]);
}
// cout << lastFV[curind] << " " << fairval << endl;
if(abs(fairval - lastFV[curind]) >= 3) {
//cancel our last two orders
conn.send_to_exchange("CANCEL " + to_string(lastids[curind].first));
conn.send_to_exchange("CANCEL " + to_string(lastids[curind].second));
// cout << lastids[curind].first << " " << lastids[curind].second << endl;
//update orders
vector<string> buy;
buy.push_back(string("ADD"));
buy.push_back(to_string(ids+1));
buy.push_back(res[1]);
buy.push_back(string("BUY"));
buy.push_back(to_string(int(fairval - 7)));
buy.push_back(to_string(3));
conn.send_to_exchange(join(" ", buy));
// for(int i = 0; i < buy.size(); i++){
// cout << buy[i] << " ";
// }
// cout << endl;
vector<string> sell;
sell.push_back(string("ADD"));
sell.push_back(to_string(ids+2));
sell.push_back(res[1]);
sell.push_back(string("SELL"));
sell.push_back(to_string(int(fairval + 7)));
sell.push_back(to_string(3));
conn.send_to_exchange(join(" ", sell));
// for(int i = 0; i < sell.size(); i++){
// cout << sell[i] << " ";
// }
// cout << endl;
// for(int i = 0; i < res.size(); i++){
// cout << res[i] << " ";
// }
// cout << endl;
lastFV[curind] = fairval;
lastids[curind] = make_pair(ids+1, ids+2);
ids+=2;
}
}
else if(curline.find("TRADE") == 0) {
}
else if(curline.find("OPEN") == 0) {
}
else{
}
}
return 0;
}