-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathQCAlgorithm.cs
3582 lines (3229 loc) · 164 KB
/
QCAlgorithm.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
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
* Modifications Copyright (C) 2022 Capnode AB
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Globalization;
using NodaTime;
using NodaTime.TimeZones;
using QuantConnect.Benchmarks;
using QuantConnect.Brokerages;
using QuantConnect.Data;
using QuantConnect.Data.UniverseSelection;
using QuantConnect.Interfaces;
using QuantConnect.Notifications;
using QuantConnect.Orders;
using QuantConnect.Parameters;
using QuantConnect.Scheduling;
using QuantConnect.Securities;
using QuantConnect.Securities.Cfd;
using QuantConnect.Securities.Equity;
using QuantConnect.Securities.Forex;
using QuantConnect.Securities.IndexOption;
using QuantConnect.Securities.Option;
using QuantConnect.Statistics;
using QuantConnect.Util;
using QuantConnect.Data.Market;
using QuantConnect.Data.Fundamental;
using System.Collections.Concurrent;
using QuantConnect.Securities.Future;
using QuantConnect.Securities.Crypto;
using QuantConnect.Algorithm.Framework.Alphas;
using QuantConnect.Algorithm.Framework.Execution;
using QuantConnect.Algorithm.Framework.Portfolio;
using QuantConnect.Algorithm.Framework.Risk;
using QuantConnect.Algorithm.Framework.Selection;
using QuantConnect.Algorithm.Selection;
using QuantConnect.Storage;
using Index = QuantConnect.Securities.Index.Index;
using QuantConnect.Securities.CryptoFuture;
using QuantConnect.Algorithm.Framework.Alphas.Analysis;
using QuantConnect.Algorithm.Framework.Portfolio.SignalExports;
using Python.Runtime;
using QuantConnect.Commands;
using Newtonsoft.Json;
namespace QuantConnect.Algorithm
{
/// <summary>
/// QC Algorithm Base Class - Handle the basic requirements of a trading algorithm,
/// allowing user to focus on event methods. The QCAlgorithm class implements Portfolio,
/// Securities, Transactions and Data Subscription Management.
/// </summary>
public partial class QCAlgorithm : MarshalByRefObject, IAlgorithm
{
#region Documentation Attribute Categories
const string AddingData = "Adding Data";
const string AlgorithmFramework = "Algorithm Framework";
const string Charting = "Charting";
const string ConsolidatingData = "Consolidating Data";
const string HandlingData = "Handling Data";
const string HistoricalData = "Historical Data";
const string Indicators = "Indicators";
const string LiveTrading = "Live Trading";
const string Logging = "Logging";
const string MachineLearning = "Machine Learning";
const string Modeling = "Modeling";
const string ParameterAndOptimization = "Parameter and Optimization";
const string ScheduledEvents = "Scheduled Events";
const string SecuritiesAndPortfolio = "Securities and Portfolio";
const string TradingAndOrders = "Trading and Orders";
const string Universes = "Universes";
const string StatisticsTag = "Statistics";
#endregion
/// <summary>
/// Maximum length of the name or tags of a backtest
/// </summary>
protected const int MaxNameAndTagsLength = 200;
/// <summary>
/// Maximum number of tags allowed for a backtest
/// </summary>
protected const int MaxTagsCount = 100;
private readonly TimeKeeper _timeKeeper;
private LocalTimeKeeper _localTimeKeeper;
private string _name;
private HashSet<string> _tags;
private bool _tagsLimitReachedLogSent;
private bool _tagsCollectionTruncatedLogSent;
private DateTime _start;
private DateTime _startDate; //Default start and end dates.
private DateTime _endDate; //Default end to yesterday
private bool _locked;
private bool _liveMode;
private AlgorithmMode _algorithmMode;
private DeploymentTarget _deploymentTarget;
private string _algorithmId = "";
private ConcurrentQueue<string> _debugMessages = new ConcurrentQueue<string>();
private ConcurrentQueue<string> _logMessages = new ConcurrentQueue<string>();
private ConcurrentQueue<string> _errorMessages = new ConcurrentQueue<string>();
private IStatisticsService _statisticsService;
private IBrokerageModel _brokerageModel;
private readonly HashSet<string> _oneTimeCommandErrors = new();
private readonly Dictionary<string, Func<CallbackCommand, bool?>> _registeredCommands = new(StringComparer.InvariantCultureIgnoreCase);
//Error tracking to avoid message flooding:
private string _previousDebugMessage = "";
private string _previousErrorMessage = "";
/// <summary>
/// Gets the market hours database in use by this algorithm
/// </summary>
protected MarketHoursDatabase MarketHoursDatabase { get; }
/// <summary>
/// Gets the symbol properties database in use by this algorithm
/// </summary>
protected SymbolPropertiesDatabase SymbolPropertiesDatabase { get; }
// used for calling through to void OnData(Slice) if no override specified
private bool _checkedForOnDataSlice;
private Action<Slice> _onDataSlice;
// flips to true when the user
private bool _userSetSecurityInitializer;
// warmup resolution variables
private TimeSpan? _warmupTimeSpan;
private int? _warmupBarCount;
private Dictionary<string, string> _parameters = new Dictionary<string, string>();
private SecurityDefinitionSymbolResolver _securityDefinitionSymbolResolver;
private readonly HistoryRequestFactory _historyRequestFactory;
private IApi _api;
/// <summary>
/// QCAlgorithm Base Class Constructor - Initialize the underlying QCAlgorithm components.
/// QCAlgorithm manages the transactions, portfolio, charting and security subscriptions for the users algorithms.
/// </summary>
public QCAlgorithm()
{
Name = GetType().Name;
Tags = new();
Status = AlgorithmStatus.Running;
// AlgorithmManager will flip this when we're caught up with realtime
IsWarmingUp = true;
//Initialise the Algorithm Helper Classes:
//- Note - ideally these wouldn't be here, but because of the DLL we need to make the classes shared across
// the Worker & Algorithm, limiting ability to do anything else.
//Initialise Start Date:
_startDate = new DateTime(1998, 01, 01);
// intialize our time keeper with only new york
_timeKeeper = new TimeKeeper(_startDate, new[] { TimeZones.NewYork });
// set our local time zone
_localTimeKeeper = _timeKeeper.GetLocalTimeKeeper(TimeZones.NewYork);
//Initialise End Date:
SetEndDate(DateTime.UtcNow.ConvertFromUtc(TimeZone));
// Set default algorithm mode as backtesting
_algorithmMode = AlgorithmMode.Backtesting;
// Set default deployment target as local
_deploymentTarget = DeploymentTarget.LocalPlatform;
_securityDefinitionSymbolResolver = SecurityDefinitionSymbolResolver.GetInstance();
Settings = new AlgorithmSettings();
DefaultOrderProperties = new OrderProperties();
//Initialise Data Manager
SubscriptionManager = new SubscriptionManager(_timeKeeper);
Securities = new SecurityManager(_timeKeeper);
Transactions = new SecurityTransactionManager(this, Securities);
Portfolio = new SecurityPortfolioManager(Securities, Transactions, Settings, DefaultOrderProperties);
SignalExport = new SignalExportManager(this);
BrokerageModel = new DefaultBrokerageModel();
RiskFreeInterestRateModel = new InterestRateProvider();
Notify = new NotificationManager(false); // Notification manager defaults to disabled.
//Initialise to unlocked:
_locked = false;
// get exchange hours loaded from the market-hours-database.csv in /Data/market-hours
MarketHoursDatabase = MarketHoursDatabase.FromDataFolder();
SymbolPropertiesDatabase = SymbolPropertiesDatabase.FromDataFolder();
// universe selection
UniverseManager = new UniverseManager();
Universe = new UniverseDefinitions(this);
UniverseSettings = new UniverseSettings(Resolution.Minute, Security.NullLeverage, true, false, TimeSpan.FromDays(1));
// initialize our scheduler, this acts as a liason to the real time handler
Schedule = new ScheduleManager(Securities, TimeZone, MarketHoursDatabase);
// initialize the trade builder
SetTradeBuilder(new TradeBuilder(FillGroupingMethod.FillToFill, FillMatchingMethod.FIFO));
SecurityInitializer = new BrokerageModelSecurityInitializer(BrokerageModel, SecuritySeeder.Null);
CandlestickPatterns = new CandlestickPatterns(this);
// initialize trading calendar
TradingCalendar = new TradingCalendar(Securities, MarketHoursDatabase);
OptionChainProvider = new EmptyOptionChainProvider();
FutureChainProvider = new EmptyFutureChainProvider();
_historyRequestFactory = new HistoryRequestFactory(this);
// set model defaults, universe selection set via PostInitialize
SetAlpha(new NullAlphaModel());
SetPortfolioConstruction(new NullPortfolioConstructionModel());
SetExecution(new ImmediateExecutionModel());
SetRiskManagement(new NullRiskManagementModel());
SetUniverseSelection(new NullUniverseSelectionModel());
Insights = new InsightManager(this);
}
/// <summary>
/// Event fired when the algorithm generates insights
/// </summary>
[DocumentationAttribute(AlgorithmFramework)]
public event AlgorithmEvent<GeneratedInsightsCollection> InsightsGenerated;
/// <summary>
/// Security collection is an array of the security objects such as Equities and FOREX. Securities data
/// manages the properties of tradeable assets such as price, open and close time and holdings information.
/// </summary>
[DocumentationAttribute(SecuritiesAndPortfolio)]
public SecurityManager Securities
{
get;
set;
}
/// <summary>
/// Read-only dictionary containing all active securities. An active security is
/// a security that is currently selected by the universe or has holdings or open orders.
/// </summary>
[DocumentationAttribute(SecuritiesAndPortfolio)]
public IReadOnlyDictionary<Symbol, Security> ActiveSecurities => UniverseManager.ActiveSecurities;
/// <summary>
/// Portfolio object provieds easy access to the underlying security-holding properties; summed together in a way to make them useful.
/// This saves the user time by providing common portfolio requests in a single
/// </summary>
[DocumentationAttribute(SecuritiesAndPortfolio)]
public SecurityPortfolioManager Portfolio
{
get;
set;
}
/// <summary>
/// Gets the account currency
/// </summary>
[DocumentationAttribute(SecuritiesAndPortfolio)]
public string AccountCurrency => Portfolio.CashBook.AccountCurrency;
/// <summary>
/// Gets the time keeper instance
/// </summary>
public ITimeKeeper TimeKeeper => _timeKeeper;
/// <summary>
/// Generic Data Manager - Required for compiling all data feeds in order, and passing them into algorithm event methods.
/// The subscription manager contains a list of the data feed's we're subscribed to and properties of each data feed.
/// </summary>
[DocumentationAttribute(HandlingData)]
public SubscriptionManager SubscriptionManager
{
get;
set;
}
/// <summary>
/// SignalExport - Allows sending export signals to different 3rd party API's. For example, it allows to send signals
/// to Collective2, CrunchDAO and Numerai API's
/// </summary>
[DocumentationAttribute(SecuritiesAndPortfolio)]
public SignalExportManager SignalExport
{
get;
}
/// <summary>
/// The project id associated with this algorithm if any
/// </summary>
public int ProjectId
{
get;
set;
}
/// <summary>
/// Gets the brokerage model - used to model interactions with specific brokerages.
/// </summary>
[DocumentationAttribute(Modeling)]
public IBrokerageModel BrokerageModel
{
get
{
return _brokerageModel;
}
private set
{
_brokerageModel = value;
try
{
BrokerageName = Brokerages.BrokerageModel.GetBrokerageName(_brokerageModel);
}
catch (ArgumentOutOfRangeException)
{
// The brokerage model might be a custom one which has not a corresponding BrokerageName
BrokerageName = BrokerageName.Default;
}
}
}
/// <summary>
/// Gets the brokerage name.
/// </summary>
[DocumentationAttribute(Modeling)]
public BrokerageName BrokerageName
{
get;
private set;
}
/// <summary>
/// Gets the brokerage message handler used to decide what to do
/// with each message sent from the brokerage
/// </summary>
[DocumentationAttribute(Modeling)]
public IBrokerageMessageHandler BrokerageMessageHandler
{
get;
set;
}
/// <summary>
/// Gets the risk free interest rate model used to get the interest rates
/// </summary>
[DocumentationAttribute(Modeling)]
public IRiskFreeInterestRateModel RiskFreeInterestRateModel
{
get;
private set;
}
/// <summary>
/// Notification Manager for Sending Live Runtime Notifications to users about important events.
/// </summary>
[DocumentationAttribute(LiveTrading)]
public NotificationManager Notify
{
get;
set;
}
/// <summary>
/// Gets schedule manager for adding/removing scheduled events
/// </summary>
[DocumentationAttribute(ScheduledEvents)]
public ScheduleManager Schedule
{
get;
private set;
}
/// <summary>
/// Gets or sets the current status of the algorithm
/// </summary>
[DocumentationAttribute(HandlingData)]
public AlgorithmStatus Status
{
get;
set;
}
/// <summary>
/// Gets an instance that is to be used to initialize newly created securities.
/// </summary>
[DocumentationAttribute(AddingData)]
public ISecurityInitializer SecurityInitializer
{
get;
private set;
}
/// <summary>
/// Gets the Trade Builder to generate trades from executions
/// </summary>
[DocumentationAttribute(TradingAndOrders)]
public ITradeBuilder TradeBuilder
{
get;
private set;
}
/// <summary>
/// Gets an instance to access the candlestick pattern helper methods
/// </summary>
[DocumentationAttribute(Indicators)]
public CandlestickPatterns CandlestickPatterns
{
get;
private set;
}
/// <summary>
/// Gets the date rules helper object to make specifying dates for events easier
/// </summary>
[DocumentationAttribute(ScheduledEvents)]
public DateRules DateRules
{
get { return Schedule.DateRules; }
}
/// <summary>
/// Gets the time rules helper object to make specifying times for events easier
/// </summary>
[DocumentationAttribute(ScheduledEvents)]
public TimeRules TimeRules
{
get { return Schedule.TimeRules; }
}
/// <summary>
/// Gets trading calendar populated with trading events
/// </summary>
[DocumentationAttribute(ScheduledEvents)]
public TradingCalendar TradingCalendar
{
get;
private set;
}
/// <summary>
/// Gets the user settings for the algorithm
/// </summary>
[DocumentationAttribute(HandlingData)]
public IAlgorithmSettings Settings
{
get;
private set;
}
/// <summary>
/// Gets the option chain provider, used to get the list of option contracts for an underlying symbol
/// </summary>
[DocumentationAttribute(AddingData)]
[Obsolete("OptionChainProvider property is will soon be deprecated. " +
"The new OptionChain() method should be used to fetch equity and index option chains, " +
"which will contain additional data per contract, like daily price data, implied volatility and greeks.")]
public IOptionChainProvider OptionChainProvider { get; private set; }
/// <summary>
/// Gets the future chain provider, used to get the list of future contracts for an underlying symbol
/// </summary>
[DocumentationAttribute(AddingData)]
public IFutureChainProvider FutureChainProvider { get; private set; }
/// <summary>
/// Gets the default order properties
/// </summary>
[DocumentationAttribute(TradingAndOrders)]
public IOrderProperties DefaultOrderProperties { get; set; }
/// <summary>
/// Public name for the algorithm as automatically generated by the IDE. Intended for helping distinguish logs by noting
/// the algorithm-id.
/// </summary>
/// <seealso cref="AlgorithmId"/>
[DocumentationAttribute(HandlingData)]
public string Name
{
get
{
return _name;
}
set
{
if (_locked)
{
throw new InvalidOperationException("Cannot set algorithm name after it is initialized.");
}
if (!string.IsNullOrEmpty(value))
{
_name = value.Truncate(MaxNameAndTagsLength);
}
}
}
/// <summary>
/// A list of tags associated with the algorithm or the backtest, useful for categorization
/// </summary>
[DocumentationAttribute(HandlingData)]
public HashSet<string> Tags
{
get
{
return _tags;
}
set
{
if (value == null)
{
return;
}
var tags = value.Where(x => !string.IsNullOrEmpty(x?.Trim())).ToList();
if (tags.Count > MaxTagsCount && !_tagsCollectionTruncatedLogSent)
{
Log($"Warning: The tags collection cannot contain more than {MaxTagsCount} items. It will be truncated.");
_tagsCollectionTruncatedLogSent = true;
}
_tags = tags.Take(MaxTagsCount).ToHashSet(tag => tag.Truncate(MaxNameAndTagsLength));
if (_locked)
{
TagsUpdated?.Invoke(this, Tags);
}
}
}
/// <summary>
/// Event fired algorithm's name is changed
/// </summary>
[DocumentationAttribute(HandlingData)]
public event AlgorithmEvent<string> NameUpdated;
/// <summary>
/// Event fired when the tag collection is updated
/// </summary>
[DocumentationAttribute(HandlingData)]
public event AlgorithmEvent<HashSet<string>> TagsUpdated;
/// <summary>
/// Read-only value for current time frontier of the algorithm in terms of the <see cref="TimeZone"/>
/// </summary>
/// <remarks>During backtesting this is primarily sourced from the data feed. During live trading the time is updated from the system clock.</remarks>
[DocumentationAttribute(HandlingData)]
public DateTime Time
{
get { return _localTimeKeeper.LocalTime; }
}
/// <summary>
/// Current date/time in UTC.
/// </summary>
[DocumentationAttribute(HandlingData)]
public DateTime UtcTime
{
get { return _timeKeeper.UtcTime; }
}
/// <summary>
/// Gets the time zone used for the <see cref="Time"/> property. The default value
/// is <see cref="TimeZones.NewYork"/>
/// </summary>
[DocumentationAttribute(HandlingData)]
public DateTimeZone TimeZone
{
get { return _localTimeKeeper.TimeZone; }
}
/// <summary>
/// Value of the user set start-date from the backtest.
/// </summary>
/// <remarks>This property is set with SetStartDate() and defaults to the earliest QuantConnect data available - Jan 1st 1998. It is ignored during live trading </remarks>
/// <seealso cref="SetStartDate(DateTime)"/>
[DocumentationAttribute(HandlingData)]
public DateTime StartDate => _startDate;
/// <summary>
/// Value of the user set start-date from the backtest. Controls the period of the backtest.
/// </summary>
/// <remarks> This property is set with SetEndDate() and defaults to today. It is ignored during live trading.</remarks>
/// <seealso cref="SetEndDate(DateTime)"/>
[DocumentationAttribute(HandlingData)]
public DateTime EndDate
{
get
{
return _endDate;
}
}
/// <summary>
/// Algorithm Id for this backtest or live algorithm.
/// </summary>
/// <remarks>A unique identifier for </remarks>
[DocumentationAttribute(HandlingData)]
public string AlgorithmId
{
get
{
return _algorithmId;
}
}
/// <summary>
/// Boolean property indicating the algorithm is currently running in live mode.
/// </summary>
/// <remarks>Intended for use where certain behaviors will be enabled while the algorithm is trading live: such as notification emails, or displaying runtime statistics.</remarks>
[DocumentationAttribute(LiveTrading)]
public bool LiveMode
{
get
{
return _liveMode;
}
}
/// <summary>
/// Algorithm running mode.
/// </summary>
public AlgorithmMode AlgorithmMode
{
get
{
return _algorithmMode;
}
}
/// <summary>
/// Deployment target, either local or cloud.
/// </summary>
public DeploymentTarget DeploymentTarget
{
get
{
return _deploymentTarget;
}
}
/// <summary>
/// Storage for debugging messages before the event handler has passed control back to the Lean Engine.
/// </summary>
/// <seealso cref="Debug(string)"/>
[DocumentationAttribute(Logging)]
public ConcurrentQueue<string> DebugMessages
{
get
{
return _debugMessages;
}
set
{
_debugMessages = value;
}
}
/// <summary>
/// Storage for log messages before the event handlers have passed control back to the Lean Engine.
/// </summary>
/// <seealso cref="Log(string)"/>
[DocumentationAttribute(Logging)]
public ConcurrentQueue<string> LogMessages
{
get
{
return _logMessages;
}
set
{
_logMessages = value;
}
}
/// <summary>
/// Gets the run time error from the algorithm, or null if none was encountered.
/// </summary>
[DocumentationAttribute(Logging)]
public Exception RunTimeError { get; set; }
/// <summary>
/// List of error messages generated by the user's code calling the "Error" function.
/// </summary>
/// <remarks>This method is best used within a try-catch bracket to handle any runtime errors from a user algorithm.</remarks>
/// <see cref="Error(string)"/>
[DocumentationAttribute(Logging)]
public ConcurrentQueue<string> ErrorMessages
{
get
{
return _errorMessages;
}
set
{
_errorMessages = value;
}
}
/// <summary>
/// Returns the current Slice object
/// </summary>
[DocumentationAttribute(HandlingData)]
public Slice CurrentSlice { get; private set; }
/// <summary>
/// Gets the object store, used for persistence
/// </summary>
[DocumentationAttribute(HandlingData)]
[DocumentationAttribute(MachineLearning)]
public ObjectStore ObjectStore { get; private set; }
/// <summary>
/// The current statistics for the running algorithm.
/// </summary>
[DocumentationAttribute(StatisticsTag)]
public StatisticsResults Statistics
{
get
{
return _statisticsService?.StatisticsResults() ?? new StatisticsResults();
}
}
/// <summary>
/// Initialise the data and resolution required, as well as the cash and start-end dates for your algorithm. All algorithms must initialized.
/// </summary>
/// <seealso cref="SetStartDate(DateTime)"/>
/// <seealso cref="SetEndDate(DateTime)"/>
/// <seealso cref="SetCash(decimal)"/>
[DocumentationAttribute(AlgorithmFramework)]
[DocumentationAttribute(HandlingData)]
public virtual void Initialize()
{
//Setup Required Data
throw new NotImplementedException("Please override the Initialize() method");
}
/// <summary>
/// Called by setup handlers after Initialize and allows the algorithm a chance to organize
/// the data gather in the Initialize method
/// </summary>
[DocumentationAttribute(AlgorithmFramework)]
[DocumentationAttribute(HandlingData)]
public virtual void PostInitialize()
{
if (_endDate < _startDate)
{
throw new ArgumentException("Please select an algorithm end date greater than start date.");
}
var portfolioConstructionModel = PortfolioConstruction as PortfolioConstructionModel;
if (portfolioConstructionModel != null)
{
// only override default values if user set the algorithm setting
if (Settings.RebalancePortfolioOnSecurityChanges.HasValue)
{
portfolioConstructionModel.RebalanceOnSecurityChanges
= Settings.RebalancePortfolioOnSecurityChanges.Value;
}
if (Settings.RebalancePortfolioOnInsightChanges.HasValue)
{
portfolioConstructionModel.RebalanceOnInsightChanges
= Settings.RebalancePortfolioOnInsightChanges.Value;
}
}
else
{
if (Settings.RebalancePortfolioOnInsightChanges.HasValue
|| Settings.RebalancePortfolioOnSecurityChanges.HasValue)
{
Debug("Warning: rebalance portfolio settings are set but not supported by the current IPortfolioConstructionModel type: " +
$"{PortfolioConstruction.GetType()}");
}
}
FrameworkPostInitialize();
// if the benchmark hasn't been set yet, load in the default from the brokerage model
if (Benchmark == null)
{
Benchmark = BrokerageModel.GetBenchmark(Securities);
}
// Check benchmark timezone against algorithm timezone to warn for misaligned statistics
if (Benchmark is SecurityBenchmark securityBenchmark)
{
// Only warn on algorithms subscribed to daily resolution as its statistics will suffer the most
var subscription = SubscriptionManager.Subscriptions.OrderByDescending(x => x.Resolution).FirstOrDefault();
var benchmarkTimeZone = MarketHoursDatabase.GetDataTimeZone(securityBenchmark.Security.Symbol.ID.Market,
securityBenchmark.Security.Symbol, securityBenchmark.Security.Type);
if ((subscription?.Resolution == Resolution.Daily || UniverseSettings.Resolution == Resolution.Daily) && benchmarkTimeZone != TimeZone)
{
Log($"QCAlgorithm.PostInitialize(): Warning: Using a security benchmark of a different timezone ({benchmarkTimeZone})" +
$" than the algorithm TimeZone ({TimeZone}) may lead to skewed and incorrect statistics. Use a higher resolution than daily to minimize.");
}
}
if (TryGetWarmupHistoryStartTime(out var result))
{
SetDateTime(result.ConvertToUtc(TimeZone));
}
else
{
SetFinishedWarmingUp();
}
if (Settings.DailyPreciseEndTime)
{
Debug("Accurate daily end-times now enabled by default. See more at https://qnt.co/3YHaWHL. To disable it and use legacy daily bars set self.settings.daily_precise_end_time = False.");
}
// perform end of time step checks, such as enforcing underlying securities are in raw data mode
OnEndOfTimeStep();
}
/// <summary>
/// Called when the algorithm has completed initialization and warm up.
/// </summary>
[DocumentationAttribute(HandlingData)]
public virtual void OnWarmupFinished()
{
}
/// <summary>
/// Gets the parameter with the specified name. If a parameter with the specified name does not exist,
/// the given default value is returned if any, else null
/// </summary>
/// <param name="name">The name of the parameter to get</param>
/// <param name="defaultValue">The default value to return</param>
/// <returns>The value of the specified parameter, or defaultValue if not found or null if there's no default value</returns>
[DocumentationAttribute(ParameterAndOptimization)]
public string GetParameter(string name, string defaultValue = null)
{
return _parameters.TryGetValue(name, out var value) ? value : defaultValue;
}
/// <summary>
/// Gets the parameter with the specified name parsed as an integer. If a parameter with the specified name does not exist,
/// or the conversion is not possible, the given default value is returned
/// </summary>
/// <param name="name">The name of the parameter to get</param>
/// <param name="defaultValue">The default value to return</param>
/// <returns>The value of the specified parameter, or defaultValue if not found or null if there's no default value</returns>
[DocumentationAttribute(ParameterAndOptimization)]
public int GetParameter(string name, int defaultValue)
{
return _parameters.TryGetValue(name, out var strValue) && int.TryParse(strValue, out var value) ? value : defaultValue;
}
/// <summary>
/// Gets the parameter with the specified name parsed as a double. If a parameter with the specified name does not exist,
/// or the conversion is not possible, the given default value is returned
/// </summary>
/// <param name="name">The name of the parameter to get</param>
/// <param name="defaultValue">The default value to return</param>
/// <returns>The value of the specified parameter, or defaultValue if not found or null if there's no default value</returns>
[DocumentationAttribute(ParameterAndOptimization)]
public double GetParameter(string name, double defaultValue)
{
return _parameters.TryGetValue(name, out var strValue) &&
double.TryParse(strValue, NumberStyles.Any, CultureInfo.InvariantCulture, out var value) ? value : defaultValue;
}
/// <summary>
/// Gets the parameter with the specified name parsed as a decimal. If a parameter with the specified name does not exist,
/// or the conversion is not possible, the given default value is returned
/// </summary>
/// <param name="name">The name of the parameter to get</param>
/// <param name="defaultValue">The default value to return</param>
/// <returns>The value of the specified parameter, or defaultValue if not found or null if there's no default value</returns>
[DocumentationAttribute(ParameterAndOptimization)]
public decimal GetParameter(string name, decimal defaultValue)
{
return _parameters.TryGetValue(name, out var strValue) &&
decimal.TryParse(strValue, NumberStyles.Any, CultureInfo.InvariantCulture, out var value) ? value : defaultValue;
}
/// <summary>
/// Gets a read-only dictionary with all current parameters
/// </summary>
[DocumentationAttribute(ParameterAndOptimization)]
public IReadOnlyDictionary<string, string> GetParameters()
{
return _parameters.ToReadOnlyDictionary();
}
/// <summary>
/// Sets the parameters from the dictionary
/// </summary>
/// <param name="parameters">Dictionary containing the parameter names to values</param>
[DocumentationAttribute(ParameterAndOptimization)]
public void SetParameters(Dictionary<string, string> parameters)
{
// save off a copy and try to apply the parameters
_parameters = parameters.ToDictionary();
try
{
ParameterAttribute.ApplyAttributes(parameters, this);
}
catch (Exception err)
{
Error("Error applying parameter values: " + err.Message);
}
}
/// <summary>
/// Set the available data feeds in the <see cref="SecurityManager"/>
/// </summary>
/// <param name="availableDataTypes">The different <see cref="TickType"/> each <see cref="Security"/> supports</param>
[DocumentationAttribute(HandlingData)]
public void SetAvailableDataTypes(Dictionary<SecurityType, List<TickType>> availableDataTypes)
{
if (availableDataTypes == null)
{
return;
}
foreach (var dataFeed in availableDataTypes)
{
SubscriptionManager.AvailableDataTypes[dataFeed.Key] = dataFeed.Value;
}
}
/// <summary>
/// Sets the security initializer, used to initialize/configure securities after creation.
/// The initializer will be applied to all universes and manually added securities.
/// </summary>
/// <param name="securityInitializer">The security initializer</param>
[DocumentationAttribute(AddingData)]
[DocumentationAttribute(Modeling)]
public void SetSecurityInitializer(ISecurityInitializer securityInitializer)
{
if (_locked)
{
throw new Exception("SetSecurityInitializer() cannot be called after algorithm initialization. " +
"When you use the SetSecurityInitializer() method it will apply to all universes and manually added securities.");
}
if (_userSetSecurityInitializer)
{
Debug("Warning: SetSecurityInitializer() has already been called, existing security initializers in all universes will be overwritten.");
}
// this flag will prevent calls to SetBrokerageModel from overwriting this initializer
_userSetSecurityInitializer = true;
SecurityInitializer = securityInitializer;
}
/// <summary>
/// Sets the security initializer function, used to initialize/configure securities after creation.
/// The initializer will be applied to all universes and manually added securities.
/// </summary>
/// <param name="securityInitializer">The security initializer function</param>
[Obsolete("This method is deprecated. Please use this overload: SetSecurityInitializer(Action<Security> securityInitializer)")]
[DocumentationAttribute(AddingData)]
[DocumentationAttribute(Modeling)]
public void SetSecurityInitializer(Action<Security, bool> securityInitializer)
{
SetSecurityInitializer(new FuncSecurityInitializer(security => securityInitializer(security, false)));
}
/// <summary>
/// Sets the security initializer function, used to initialize/configure securities after creation.
/// The initializer will be applied to all universes and manually added securities.
/// </summary>
/// <param name="securityInitializer">The security initializer function</param>
[DocumentationAttribute(AddingData)]
[DocumentationAttribute(Modeling)]
public void SetSecurityInitializer(Action<Security> securityInitializer)
{
SetSecurityInitializer(new FuncSecurityInitializer(securityInitializer));
}
/// <summary>
/// Sets the option chain provider, used to get the list of option contracts for an underlying symbol
/// </summary>
/// <param name="optionChainProvider">The option chain provider</param>