-
Notifications
You must be signed in to change notification settings - Fork 0
/
autotrader.cc
188 lines (162 loc) · 7.46 KB
/
autotrader.cc
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
// Copyright 2021 Optiver Asia Pacific Pty. Ltd.
//
// This file is part of Ready Trader Go.
//
// Ready Trader Go is free software: you can redistribute it and/or
// modify it under the terms of the GNU Affero General Public License
// as published by the Free Software Foundation, either version 3 of
// the License, or (at your option) any later version.
//
// Ready Trader Go is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public
// License along with Ready Trader Go. If not, see
// <https://www.gnu.org/licenses/>.
#include <array>
#include <boost/asio/io_context.hpp>
#include <ready_trader_go/logging.h>
#include "autotrader.h"
using namespace ReadyTraderGo;
RTG_INLINE_GLOBAL_LOGGER_WITH_CHANNEL(LG_AT, "AUTO")
constexpr int LOT_SIZE = 10;
constexpr int POSITION_LIMIT = 200;
constexpr int TICK_SIZE_IN_CENTS = 100;
constexpr int MIN_BID_NEARST_TICK = (MINIMUM_BID + TICK_SIZE_IN_CENTS) / TICK_SIZE_IN_CENTS * TICK_SIZE_IN_CENTS;
constexpr int MAX_ASK_NEAREST_TICK = MAXIMUM_ASK / TICK_SIZE_IN_CENTS * TICK_SIZE_IN_CENTS;
AutoTrader::AutoTrader(boost::asio::io_context& context) : BaseAutoTrader(context)
{
}
void AutoTrader::DisconnectHandler()
{
BaseAutoTrader::DisconnectHandler();
RLOG(LG_AT, LogLevel::LL_INFO) << "execution connection lost";
}
void AutoTrader::ErrorMessageHandler(unsigned long clientOrderId,
const std::string& errorMessage)
{
RLOG(LG_AT, LogLevel::LL_INFO) << "error with order " << clientOrderId << ": " << errorMessage;
if (clientOrderId != 0 && ((mAsks.count(clientOrderId) == 1) || (mBids.count(clientOrderId) == 1)))
{
OrderStatusMessageHandler(clientOrderId, 0, 0, 0);
}
}
void AutoTrader::HedgeFilledMessageHandler(unsigned long clientOrderId,
unsigned long price,
unsigned long volume)
{
RLOG(LG_AT, LogLevel::LL_INFO) << "hedge order " << clientOrderId << " filled for " << volume
<< " lots at $" << price << " average price in cents";
}
void AutoTrader::OrderBookMessageHandler(Instrument instrument,
unsigned long sequenceNumber,
const std::array<unsigned long, TOP_LEVEL_COUNT>& askPrices,
const std::array<unsigned long, TOP_LEVEL_COUNT>& askVolumes,
const std::array<unsigned long, TOP_LEVEL_COUNT>& bidPrices,
const std::array<unsigned long, TOP_LEVEL_COUNT>& bidVolumes)
{
RLOG(LG_AT, LogLevel::LL_INFO) << "order book received for " << instrument << " instrument"
<< ": ask prices: " << askPrices[0]
<< "; ask volumes: " << askVolumes[0]
<< "; bid prices: " << bidPrices[0]
<< "; bid volumes: " << bidVolumes[0];
if (instrument == Instrument::ETF)
{
ETFaskPrices = askPrices;
ETFaskVolumes = askVolumes;
ETFbidPrices = bidPrices;
ETFbidVolumes = bidVolumes;
}
else if (instrument == Instrument::FUTURE)
{
FaskPrices = askPrices;
FaskVolumes = askVolumes;
FbidPrices = bidPrices;
FbidVolumes = bidVolumes;
// unsigned long priceAdjustment = - (mPosition / LOT_SIZE) * TICK_SIZE_IN_CENTS;
// unsigned long newAskPrice = (askPrices[0] != 0) ? askPrices[0] + priceAdjustment : 0;
// unsigned long newBidPrice = (bidPrices[0] != 0) ? bidPrices[0] + priceAdjustment : 0;
if (ETFbidPrices[0] == 0) return;
unsigned long newAskPrice = (ETFaskPrices[0] > bidPrices[0]) ? ETFaskPrices[0] : 0;
unsigned long newBidPrice = (ETFbidPrices[0] < askPrices[0]) ? ETFbidPrices[0] : 0;
// if find better, cancel previous one
if (mAskId != 0 && newAskPrice != 0 && newAskPrice != mAskPrice)
{
SendCancelOrder(mAskId);
mAskId = 0;
}
// if find better, cancel previous one
if (mBidId != 0 && newBidPrice != 0 && newBidPrice != mBidPrice)
{
SendCancelOrder(mBidId);
mBidId = 0;
}
if (mAskId == 0 && newAskPrice != 0 && FPosition > -POSITION_LIMIT + LOT_SIZE) //&& newAskPrice > bidPrices[0]
{
mAskId = mNextMessageId++;
mAskPrice = newAskPrice;
SendInsertOrder(mAskId, Side::SELL, newAskPrice, LOT_SIZE, Lifespan::GOOD_FOR_DAY);
mAsks.emplace(mAskId);
FPosition -= LOT_SIZE;
}
if (mBidId == 0 && newBidPrice != 0 && FPosition < POSITION_LIMIT - LOT_SIZE) //&& newBidPrice < askPrices[0]
{
mBidId = mNextMessageId++;
mBidPrice = newBidPrice;
SendInsertOrder(mBidId, Side::BUY, newBidPrice, LOT_SIZE, Lifespan::GOOD_FOR_DAY);
mBids.emplace(mBidId);
FPosition += LOT_SIZE;
}
}
}
void AutoTrader::OrderFilledMessageHandler(unsigned long clientOrderId,
unsigned long price,
unsigned long volume)
{
RLOG(LG_AT, LogLevel::LL_INFO) << "order " << clientOrderId << " filled for " << volume
<< " lots at $" << price << " cents";
if (mAsks.count(clientOrderId) == 1)
{
ETFPosition -= (long)volume;
SendHedgeOrder(mNextMessageId++, Side::BUY, MAX_ASK_NEAREST_TICK, volume);
}
else if (mBids.count(clientOrderId) == 1)
{
ETFPosition += (long)volume;
SendHedgeOrder(mNextMessageId++, Side::SELL, MIN_BID_NEARST_TICK, volume);
}
}
void AutoTrader::OrderStatusMessageHandler(unsigned long clientOrderId,
unsigned long fillVolume,
unsigned long remainingVolume,
signed long fees)
{
if (remainingVolume == 0)
{
if (clientOrderId == mAskId)
{
mAskId = 0;
}
else if (clientOrderId == mBidId)
{
mBidId = 0;
}
mAsks.erase(clientOrderId);
mBids.erase(clientOrderId);
}
}
void AutoTrader::TradeTicksMessageHandler(Instrument instrument,
unsigned long sequenceNumber,
const std::array<unsigned long, TOP_LEVEL_COUNT>& askPrices,
const std::array<unsigned long, TOP_LEVEL_COUNT>& askVolumes,
const std::array<unsigned long, TOP_LEVEL_COUNT>& bidPrices,
const std::array<unsigned long, TOP_LEVEL_COUNT>& bidVolumes)
{
RLOG(LG_AT, LogLevel::LL_INFO) << "trade ticks received for " << instrument << " instrument"
<< ": ask prices: " << askPrices[0]
<< "; ask volumes: " << askVolumes[0]
<< "; bid prices: " << bidPrices[0]
<< "; bid volumes: " << bidVolumes[0];
}