forked from QuantConnect/Lean
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLiveAlgorithmSettings.cs
309 lines (280 loc) · 11.5 KB
/
LiveAlgorithmSettings.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
using QuantConnect.Brokerages;
namespace QuantConnect.API
{
/// <summary>
/// Helper class to put BaseLiveAlgorithmSettings in proper format.
/// </summary>
public class LiveAlgorithmApiSettingsWrapper
{
/// <summary>
/// Constructor for LiveAlgorithmApiSettingsWrapper
/// </summary>
/// <param name="projectId">Id of project from QuantConnect</param>
/// <param name="compileId">Id of compilation of project from QuantConnect</param>
/// <param name="serverType">Server type to run live Algorithm</param>
/// <param name="settings"><see cref="BaseLiveAlgorithmSettings ">Live Algorithm Settings</see> for a specific brokerage</param>
public LiveAlgorithmApiSettingsWrapper(int projectId, string compileId, string serverType, BaseLiveAlgorithmSettings settings, string version = "-1")
{
VersionId = version;
ProjectId = projectId;
CompileId = compileId;
ServerType = serverType;
Brokerage = settings;
}
/// <summary>
/// -1 is master
/// </summary>
[JsonProperty(PropertyName = "versionId")]
public string VersionId { get; set; }
/// <summary>
/// Project id for the live instance
/// </summary>
[JsonProperty(PropertyName = "projectId")]
public int ProjectId { get; private set; }
/// <summary>
/// Compile Id for the live algorithm
/// </summary>
[JsonProperty(PropertyName = "compileId")]
public string CompileId { get; private set; }
/// <summary>
/// Type of server being used to run live algorithm
/// </summary>
[JsonProperty(PropertyName = "serverType")]
public string ServerType { get; private set; }
/// <summary>
/// The API expects the settings as part of a brokerage object
/// </summary>
[JsonProperty(PropertyName = "brokerage")]
public BaseLiveAlgorithmSettings Brokerage { get; private set; }
}
/// <summary>
/// Base class for settings that must be configured per Brokerage to create new algorithms via the API.
/// </summary>
public class BaseLiveAlgorithmSettings
{
/// <summary>
/// Constructor used by FXCM
/// </summary>
/// <param name="user">Username associated with brokerage</param>
/// <param name="password">Password associated with brokerage</param>
/// <param name="environment">'live'/'paper'</param>
/// <param name="account">Account id for brokerage</param>
public BaseLiveAlgorithmSettings(string user,
string password,
BrokerageEnvironment environment,
string account)
{
User = user;
Password = password;
Environment = environment;
Account = account;
}
/// <summary>
/// Constructor used by Interactive Brokers
/// </summary>
/// <param name="user">Username associated with brokerage</param>
/// <param name="password">Password associated with brokerage</param>
public BaseLiveAlgorithmSettings(string user,
string password)
{
Password = password;
User = user;
}
/// <summary>
/// The constructor used by Oanda
/// </summary>
/// <param name="environment">'live'/'paper'</param>
/// <param name="account">Account id for brokerage</param>
public BaseLiveAlgorithmSettings(BrokerageEnvironment environment,
string account)
{
User = "";
Password = "";
Environment = environment;
Account = account;
}
/// <summary>
/// The constructor used by Tradier
/// </summary>
/// <param name="account">Account id for brokerage</param>
public BaseLiveAlgorithmSettings(string account)
{
User = "";
Password = "";
Account = account;
}
/// <summary>
/// 'Interactive' / 'FXCM' / 'Oanda' / 'Tradier' /'PaperTrading'
/// </summary>
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
/// <summary>
/// Username associated with brokerage
/// </summary>
[JsonProperty(PropertyName = "user")]
public string User { get; private set; }
/// <summary>
/// Password associated with brokerage
/// </summary>
[JsonProperty(PropertyName = "password")]
public string Password { get; private set; }
/// <summary>
/// 'live'/'paper'
/// </summary>
[JsonProperty(PropertyName = "environment")]
public BrokerageEnvironment Environment { get; set; }
/// <summary>
/// Account of the associated brokerage
/// </summary>
[JsonProperty(PropertyName = "account")]
public string Account { get; set; }
}
/// <summary>
/// Default live algorithm settings
/// </summary>
public class DefaultLiveAlgorithmSettings : BaseLiveAlgorithmSettings
{
/// <summary>
/// Constructor for default algorithms
/// </summary>
/// <param name="user">Username associated with brokerage</param>
/// <param name="password">Password associated with brokerage</param>
/// <param name="environment">'live'/'paper'</param>
/// <param name="account">Account id for brokerage</param>
public DefaultLiveAlgorithmSettings(string user,
string password,
BrokerageEnvironment environment,
string account)
: base(user, password, environment, account)
{
Id = BrokerageName.QuantConnectBrokerage.ToString();
}
}
/// <summary>
/// Algorithm setting for trading with FXCM
/// </summary>
public class FXCMLiveAlgorithmSettings : BaseLiveAlgorithmSettings
{
/// <summary>
/// Contructor for live trading with FXCM
/// </summary>
/// <param name="user">Username associated with brokerage</param>
/// <param name="password">Password associated with brokerage</param>
/// <param name="environment">'live'/'paper'</param>
/// <param name="account">Account id for brokerage</param>
public FXCMLiveAlgorithmSettings(string user,
string password,
BrokerageEnvironment environment,
string account)
: base(user, password, environment, account)
{
Id = BrokerageName.FxcmBrokerage.ToString();
}
}
/// <summary>
/// Live algorithm settings for trading with Interactive Brokers
/// </summary>
public class InteractiveBrokersLiveAlgorithmSettings : BaseLiveAlgorithmSettings
{
/// <summary>
/// Contructor for live trading with IB.
/// </summary>
/// <param name="user">Username associated with brokerage</param>
/// <param name="password">Password of assciate brokerage</param>
/// <param name="account">Account id for brokerage</param>
public InteractiveBrokersLiveAlgorithmSettings(string user,
string password,
string account)
: base(user, password)
{
Account = account;
Environment = Account.Substring(0, 2) == "DU" ? BrokerageEnvironment.Paper : BrokerageEnvironment.Live;
Id = BrokerageName.InteractiveBrokersBrokerage.ToString();
}
}
/// <summary>
/// Live algorithm settings for trading with Oanda
/// </summary>
public class OandaLiveAlgorithmSettings : BaseLiveAlgorithmSettings
{
/// <summary>
/// Contructor for live trading with Oanda.
/// </summary>
/// <param name="accessToken">Access Token (specific for Oanda Brokerage)</param>
/// <param name="environment">'live'/'paper'</param>
/// <param name="account">Account id for brokerage</param>
public OandaLiveAlgorithmSettings(string accessToken,
BrokerageEnvironment environment,
string account)
: base(environment, account)
{
AccessToken = accessToken;
// The DateIssued parameter is required by the Api, but not required to trade.
// This should be fixed on the Api side.
DateIssued = "1";
Id = BrokerageName.OandaBrokerage.ToString();
}
/// <summary>
/// Access token for Oanda
/// </summary>
[JsonProperty(PropertyName = "accessToken")]
public string AccessToken { get; private set; }
/// <summary>
/// Date token was issued
/// </summary>
[JsonProperty(PropertyName = "dateIssued")]
public string DateIssued { get; private set; }
}
/// <summary>
/// Live algorithm settings for trading with Tradier
/// </summary>
public class TradierLiveAlgorithmSettings : BaseLiveAlgorithmSettings
{
/// <summary>
/// Contructor for live trading with Tradier.
/// </summary>
/// <param name="accessToken"></param>
/// <param name="dateIssued">Specific for live trading with Tradier. See Tradier account for more details.</param>
/// <param name="refreshToken">Specific for live trading with Tradier. See Tradier account for more details.</param>
/// <param name="account">Account id for brokerage</param>
public TradierLiveAlgorithmSettings(string accessToken,
string dateIssued,
string refreshToken,
string account)
: base(account)
{
Environment = BrokerageEnvironment.Live;
AccessToken = accessToken;
DateIssued = dateIssued;
RefreshToken = refreshToken;
Lifetime = "86399";
Id = BrokerageName.TradierBrokerage.ToString();
}
/// <summary>
/// Access token for tradier brokerage
/// </summary>
[JsonProperty(PropertyName = "accessToken")]
public string AccessToken { get; private set; }
/// <summary>
/// Property specific to Tradier account. See tradier account for more details.
/// </summary>
[JsonProperty(PropertyName = "dateIssued")]
public string DateIssued { get; private set; }
/// <summary>
/// Property specific to Tradier account. See tradier account for more details.
/// </summary>
[JsonProperty(PropertyName = "refreshToken")]
public string RefreshToken { get; private set; }
/// <summary>
/// Property specific to Tradier account. See tradier account for more details.
/// </summary>
[JsonProperty(PropertyName = "lifetime")]
public string Lifetime { get; private set; }
}
}