-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPortfolioController (From 28-05).txt
577 lines (571 loc) · 49.2 KB
/
PortfolioController (From 28-05).txt
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
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
E:\Users\Deployment\Documents\cAlgo\Sources\Robots\TauroPortfolioController\TauroPortfolioController>dotnet run Program.cs
info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[0]
User profile is available. Using 'C:\Users\Deployment\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest.
Hosting environment: Development
Content root path: E:\Users\Deployment\Documents\cAlgo\Sources\Robots\TauroPortfolioController\TauroPortfolioController
Now listening on: https://localhost:8001
Now listening on: http://localhost:8000
Application started. Press Ctrl+C to shut down.
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1]
Request starting HTTP/1.1 GET https://localhost:8001/api/Monitor
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[0]
Executing endpoint 'TauroPortfolioController.Controllers.MonitorController.Index (TauroPortfolioController)'
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Route matched with {action = "Index", controller = "Monitor"}. Executing action TauroPortfolioController.Controllers.MonitorController.Index (TauroPortfolioController)
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Executing action method TauroPortfolioController.Controllers.MonitorController.Index (TauroPortfolioController) - Validation state: Valid
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action method TauroPortfolioController.Controllers.MonitorController.Index (TauroPortfolioController), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1043ms.
info: Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor[1]
Executing ObjectResult, writing value of type 'System.String'.
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action TauroPortfolioController.Controllers.MonitorController.Index (TauroPortfolioController) in 409.5503ms
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1]
Executed endpoint 'TauroPortfolioController.Controllers.MonitorController.Index (TauroPortfolioController)'
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2]
Request finished in 442.2862ms 200 text/plain; charset=utf-8
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1]
Request starting HTTP/1.1 GET https://localhost:8001/api/Monitor/NewStrategy?StrategyName=BearishDoji&AssetCode=EURUSD&Port=17001
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[0]
Executing endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Route matched with {action = "NotifyNewStrategy", controller = "Monitor"}. Executing action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Executing action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) with arguments (BearishDoji, EURUSD, 17001) - Validation state: Valid
warn: TauroPortfolioController.Controllers.MonitorController[0]
05/28/2019 03:24:54 New Strategy: BearishDoji over EURUSD asset, on 17001 port
warn: TauroPortfolioController.ExecutorModule.Executor[0]
05/28/2019 03:24:54 Setting initial parameters to strategy
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 7.4711ms.
info: Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor[1]
Executing ObjectResult, writing value of type 'System.String'.
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) in 16.92ms
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1]
Executed endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2]
Request finished in 29.3221ms 200 text/plain; charset=utf-8
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1]
Request starting HTTP/1.1 GET https://localhost:8001/api/Monitor/NewStrategy?StrategyName=BullishDoji&AssetCode=USDCAD&Port=18001
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[0]
Executing endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Route matched with {action = "NotifyNewStrategy", controller = "Monitor"}. Executing action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Executing action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) with arguments (BullishDoji, USDCAD, 18001) - Validation state: Valid
warn: TauroPortfolioController.Controllers.MonitorController[0]
05/28/2019 03:25:17 New Strategy: BullishDoji over USDCAD asset, on 18001 port
warn: TauroPortfolioController.ExecutorModule.Executor[0]
05/28/2019 03:25:17 Setting initial parameters to strategy
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 7.6757ms.
info: Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor[1]
Executing ObjectResult, writing value of type 'System.String'.
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) in 8.0255ms
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1]
Executed endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2]
Request finished in 8.9954ms 200 text/plain; charset=utf-8
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1]
Request starting HTTP/1.1 GET https://localhost:8001/api/Monitor/NewStrategy?StrategyName=ThreeBlackSoldiers&AssetCode=AUDUSD&Port=19001
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[0]
Executing endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Route matched with {action = "NotifyNewStrategy", controller = "Monitor"}. Executing action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Executing action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) with arguments (ThreeBlackSoldiers, AUDUSD, 19001) - Validation state: Valid
warn: TauroPortfolioController.Controllers.MonitorController[0]
05/28/2019 03:25:23 New Strategy: ThreeBlackSoldiers over AUDUSD asset, on 19001 port
warn: TauroPortfolioController.ExecutorModule.Executor[0]
05/28/2019 03:25:23 Setting initial parameters to strategy
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 7.775ms.
info: Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor[1]
Executing ObjectResult, writing value of type 'System.String'.
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) in 8.0614ms
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1]
Executed endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2]
Request finished in 8.2264ms 200 text/plain; charset=utf-8
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1]
Request starting HTTP/1.1 GET https://localhost:8001/api/Monitor/NewStrategy?StrategyName=ThreeWhiteSoldiers&AssetCode=GBPUSD&Port=20001
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[0]
Executing endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Route matched with {action = "NotifyNewStrategy", controller = "Monitor"}. Executing action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Executing action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) with arguments (ThreeWhiteSoldiers, GBPUSD, 20001) - Validation state: Valid
warn: TauroPortfolioController.Controllers.MonitorController[0]
05/28/2019 03:25:30 New Strategy: ThreeWhiteSoldiers over GBPUSD asset, on 20001 port
warn: TauroPortfolioController.ExecutorModule.Executor[0]
05/28/2019 03:25:30 Setting initial parameters to strategy
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 7.816ms.
info: Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor[1]
Executing ObjectResult, writing value of type 'System.String'.
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) in 8.1209ms
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1]
Executed endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2]
Request finished in 8.2776ms 200 text/plain; charset=utf-8
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1]
Request starting HTTP/1.1 GET https://localhost:8001/api/Monitor/NewStrategy?StrategyName=MorningStarBearish&AssetCode=AUDUSD&Port=21001
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[0]
Executing endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Route matched with {action = "NotifyNewStrategy", controller = "Monitor"}. Executing action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Executing action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) with arguments (MorningStarBearish, AUDUSD, 21001) - Validation state: Valid
warn: TauroPortfolioController.Controllers.MonitorController[0]
05/28/2019 03:33:17 New Strategy: MorningStarBearish over AUDUSD asset, on 21001 port
warn: TauroPortfolioController.ExecutorModule.Executor[0]
05/28/2019 03:33:17 Setting initial parameters to strategy
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 10.3227ms.
info: Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor[1]
Executing ObjectResult, writing value of type 'System.String'.
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) in 10.6431ms
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1]
Executed endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2]
Request finished in 10.8391ms 200 text/plain; charset=utf-8
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1]
Request starting HTTP/1.1 GET https://localhost:8001/api/Monitor/NewStrategy?StrategyName=MorningStarBullish&AssetCode=AUDUSD&Port=22001
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[0]
Executing endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Route matched with {action = "NotifyNewStrategy", controller = "Monitor"}. Executing action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Executing action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) with arguments (MorningStarBullish, AUDUSD, 22001) - Validation state: Valid
warn: TauroPortfolioController.Controllers.MonitorController[0]
05/28/2019 03:33:36 New Strategy: MorningStarBullish over AUDUSD asset, on 22001 port
warn: TauroPortfolioController.ExecutorModule.Executor[0]
05/28/2019 03:33:36 Setting initial parameters to strategy
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 7.9872ms.
info: Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor[1]
Executing ObjectResult, writing value of type 'System.String'.
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) in 8.1881ms
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1]
Executed endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2]
Request finished in 8.3483ms 200 text/plain; charset=utf-8
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/28/2019 04:23:31 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/28/2019 05:23:31 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/28/2019 06:23:31 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.ExecutorModule.Executor[0]
05/28/2019 06:23:32 Some strategies stopped by fundamental volatility
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/28/2019 07:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/28/2019 08:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/28/2019 09:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/28/2019 10:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/28/2019 11:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/28/2019 12:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/28/2019 13:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/28/2019 14:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/28/2019 15:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.ExecutorModule.Executor[0]
05/28/2019 15:23:37 Some strategies stopped by fundamental volatility
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/28/2019 16:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.ExecutorModule.Executor[0]
05/28/2019 16:23:38 Some strategies stopped by fundamental volatility
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/28/2019 17:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.ExecutorModule.Executor[0]
05/28/2019 17:23:38 Some strategies stopped by fundamental volatility
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/28/2019 18:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/28/2019 19:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/28/2019 20:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/28/2019 21:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/28/2019 22:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/28/2019 23:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/29/2019 00:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/29/2019 00:23:34 Monitoring strategies performances, to reparametrize them
warn: TauroPortfolioController.AnalyserModule.Analyser[0]
05/29/2019 00:23:34 Fitness for BearishDoji: 0.01
warn: TauroPortfolioController.AnalyserModule.Analyser[0]
05/29/2019 00:23:34 Fitness for BullishDoji: 0.01
warn: TauroPortfolioController.AnalyserModule.Analyser[0]
05/29/2019 00:23:34 Fitness for ThreeBlackSoldiers: 0.01
warn: TauroPortfolioController.AnalyserModule.Analyser[0]
05/29/2019 00:23:34 Fitness for ThreeWhiteSoldiers: 0.01
warn: TauroPortfolioController.AnalyserModule.Analyser[0]
05/29/2019 00:23:34 Fitness for MorningStarBearish: 0.01
warn: TauroPortfolioController.AnalyserModule.Analyser[0]
05/29/2019 00:23:34 Fitness for MorningStarBullish: 0.01
warn: TauroPortfolioController.ExecutorModule.Executor[0]
05/29/2019 00:23:38 Some strategies stopped by fundamental volatility
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/29/2019 01:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1]
Request starting HTTP/1.1 GET https://localhost:8001/api/Monitor/NewStrategy?StrategyName=Pattern_A&AssetCode=EURUSD&Port=23001
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[0]
Executing endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Route matched with {action = "NotifyNewStrategy", controller = "Monitor"}. Executing action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Executing action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) with arguments (Pattern_A, EURUSD, 23001) - Validation state: Valid
warn: TauroPortfolioController.Controllers.MonitorController[0]
05/29/2019 02:20:05 New Strategy: Pattern_A over EURUSD asset, on 23001 port
warn: TauroPortfolioController.ExecutorModule.Executor[0]
05/29/2019 02:20:05 Setting initial parameters to strategy
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 14.3403ms.
info: Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor[1]
Executing ObjectResult, writing value of type 'System.String'.
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) in 14.9485ms
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1]
Executed endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2]
Request finished in 15.2274ms 200 text/plain; charset=utf-8
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/29/2019 02:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1]
Request starting HTTP/1.1 GET https://localhost:8001/api/Monitor/NewStrategy?StrategyName=Pattern_B&AssetCode=USDJPY&Port=24001
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1]
Request starting HTTP/1.1 GET https://localhost:8001/api/Monitor/NewStrategy?StrategyName=Pattern_B&AssetCode=USDJPY&Port=24001
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[0]
Executing endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[0]
Executing endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Route matched with {action = "NotifyNewStrategy", controller = "Monitor"}. Executing action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Route matched with {action = "NotifyNewStrategy", controller = "Monitor"}. Executing action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Executing action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) with arguments (Pattern_B, USDJPY, 24001) - Validation state: Valid
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Executing action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) with arguments (Pattern_B, USDJPY, 24001) - Validation state: Valid
warn: TauroPortfolioController.Controllers.MonitorController[0]
05/29/2019 02:35:34 New Strategy: Pattern_B over USDJPY asset, on 24001 port
warn: TauroPortfolioController.Controllers.MonitorController[0]
05/29/2019 02:35:34 New Strategy: Pattern_B over USDJPY asset, on 24001 port
warn: TauroPortfolioController.ExecutorModule.Executor[0]
05/29/2019 02:35:34 Setting initial parameters to strategy
warn: TauroPortfolioController.ExecutorModule.Executor[0]
05/29/2019 02:35:34 Setting initial parameters to strategy
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) in 0.8593ms
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1]
Executed endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 6.9571ms.
info: Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor[1]
Executing ObjectResult, writing value of type 'System.String'.
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) in 7.2933ms
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1]
Executed endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2]
Request finished in 7.5108ms 200 text/plain; charset=utf-8
fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1]
An unhandled exception has occurred while executing the request.
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2]
Request finished in 106.9053ms 500 text/html; charset=utf-8
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1]
Request starting HTTP/1.1 GET https://localhost:8001/api/Monitor/NewStrategy?StrategyName=Pattern_B&AssetCode=USDJPY&Port=24001
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[0]
Executing endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Route matched with {action = "NotifyNewStrategy", controller = "Monitor"}. Executing action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Executing action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) with arguments (Pattern_B, USDJPY, 24001) - Validation state: Valid
warn: TauroPortfolioController.Controllers.MonitorController[0]
05/29/2019 02:35:35 New Strategy: Pattern_B over USDJPY asset, on 24001 port
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0168ms.
info: Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor[1]
Executing ObjectResult, writing value of type 'System.String'.
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) in 0.2563ms
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1]
Executed endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2]
Request finished in 0.4219ms 200 text/plain; charset=utf-8
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/29/2019 03:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/29/2019 04:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/29/2019 05:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/29/2019 06:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.ExecutorModule.Executor[0]
05/29/2019 06:23:36 Some strategies stopped by fundamental volatility
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1]
Request starting HTTP/1.1 GET https://localhost:8001/api/Monitor/NewStrategy?StrategyName=Pattern_C&AssetCode=EURUSD&Port=25001
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[0]
Executing endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Route matched with {action = "NotifyNewStrategy", controller = "Monitor"}. Executing action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Executing action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) with arguments (Pattern_C, EURUSD, 25001) - Validation state: Valid
warn: TauroPortfolioController.Controllers.MonitorController[0]
05/29/2019 06:39:03 New Strategy: Pattern_C over EURUSD asset, on 25001 port
warn: TauroPortfolioController.ExecutorModule.Executor[0]
05/29/2019 06:39:03 Setting initial parameters to strategy
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.5607ms.
info: Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor[1]
Executing ObjectResult, writing value of type 'System.String'.
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) in 5.8987ms
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1]
Executed endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2]
Request finished in 6.0815ms 200 text/plain; charset=utf-8
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/29/2019 07:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/29/2019 08:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/29/2019 09:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/29/2019 10:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/29/2019 11:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1]
Request starting HTTP/1.1 GET https://localhost:8001/api/Monitor/NewStrategy?StrategyName=Pattern_D&AssetCode=EURUSD&Port=25001
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[0]
Executing endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Route matched with {action = "NotifyNewStrategy", controller = "Monitor"}. Executing action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Executing action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) with arguments (Pattern_D, EURUSD, 25001) - Validation state: Valid
warn: TauroPortfolioController.Controllers.MonitorController[0]
05/29/2019 11:46:39 New Strategy: Pattern_D over EURUSD asset, on 25001 port
warn: TauroPortfolioController.ExecutorModule.Executor[0]
05/29/2019 11:46:39 Setting initial parameters to strategy
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 6.9045ms.
info: Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor[1]
Executing ObjectResult, writing value of type 'System.String'.
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) in 7.2273ms
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1]
Executed endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2]
Request finished in 7.4001ms 200 text/plain; charset=utf-8
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/29/2019 12:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/29/2019 13:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/29/2019 14:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/29/2019 15:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/29/2019 16:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/29/2019 17:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/29/2019 18:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/29/2019 19:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/29/2019 20:23:34 Monitoring economic calendar and Swiset's Side Volatility Index
Application is shutting down...
^C
E:\Users\Deployment\Documents\cAlgo\Sources\Robots\TauroPortfolioController\TauroPortfolioController>
E:\Users\Deployment\Documents\cAlgo\Sources\Robots\TauroPortfolioController\TauroPortfolioController>dotnet run Program.cs
info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[0]
User profile is available. Using 'C:\Users\Deployment\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest.
Hosting environment: Development
Content root path: E:\Users\Deployment\Documents\cAlgo\Sources\Robots\TauroPortfolioController\TauroPortfolioController
Now listening on: https://localhost:8001
Now listening on: http://localhost:8000
Application started. Press Ctrl+C to shut down.
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1]
Request starting HTTP/1.1 GET https://localhost:8001/api/Monitor
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[0]
Executing endpoint 'TauroPortfolioController.Controllers.MonitorController.Index (TauroPortfolioController)'
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Route matched with {action = "Index", controller = "Monitor"}. Executing action TauroPortfolioController.Controllers.MonitorController.Index (TauroPortfolioController)
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Executing action method TauroPortfolioController.Controllers.MonitorController.Index (TauroPortfolioController) - Validation state: Valid
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action method TauroPortfolioController.Controllers.MonitorController.Index (TauroPortfolioController), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0896ms.
info: Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor[1]
Executing ObjectResult, writing value of type 'System.String'.
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action TauroPortfolioController.Controllers.MonitorController.Index (TauroPortfolioController) in 190.5279ms
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1]
Executed endpoint 'TauroPortfolioController.Controllers.MonitorController.Index (TauroPortfolioController)'
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2]
Request finished in 223.3846ms 200 text/plain; charset=utf-8
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1]
Request starting HTTP/1.1 GET https://localhost:8001/api/Monitor/NewStrategy?StrategyName=BearishDoji&AssetCode=EURUSD&Port=17001
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[0]
Executing endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Route matched with {action = "NotifyNewStrategy", controller = "Monitor"}. Executing action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Executing action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) with arguments (BearishDoji, EURUSD, 17001) - Validation state: Valid
warn: TauroPortfolioController.Controllers.MonitorController[0]
05/29/2019 21:22:03 New Strategy: BearishDoji over EURUSD asset, on 17001 port
warn: TauroPortfolioController.ExecutorModule.Executor[0]
05/29/2019 21:22:03 Setting initial parameters to strategy
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 12.1493ms.
info: Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor[1]
Executing ObjectResult, writing value of type 'System.String'.
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) in 30.3191ms
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1]
Executed endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2]
Request finished in 40.87ms 200 text/plain; charset=utf-8
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1]
Request starting HTTP/1.1 GET https://localhost:8001/api/Monitor/NewStrategy?StrategyName=Pattern_A&AssetCode=EURUSD&Port=23001
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[0]
Executing endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Route matched with {action = "NotifyNewStrategy", controller = "Monitor"}. Executing action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Executing action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) with arguments (Pattern_A, EURUSD, 23001) - Validation state: Valid
warn: TauroPortfolioController.Controllers.MonitorController[0]
05/29/2019 21:23:17 New Strategy: Pattern_A over EURUSD asset, on 23001 port
warn: TauroPortfolioController.ExecutorModule.Executor[0]
05/29/2019 21:23:17 Setting initial parameters to strategy
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 8.0836ms.
info: Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor[1]
Executing ObjectResult, writing value of type 'System.String'.
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) in 8.5254ms
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1]
Executed endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2]
Request finished in 9.4804ms 200 text/plain; charset=utf-8
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1]
Request starting HTTP/1.1 GET https://localhost:8001/api/Monitor/NewStrategy?StrategyName=Pattern_B&AssetCode=USDJPY&Port=24001
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[0]
Executing endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Route matched with {action = "NotifyNewStrategy", controller = "Monitor"}. Executing action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[1]
Executing action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) with arguments (Pattern_B, USDJPY, 24001) - Validation state: Valid
warn: TauroPortfolioController.Controllers.MonitorController[0]
05/29/2019 21:24:39 New Strategy: Pattern_B over USDJPY asset, on 24001 port
warn: TauroPortfolioController.ExecutorModule.Executor[0]
05/29/2019 21:24:39 Setting initial parameters to strategy
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action method TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 8.6078ms.
info: Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor[1]
Executing ObjectResult, writing value of type 'System.String'.
info: Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker[2]
Executed action TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController) in 8.8785ms
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1]
Executed endpoint 'TauroPortfolioController.Controllers.MonitorController.NotifyNewStrategy (TauroPortfolioController)'
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2]
Request finished in 9.0498ms 200 text/plain; charset=utf-8
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/29/2019 22:20:56 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/29/2019 23:20:56 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/30/2019 00:20:56 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/30/2019 00:20:56 Monitoring strategies performances, to reparametrize them
warn: TauroPortfolioController.AnalyserModule.Analyser[0]
05/30/2019 00:20:56 Fitness for BearishDoji: 0.01
warn: TauroPortfolioController.AnalyserModule.Analyser[0]
05/30/2019 00:20:56 Fitness for Pattern_A: 0.006347314
warn: TauroPortfolioController.AnalyserModule.Analyser[0]
05/30/2019 00:20:56 Fitness for Pattern_B: 0.000465468
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/30/2019 01:20:56 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/30/2019 02:20:56 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/30/2019 03:20:56 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/30/2019 04:20:56 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/30/2019 05:20:56 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.ExecutorModule.Executor[0]
05/30/2019 05:20:57 Some strategies stopped by fundamental volatility
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/30/2019 06:20:56 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/30/2019 07:20:56 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/30/2019 08:20:56 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/30/2019 09:20:56 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/30/2019 10:20:56 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/30/2019 11:20:59 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/30/2019 12:20:59 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/30/2019 13:20:59 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/30/2019 14:20:59 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/30/2019 15:20:59 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/30/2019 16:20:59 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.ExecutorModule.Executor[0]
05/30/2019 16:21:01 Some strategies stopped by fundamental volatility
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/30/2019 17:20:59 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.ExecutorModule.Executor[0]
05/30/2019 17:21:01 Some strategies stopped by fundamental volatility
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/30/2019 18:20:59 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/30/2019 19:20:59 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/30/2019 20:20:59 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/30/2019 21:20:59 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/30/2019 22:20:59 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/30/2019 23:20:59 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/31/2019 00:20:59 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/31/2019 00:20:59 Monitoring strategies performances, to reparametrize them
warn: TauroPortfolioController.AnalyserModule.Analyser[0]
05/31/2019 00:20:59 Fitness for BearishDoji: 0.006331793
warn: TauroPortfolioController.AnalyserModule.Analyser[0]
05/31/2019 00:20:59 Fitness for Pattern_A: 0.0017984358
warn: TauroPortfolioController.AnalyserModule.Analyser[0]
05/31/2019 00:20:59 Fitness for Pattern_B: 0.023843447
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/31/2019 01:20:59 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/31/2019 02:20:59 Monitoring economic calendar and Swiset's Side Volatility Index
warn: TauroPortfolioController.MonitorModule.Monitor[0]
05/31/2019 03:20:59 Monitoring economic calendar and Swiset's Side Volatility Index