-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPositionBot.cs
554 lines (422 loc) · 17.6 KB
/
PositionBot.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
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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
using QuikSharp.DataStructures;
using QuikTester.Helpers;
using StockSharp.Algo.Indicators;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Runtime.Serialization;
using System.Threading;
using System.Threading.Tasks;
namespace QuikTester
{
[DataContract]
public enum StrategyType
{
[EnumMember]
Ema,
[EnumMember]
Percent,
[EnumMember]
ValueDiff
}
[DataContract]
public class PositionBot : Logger, INotifyPropertyChanged
{
private Operation prevDirection;
private decimal _priceDeltaNow;
/// <summary>
/// высчитанный уровень в зависимости от направления
/// </summary>
public decimal PriceDeltaNow { get; set; }
private decimal _emanowLocalEma;
/// <summary>
/// EMA на текущий момент
/// </summary>
public decimal EmaNowLocalEma
{
get => _emanowLocalEma;
set
{
_emanowLocalEma = value;
PropertyEvent(nameof(EmaNowLocalEma));
}
}
//[DataMember]
//public string SymbolWithPortfolio { get; set; }
[DataMember]
public string Symbol { get; set; }
[DataMember]
public string Portfolio { get; set; }
private decimal _currentpos;
public decimal CurrentPos
{
get => _currentpos;
set
{
_currentpos = value;
PropertyEvent(nameof(CurrentPos));
}
}
private decimal _newPos;
public decimal NewPos
{
get => _newPos;
set
{
_newPos = value;
PropertyEvent(nameof(NewPos));
}
}
[DataMember] public bool Activated { get; set; }
public QuikConnector QuikConnector { get; set; }
[DataMember]
public decimal ?PriceStep { get; set; }
[DataMember]
public string ?classCode { get; set; }
private ExponentialMovingAverage EMA { get; set; }
private StrategyType _strategyType;
[DataMember]
public StrategyType StrategyType
{
get => _strategyType;
set
{
//cтратегия поменялась...
if (_strategyType != value && QuikConnector != null)
{
UpdateCalculationsAndPositions(NewPos);
}
_strategyType = value;
}
}
private bool _started;
public bool Started
{
get => _started;
set
{
//поменялось состояние стратегии
// if (_started != value && value == true && QuikConnector!=null)
// {
// UpdateCalculationsAndPositions(NewPos);
// }
if (_started != value && value)
{
MainAlgo();
}
if (_started != value && !value)
{
//остановка
TryToFindAndCancelStopOrder();
}
_started = value;
}
}
public string StrategyTypeString
{
get => StrategyType.ToString();
set
{
Enum.TryParse<StrategyType>(value, out var result);
StrategyType = result;
}
}
/*------- три типа стратегии и их свойства-----*/
[DataMember] public decimal LastEmaValue { get; set; }
public decimal LastPrice { get; private set; }
private decimal _delta;
/// <summary>
/// Дельта для высчитывания в пунтках
/// </summary>
[DataMember]
public decimal Delta
{
get => _delta;
set
{
_delta = value;
UpdateUsualDelta();
PropertyEvent(nameof(Delta));
}
}
private decimal _percent;
/// <summary>
/// Процентное значение
/// указывается в реальных процентах
/// </summary>
[DataMember]
public decimal Percent
{
get => _percent;
set
{
_percent = value;
UpdateDeltaPercent();
PropertyEvent(nameof(Percent));
}
}
/// <summary>
/// Цена "отступа" в процентах или в реальном значении... зависит от настроек типа стратегии
/// </summary>
public decimal CurretPriceDelta { get;set;
/* get
{
if (LastPrice == 0) return 0;
if (Direction == Operation.Buy) return LastPrice - Delta;
return LastPrice + Delta;
}*/
}
/* -------------------------------------------*/
[DataMember]
public CandleInterval CandleInterval { get; set; }
public string CandleIntervalString
{
get => CandleInterval.ToString();
set
{
Enum.TryParse<CandleInterval>(value, out var result);
if (result != CandleInterval)
{
//поменялось значение и следовательно надо подписку остановить также...
}
CandleInterval = result;
}
}
private int _emaLength;
[DataMember]
public int EmaLength
{
get => _emaLength;
set
{
if (value != _emaLength)
{
//новое значение, значит обнуляем индикатор и строим заново...
EMA = null;
}
_emaLength = value;
PropertyEvent(nameof(EmaLength));
}
}
/// <summary>
/// По умолчанию ставлю на покупку направление
/// todo потом сделаю динамчиеским
/// </summary>
public Operation Direction { get; set; } = Operation.Buy;
public PositionBot(QuikConnector quikConnector)
{
QuikConnector = quikConnector;
}
private void UpdateDeltaPercent()
{
if (LastPrice != 0)
PriceDeltaNow = Math.Round(Direction == Operation.Buy
? LastPrice * (1 - Percent / 100)
: (1 + Percent / 100), QuikConnector.getDecimalCount(LastPrice));
}
private void UpdateUsualDelta()
{
if (LastPrice != 0)
PriceDeltaNow = Math.Round(Direction == Operation.Buy ?
LastPrice - Delta : LastPrice + Delta, QuikConnector.getDecimalCount(LastPrice));
}
public Operation OppositeDirection => Direction == Operation.Buy ? Operation.Sell : Operation.Buy;
public async void UpdateCalculationsAndPositions(decimal newPos)
{
//для быстрого обновления графики
NewPos = newPos;
if (NewPos > 0) Direction = Operation.Buy;
if (NewPos < 0) Direction = Operation.Sell;
//приходится делать новый поток потому что получение свечек в квике все равно выполняется синхронно
//из-за этого грузит графику.
new Task(async () =>
{
GetInitialSettings();
//----------- решил сделать калькуляцию параметров вне зависимости от того запущена или нет -----
// var signalEma = new ExponentialMovingAverage() { Length = _length };
if (StrategyType == StrategyType.ValueDiff)
{
LastPrice = await QuikConnector.GetEmaValueOrLastPrice(posbot: this, ema: false);
UpdateUsualDelta();
// LogMessage($" {SymbolWithPortfolio} Последняя цена {LastPrice} price Delta {PriceDeltaNow}");
}
if (StrategyType == StrategyType.Percent)
{
LastPrice = await QuikConnector.GetEmaValueOrLastPrice(posbot: this, ema: false);
UpdateDeltaPercent();
// LogMessage($" {SymbolWithPortfolio} Последняя цена {LastPrice} price Delta {PriceDeltaNow}");
}
if (StrategyType == StrategyType.Ema)
{
EmaNowLocalEma =
Math.Round(await QuikConnector.GetEmaValueOrLastPrice(this, true, CandleInterval, EmaLength),
QuikConnector.DecimalsWithInstrument[Symbol]);
//LogMessage($"{SymbolWithPortfolio} Скользяшка {EmaNowLocalEma} ");
}
//--------------------------------------------------------------------------------------------------
if (Activated && Started)
MainAlgo();
CurrentPos = NewPos;
prevDirection = Direction;
}).Start();
}
private void ReSubscribe( CandleInterval oldCandleInterval, CandleInterval newCandleInterval)
{
try
{
if (oldCandleInterval != null)
QuikConnector._quikconnector.Candles.Unsubscribe(classCode, Symbol, oldCandleInterval);
}
catch (Exception ex)
{
//на случай если произойдет не айс
}
EMA = null;
EMA = new ExponentialMovingAverage() { Length = EmaLength };
}
public void ProcessCandle()
{
}
private void GetInitialSettings()
{
if (classCode == null)
{
classCode = QuikConnector.GetClassCodeForInsturment(Symbol);
LogMessage($"Получен класс инструмента для {Symbol} -> {classCode}");
}
if (PriceStep == null)
{
PriceStep = QuikConnector.GetPriceStep(Symbol, classCode);
LogMessage($"Получен шаг цены для {Symbol} -> {PriceStep}");
}
}
private void MainAlgo()
{
new Task(async () =>
{
//заняты выставлением стопа в настоящий момент
if(stopplacingprocess)
return;
//Произошло закрытие позиции...
if (NewPos == 0 && NewPos != CurrentPos)
{
LogMessage("Позиция обнулилась. Отменяем стоп ордер ");
TryToFindAndCancelStopOrder();
}
if (NewPos != 0)
{
var stoporder = QuikConnector
.ActiveStopOrders
.FirstOrDefault(s => s.Value.SecCode == Symbol && s.Value.ClientCode == Portfolio).Value;
if (StrategyType == StrategyType.Percent || StrategyType == StrategyType.ValueDiff)
{
/*
//сменилось направление или с самого нуля стартуем
if ((CurretPriceDelta == 0) || prevDirection != Direction)
{
LogMessage(
$"{Symbol} Первый стоп или изменение направления. Отменя и выставляем новый. Направление {Direction} цена = {PriceDeltaNow} ");
CurretPriceDelta = PriceDeltaNow;
CancelAndPlaceNewStopOrder(CurretPriceDelta, (int)NewPos, OppositeDirection,
QuikConnector.getDecimalCount(LastPrice), Portfolio);
}*/
//if (CurretPriceDelta != 0 && prevDirection == Direction || stoporder == null)
if(PriceDeltaNow!=0)
{
if ((Direction == Operation.Buy && PriceDeltaNow > CurretPriceDelta) ||
(Direction == Operation.Sell && PriceDeltaNow < CurretPriceDelta) || stoporder == null)
{
LogMessage(
$"Выставляю стоп Новый ={PriceDeltaNow} Старый = {CurretPriceDelta}. Направление {Direction}");
CurretPriceDelta = PriceDeltaNow;
await CancelAndPlaceNewStopOrder(CurretPriceDelta, (int)NewPos, OppositeDirection,
QuikConnector.getDecimalCount(LastPrice), Portfolio);
}
}
}
else
{
if (EmaNowLocalEma == 0)
{
LogMessage("Значение индикатора 0 ");
return;
}
/*
//сменилось направление или с самого нуля стартуем
if (LastEmaValue == 0 || prevDirection != Direction)
{
LogMessage(
$"{Symbol} Первый стоп или изменение направления. Отменя и выставляем новый. Направление {Direction} цена = {EmaNowLocalEma} ");
LastEmaValue = EmaNowLocalEma;
//todo - заменить нулевые значения. Добавить в основной коннектор количество чисел после запятой
CancelAndPlaceNewStopOrder(LastEmaValue, (int)NewPos, Direction,
QuikConnector.DecimalsWithInstrument[Symbol], Portfolio);
}*/
// if (LastEmaValue != 0 && prevDirection == Direction || stoporder == null)
{
if ((Direction == Operation.Buy && EmaNowLocalEma > LastEmaValue) ||
(Direction == Operation.Sell && LastEmaValue < LastEmaValue) || stoporder == null)
{
LogMessage(
$"Выставляю. Новый ={EmaNowLocalEma} Старый = {LastEmaValue}. Направление {Direction}");
LastEmaValue = EmaNowLocalEma;
await CancelAndPlaceNewStopOrder(LastEmaValue, (int)NewPos, OppositeDirection,
QuikConnector.DecimalsWithInstrument[Symbol], Portfolio);
}
}
}
}
}).Start();
}
private bool stopplacingprocess = false;
// QuikConnector.PlaceStopOrder(PriceDelta, (int)newPos, Direction, SymbolWithPortfolio, QuikConnector.getDecimalCount(LastPrice));
private async Task CancelAndPlaceNewStopOrder(decimal price, int quantity, Operation operation,int numberRound,string clientcode)
{
stopplacingprocess = true;
TryToFindAndCancelStopOrder();
await QuikConnector.PlaceStopOrder(price, quantity, operation, Symbol, numberRound, clientcode,
(decimal)PriceStep, classCode);
stopplacingprocess = false;
}
private void TryToFindAndCancelStopOrder()
{
try
{
var stoporder = QuikConnector.ActiveStopOrders
.FirstOrDefault(s => s.Value.SecCode == Symbol && s.Value.ClientCode == Portfolio).Value;
if (stoporder != null)
QuikConnector.CancelStopOrder(stoporder);
}
catch (Exception ex)
{
LogMessage(ex.Message);
}
}
public void RefreshPosBot()
{
LastEmaValue = 0;
LastPrice = 0;
}
public void Start()
{
if(Activated)
Started = true;
}
public void Stop()
{
Started = false;
}
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
public void PropertyEvent(string _property)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(_property));
}
}
}