quantconnect-stubs 17397__py3-none-any.whl → 17410__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,6 +4,7 @@ import datetime
4
4
  import typing
5
5
  import warnings
6
6
 
7
+ import Common.Util
7
8
  import QuantConnect
8
9
  import QuantConnect.Algorithm
9
10
  import QuantConnect.Algorithm.Framework.Alphas
@@ -1065,7 +1066,7 @@ class QCAlgorithm(System.MarshalByRefObject, QuantConnect.Interfaces.IAlgorithm)
1065
1066
  ...
1066
1067
 
1067
1068
  @property
1068
- def active_securities(self) -> System.Collections.Generic.IReadOnlyDictionary[QuantConnect.Symbol, QuantConnect.Securities.Security]:
1069
+ def active_securities(self) -> Common.Util.ReadOnlyExtendedDictionary[QuantConnect.Symbol, QuantConnect.Securities.Security]:
1069
1070
  """
1070
1071
  Read-only dictionary containing all active securities. An active security is
1071
1072
  a security that is currently selected by the universe or has holdings or open orders.
@@ -1487,6 +1488,16 @@ class QCAlgorithm(System.MarshalByRefObject, QuantConnect.Interfaces.IAlgorithm)
1487
1488
  ...
1488
1489
 
1489
1490
  def add_cfd(self, ticker: str, resolution: typing.Optional[QuantConnect.Resolution] = None, market: str = None, fill_forward: bool = True, leverage: float = ...) -> QuantConnect.Securities.Cfd.Cfd:
1491
+ """
1492
+ Creates and adds a new Cfd security to the algorithm
1493
+
1494
+ :param ticker: The CFD ticker symbol
1495
+ :param resolution: The Resolution of market data, Tick, Second, Minute, Hour, or Daily. Default is Resolution.MINUTE
1496
+ :param market: The cfd trading market, Market. Default value is null and looked up using IBrokerageModel.default_markets in AddSecurity{T}
1497
+ :param fill_forward: If true, returns the last available data even if none in that timeslice. Default is true
1498
+ :param leverage: The requested leverage for this CFD. Default is set by security_initializer
1499
+ :returns: The new Cfd security.
1500
+ """
1490
1501
  ...
1491
1502
 
1492
1503
  def add_chart(self, chart: QuantConnect.Chart) -> None:
@@ -1509,6 +1520,16 @@ class QCAlgorithm(System.MarshalByRefObject, QuantConnect.Interfaces.IAlgorithm)
1509
1520
  ...
1510
1521
 
1511
1522
  def add_crypto_future(self, ticker: str, resolution: typing.Optional[QuantConnect.Resolution] = None, market: str = None, fill_forward: bool = True, leverage: float = ...) -> QuantConnect.Securities.CryptoFuture.CryptoFuture:
1523
+ """
1524
+ Creates and adds a new CryptoFuture security to the algorithm
1525
+
1526
+ :param ticker: The crypto future ticker symbol
1527
+ :param resolution: The Resolution of market data, Tick, Second, Minute, Hour, or Daily. Default is Resolution.MINUTE
1528
+ :param market: The The crypto future trading market, Market. Default value is null and looked up using IBrokerageModel.default_markets in AddSecurity{T}
1529
+ :param fill_forward: If true, returns the last available data even if none in that timeslice. Default is true
1530
+ :param leverage: The requested leverage for this crypto future. Default is set by security_initializer
1531
+ :returns: The new CryptoFuture security.
1532
+ """
1512
1533
  ...
1513
1534
 
1514
1535
  @overload
@@ -1649,6 +1670,16 @@ class QCAlgorithm(System.MarshalByRefObject, QuantConnect.Interfaces.IAlgorithm)
1649
1670
  ...
1650
1671
 
1651
1672
  def add_forex(self, ticker: str, resolution: typing.Optional[QuantConnect.Resolution] = None, market: str = None, fill_forward: bool = True, leverage: float = ...) -> QuantConnect.Securities.Forex.Forex:
1673
+ """
1674
+ Creates and adds a new Forex security to the algorithm
1675
+
1676
+ :param ticker: The currency pair
1677
+ :param resolution: The Resolution of market data, Tick, Second, Minute, Hour, or Daily. Default is Resolution.MINUTE
1678
+ :param market: The foreign exchange trading market, Market. Default value is null and looked up using IBrokerageModel.default_markets in AddSecurity{T}
1679
+ :param fill_forward: If true, returns the last available data even if none in that timeslice. Default is true
1680
+ :param leverage: The requested leverage for this forex security. Default is set by security_initializer
1681
+ :returns: The new Forex security.
1682
+ """
1652
1683
  ...
1653
1684
 
1654
1685
  def add_future(self, ticker: str, resolution: typing.Optional[QuantConnect.Resolution] = None, market: str = None, fill_forward: bool = True, leverage: float = ..., extended_market_hours: bool = False, data_mapping_mode: typing.Optional[QuantConnect.DataMappingMode] = None, data_normalization_mode: typing.Optional[QuantConnect.DataNormalizationMode] = None, contract_depth_offset: int = 0) -> QuantConnect.Securities.Future.Future:
@@ -3509,7 +3540,7 @@ class QCAlgorithm(System.MarshalByRefObject, QuantConnect.Interfaces.IAlgorithm)
3509
3540
  """
3510
3541
  ...
3511
3542
 
3512
- def get_parameters(self) -> System.Collections.Generic.IReadOnlyDictionary[str, str]:
3543
+ def get_parameters(self) -> Common.Util.ReadOnlyExtendedDictionary[str, str]:
3513
3544
  """Gets a read-only dictionary with all current parameters"""
3514
3545
  ...
3515
3546
 
@@ -3,6 +3,7 @@ from enum import IntEnum
3
3
  import datetime
4
4
  import typing
5
5
 
6
+ import Common.Util
6
7
  import QuantConnect
7
8
  import QuantConnect.Algorithm
8
9
  import QuantConnect.Algorithm.Framework.Alphas
@@ -540,7 +541,7 @@ class AlgorithmPythonWrapper(QuantConnect.Python.BasePythonWrapper[QuantConnect.
540
541
  """
541
542
  ...
542
543
 
543
- def get_parameters(self) -> System.Collections.Generic.IReadOnlyDictionary[str, str]:
544
+ def get_parameters(self) -> Common.Util.ReadOnlyExtendedDictionary[str, str]:
544
545
  """Gets a read-only dictionary with all current parameters"""
545
546
  ...
546
547
 
@@ -2,6 +2,7 @@ from typing import overload
2
2
  from enum import IntEnum
3
3
  import datetime
4
4
  import typing
5
+ import warnings
5
6
 
6
7
  import QuantConnect
7
8
  import QuantConnect.Algorithm.Framework.Alphas
@@ -28,18 +29,24 @@ class ApiConnection(System.Object):
28
29
 
29
30
  @property
30
31
  def client(self) -> typing.Any:
31
- """Authorized client to use for requests."""
32
- ...
32
+ """
33
+ Authorized client to use for requests.
34
+
35
+
36
+ RestSharp is deprecated and will be removed in a future release. Please use the SetClient method or the request methods that take an HttpRequestMessage
37
+ """
38
+ warnings.warn("RestSharp is deprecated and will be removed in a future release. Please use the SetClient method or the request methods that take an HttpRequestMessage", DeprecationWarning)
33
39
 
34
40
  @client.setter
35
41
  def client(self, value: typing.Any) -> None:
36
- ...
42
+ warnings.warn("RestSharp is deprecated and will be removed in a future release. Please use the SetClient method or the request methods that take an HttpRequestMessage", DeprecationWarning)
37
43
 
38
44
  @property
39
45
  def connected(self) -> bool:
40
46
  """Return true if connected successfully."""
41
47
  ...
42
48
 
49
+ @overload
43
50
  def __init__(self, user_id: int, token: str) -> None:
44
51
  """
45
52
  Create a new Api Connection Class.
@@ -49,6 +56,29 @@ class ApiConnection(System.Object):
49
56
  """
50
57
  ...
51
58
 
59
+ @overload
60
+ def __init__(self, user_id: int, token: str, base_url: str = None, default_headers: System.Collections.Generic.Dictionary[str, str] = None, timeout: int = 0) -> None:
61
+ """
62
+ Create a new Api Connection Class.
63
+
64
+ :param user_id: User Id number from QuantConnect.com account. Found at www.quantconnect.com/account
65
+ :param token: Access token for the QuantConnect account. Found at www.quantconnect.com/account
66
+ :param base_url: The client's base address
67
+ :param default_headers: Default headers for the client
68
+ :param timeout: The client timeout in seconds
69
+ """
70
+ ...
71
+
72
+ def set_client(self, base_url: str, default_headers: System.Collections.Generic.Dictionary[str, str] = None, timeout: int = 0) -> None:
73
+ """
74
+ Overrides the current client
75
+
76
+ :param base_url: The client's base address
77
+ :param default_headers: Default headers for the client
78
+ :param timeout: The client timeout in seconds
79
+ """
80
+ ...
81
+
52
82
 
53
83
  class StringRepresentation(System.Object):
54
84
  """Class to return the string representation of an API response class"""
@@ -2290,6 +2290,74 @@ class DefaultBrokerageModel(System.Object, QuantConnect.Brokerages.IBrokerageMod
2290
2290
  ...
2291
2291
 
2292
2292
 
2293
+ class dYdXBrokerageModel(QuantConnect.Brokerages.DefaultBrokerageModel):
2294
+ """This class has no documentation."""
2295
+
2296
+ @property
2297
+ def default_markets(self) -> System.Collections.Generic.IReadOnlyDictionary[QuantConnect.SecurityType, str]:
2298
+ """Gets a map of the default markets to be used for each security type"""
2299
+ ...
2300
+
2301
+ def __init__(self, account_type: QuantConnect.AccountType = ...) -> None:
2302
+ """
2303
+ Initializes a new instance of the dYdXBrokerageModel class
2304
+
2305
+ :param account_type: The type of account to be modeled, defaults to AccountType.MARGIN
2306
+ """
2307
+ ...
2308
+
2309
+ def can_submit_order(self, security: QuantConnect.Securities.Security, order: QuantConnect.Orders.Order, message: typing.Optional[QuantConnect.Brokerages.BrokerageMessageEvent]) -> typing.Tuple[bool, QuantConnect.Brokerages.BrokerageMessageEvent]:
2310
+ """
2311
+ Returns true if the brokerage could accept this order. This takes into account
2312
+ order type, security type, and order size limits.
2313
+
2314
+ :param security: The security of the order
2315
+ :param order: The order to be processed
2316
+ :param message: If this function returns false, a brokerage message detailing why the order may not be submitted
2317
+ :returns: True if the brokerage could process the order, false otherwise.
2318
+ """
2319
+ ...
2320
+
2321
+ def can_update_order(self, security: QuantConnect.Securities.Security, order: QuantConnect.Orders.Order, request: QuantConnect.Orders.UpdateOrderRequest, message: typing.Optional[QuantConnect.Brokerages.BrokerageMessageEvent]) -> typing.Tuple[bool, QuantConnect.Brokerages.BrokerageMessageEvent]:
2322
+ """
2323
+ Returns true if the brokerage could accept this order update. This takes into account
2324
+ order type, security type, and order size limits. dYdX can only update inverse, linear, and option orders
2325
+
2326
+ :param security: The security of the order
2327
+ :param order: The order to be updated
2328
+ :param request: The requested update to be made to the order
2329
+ :param message: If this function returns false, a brokerage message detailing why the order may not be updated
2330
+ :returns: True if the brokerage could update the order, false otherwise.
2331
+ """
2332
+ ...
2333
+
2334
+ def get_benchmark(self, securities: QuantConnect.Securities.SecurityManager) -> QuantConnect.Benchmarks.IBenchmark:
2335
+ """
2336
+ Get the benchmark for this model
2337
+
2338
+ :param securities: SecurityService to create the security with if needed
2339
+ :returns: The benchmark for this brokerage.
2340
+ """
2341
+ ...
2342
+
2343
+ def get_fee_model(self, security: QuantConnect.Securities.Security) -> QuantConnect.Orders.Fees.IFeeModel:
2344
+ """
2345
+ Provides dYdX fee model
2346
+
2347
+ :param security:
2348
+ """
2349
+ ...
2350
+
2351
+ def get_margin_interest_rate_model(self, security: QuantConnect.Securities.Security) -> QuantConnect.Securities.IMarginInterestRateModel:
2352
+ """
2353
+ Gets a new margin interest rate model for the security
2354
+
2355
+ :param security: The security to get a margin interest rate model for
2356
+ :returns: The margin interest rate model for this brokerage.
2357
+ """
2358
+ ...
2359
+
2360
+
2293
2361
  class BinanceBrokerageModel(QuantConnect.Brokerages.DefaultBrokerageModel):
2294
2362
  """Provides Binance specific properties"""
2295
2363
 
@@ -2624,6 +2692,9 @@ class BrokerageName(IntEnum):
2624
2692
  INTERACTIVE_BROKERS_FIX = 33
2625
2693
  """Transaction and submit/execution rules will use interactive brokers Fix models"""
2626
2694
 
2695
+ D_YD_X = 34
2696
+ """Transaction and submit/execution rules will use dYdX models"""
2697
+
2627
2698
 
2628
2699
  class BrokerageModel(System.Object):
2629
2700
  """Provides factory method for creating an IBrokerageModel from the BrokerageName enum"""
@@ -940,7 +940,7 @@ class Slice(QuantConnect.ExtendedDictionary[QuantConnect.Symbol, typing.Any], ty
940
940
  """Provides a data structure for all of an algorithm's data at a single time step"""
941
941
 
942
942
  @property
943
- def all_data(self) -> typing.List[QuantConnect.Data.BaseData]:
943
+ def all_data(self) -> typing.Iterable[QuantConnect.Data.BaseData]:
944
944
  """All the data hold in this slice"""
945
945
  ...
946
946
 
@@ -5,6 +5,7 @@ import datetime
5
5
  import typing
6
6
  import warnings
7
7
 
8
+ import Common.Util
8
9
  import QuantConnect
9
10
  import QuantConnect.Algorithm.Framework.Alphas
10
11
  import QuantConnect.Algorithm.Framework.Alphas.Analysis
@@ -2432,7 +2433,7 @@ class IAlgorithm(QuantConnect.Interfaces.ISecurityInitializerProvider, QuantConn
2432
2433
  """
2433
2434
  ...
2434
2435
 
2435
- def get_parameters(self) -> System.Collections.Generic.IReadOnlyDictionary[str, str]:
2436
+ def get_parameters(self) -> Common.Util.ReadOnlyExtendedDictionary[str, str]:
2436
2437
  """Gets a read-only dictionary with all current parameters"""
2437
2438
  ...
2438
2439
 
@@ -1117,33 +1117,6 @@ class BacktestingResultHandler(QuantConnect.Lean.Engine.Results.BaseResultsHandl
1117
1117
  """Creates a new instance"""
1118
1118
  ...
1119
1119
 
1120
- def add_to_log_store(self, message: str) -> None:
1121
- """
1122
- Add message to LogStore
1123
-
1124
-
1125
- This codeEntityType is protected.
1126
-
1127
- :param message: Message to add
1128
- """
1129
- ...
1130
-
1131
- def algorithm_name_updated(self, name: str) -> None:
1132
- """
1133
- Handles updates to the algorithm's name
1134
-
1135
- :param name: The new name
1136
- """
1137
- ...
1138
-
1139
- def algorithm_tags_updated(self, tags: System.Collections.Generic.HashSet[str]) -> None:
1140
- """
1141
- Sends a packet communicating an update to the algorithm's tags
1142
-
1143
- :param tags: The new tags
1144
- """
1145
- ...
1146
-
1147
1120
  def brokerage_message(self, brokerage_message_event: QuantConnect.Brokerages.BrokerageMessageEvent) -> None:
1148
1121
  """
1149
1122
  Process brokerage message events
@@ -1497,17 +1470,6 @@ class LiveTradingResultHandler(QuantConnect.Lean.Engine.Results.BaseResultsHandl
1497
1470
  """Creates a new instance"""
1498
1471
  ...
1499
1472
 
1500
- def add_to_log_store(self, message: str) -> None:
1501
- """
1502
- Save an algorithm message to the log store. Uses a different timestamped method of adding messaging to interweve debug and logging messages.
1503
-
1504
-
1505
- This codeEntityType is protected.
1506
-
1507
- :param message: String message to send to browser.
1508
- """
1509
- ...
1510
-
1511
1473
  def brokerage_message(self, brokerage_message_event: QuantConnect.Brokerages.BrokerageMessageEvent) -> None:
1512
1474
  """
1513
1475
  Process brokerage message events
@@ -676,6 +676,41 @@ class GDAXFeeModel(QuantConnect.Orders.Fees.CoinbaseFeeModel):
676
676
  """
677
677
 
678
678
 
679
+ class dYdXFeeModel(QuantConnect.Orders.Fees.FeeModel):
680
+ """dYdX fee model implementation"""
681
+
682
+ def __init__(self, m_fee: float = ..., t_fee: float = ...) -> None:
683
+ """
684
+ Creates Binance fee model setting fees values
685
+
686
+ :param m_fee: Maker fee value
687
+ :param t_fee: Taker fee value
688
+ """
689
+ ...
690
+
691
+ def get_fee(self, order: QuantConnect.Orders.Order) -> float:
692
+ """
693
+ Gets the fee factor for the given order
694
+
695
+
696
+ This codeEntityType is protected.
697
+
698
+ :param order: The order to get the fee factor for
699
+ :returns: The fee factor for the given order.
700
+ """
701
+ ...
702
+
703
+ def get_order_fee(self, parameters: QuantConnect.Orders.Fees.OrderFeeParameters) -> QuantConnect.Orders.Fees.OrderFee:
704
+ """
705
+ Gets the order fee associated with the specified order.
706
+
707
+ :param parameters: A OrderFeeParameters object
708
+ containing the security and order
709
+ :returns: The cost of the order in a CashAmount instance.
710
+ """
711
+ ...
712
+
713
+
679
714
  class TDAmeritradeFeeModel(QuantConnect.Orders.Fees.FeeModel):
680
715
  """Provides an implementation of FeeModel that models TDAmeritrade order fees"""
681
716
 
@@ -151,6 +151,55 @@ class EzeOrderProperties(QuantConnect.Orders.OrderProperties):
151
151
  ...
152
152
 
153
153
 
154
+ class dYdXOrderProperties(QuantConnect.Orders.OrderProperties):
155
+ """Contains additional properties and settings for an order submitted to Binance brokerage"""
156
+
157
+ @property
158
+ def post_only(self) -> bool:
159
+ """
160
+ This flag will ensure the order executes only as a maker (no fee) order.
161
+ If part of the order results in taking liquidity rather than providing,
162
+ it will be rejected and no part of the order will execute.
163
+ Note: this flag is only applied to Limit orders.
164
+ """
165
+ ...
166
+
167
+ @post_only.setter
168
+ def post_only(self, value: bool) -> None:
169
+ ...
170
+
171
+ @property
172
+ def gas_limit(self) -> int:
173
+ """The maximum amount of gas to use for the order."""
174
+ ...
175
+
176
+ @gas_limit.setter
177
+ def gas_limit(self, value: int) -> None:
178
+ ...
179
+
180
+ @property
181
+ def reduce_only(self) -> bool:
182
+ """If you send a reduce-only order, it will only trade if it decreases your position size."""
183
+ ...
184
+
185
+ @reduce_only.setter
186
+ def reduce_only(self, value: bool) -> None:
187
+ ...
188
+
189
+ @property
190
+ def good_til_block_offset(self) -> int:
191
+ """The block height at which the order expires."""
192
+ ...
193
+
194
+ @good_til_block_offset.setter
195
+ def good_til_block_offset(self, value: int) -> None:
196
+ ...
197
+
198
+ def clone(self) -> QuantConnect.Interfaces.IOrderProperties:
199
+ """Returns a new instance clone of this object"""
200
+ ...
201
+
202
+
154
203
  class InteractiveBrokersOrderProperties(QuantConnect.Orders.OrderProperties):
155
204
  """Contains additional properties and settings for an order submitted to Interactive Brokers"""
156
205
 
@@ -6342,7 +6342,7 @@ class UniverseManager(Common.Util.BaseExtendedDictionary[QuantConnect.Symbol, Qu
6342
6342
  ...
6343
6343
 
6344
6344
  @property
6345
- def active_securities(self) -> System.Collections.Generic.IReadOnlyDictionary[QuantConnect.Symbol, QuantConnect.Securities.Security]:
6345
+ def active_securities(self) -> Common.Util.ReadOnlyExtendedDictionary[QuantConnect.Symbol, QuantConnect.Securities.Security]:
6346
6346
  """
6347
6347
  Read-only dictionary containing all active securities. An active security is
6348
6348
  a security that is currently selected by the universe or has holdings or open orders.
QuantConnect/__init__.pyi CHANGED
@@ -4666,6 +4666,9 @@ class Market(System.Object):
4666
4666
  INTERACTIVE_BROKERS: str = "interactivebrokers"
4667
4667
  """InteractiveBrokers market"""
4668
4668
 
4669
+ D_YD_X: str = "dydx"
4670
+ """dYdX market"""
4671
+
4669
4672
  @staticmethod
4670
4673
  def add(market: str, identifier: int) -> None:
4671
4674
  """
System/IO/__init__.pyi CHANGED
@@ -744,6 +744,10 @@ class TextWriter(System.MarshalByRefObject, System.IDisposable, System.IAsyncDis
744
744
  def write_async(self, value: System.Text.Rune) -> System.Threading.Tasks.Task:
745
745
  ...
746
746
 
747
+ @overload
748
+ def write_async(self, value: str, cancellation_token: System.Threading.CancellationToken) -> System.Threading.Tasks.Task:
749
+ ...
750
+
747
751
  @overload
748
752
  def write_async(self, value: System.Text.StringBuilder, cancellation_token: System.Threading.CancellationToken = ...) -> System.Threading.Tasks.Task:
749
753
  ...
@@ -828,6 +832,10 @@ class TextWriter(System.MarshalByRefObject, System.IDisposable, System.IAsyncDis
828
832
  def write_line_async(self, value: System.Text.Rune) -> System.Threading.Tasks.Task:
829
833
  ...
830
834
 
835
+ @overload
836
+ def write_line_async(self, value: str, cancellation_token: System.Threading.CancellationToken) -> System.Threading.Tasks.Task:
837
+ ...
838
+
831
839
  @overload
832
840
  def write_line_async(self, value: System.Text.StringBuilder, cancellation_token: System.Threading.CancellationToken = ...) -> System.Threading.Tasks.Task:
833
841
  ...
@@ -848,6 +856,10 @@ class TextWriter(System.MarshalByRefObject, System.IDisposable, System.IAsyncDis
848
856
  def write_line_async(self) -> System.Threading.Tasks.Task:
849
857
  ...
850
858
 
859
+ @overload
860
+ def write_line_async(self, cancellation_token: System.Threading.CancellationToken) -> System.Threading.Tasks.Task:
861
+ ...
862
+
851
863
 
852
864
  class StreamWriter(System.IO.TextWriter):
853
865
  """This class has no documentation."""
@@ -960,15 +960,15 @@ class Thread(System.Runtime.ConstrainedExecution.CriticalFinalizerObject):
960
960
  ...
961
961
 
962
962
  @overload
963
- def join(self) -> None:
963
+ def join(self, milliseconds_timeout: int) -> bool:
964
964
  ...
965
965
 
966
966
  @overload
967
- def join(self, timeout: datetime.timedelta) -> bool:
967
+ def join(self) -> None:
968
968
  ...
969
969
 
970
970
  @overload
971
- def join(self, milliseconds_timeout: int) -> bool:
971
+ def join(self, timeout: datetime.timedelta) -> bool:
972
972
  ...
973
973
 
974
974
  @staticmethod
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: quantconnect-stubs
3
- Version: 17397
3
+ Version: 17410
4
4
  Summary: Type stubs for QuantConnect's Lean
5
5
  Home-page: https://github.com/QuantConnect/quantconnect-stubs-generator
6
6
  Author: QuantConnect
@@ -27,10 +27,10 @@ Microsoft/Win32/__init__.py,sha256=8X_8pQHcKAumodSYajDoAQOJpdq8N0ETUtbLbQLLte4,1
27
27
  Microsoft/Win32/SafeHandles/__init__.py,sha256=C8zIF49CXwkenDpzBvYsqmUB0MS0fNa264YZHmInHJc,1235
28
28
  Microsoft/Win32/SafeHandles/__init__.pyi,sha256=U9EUVE4_EZF8FAUfMb5bh-UQnj6SkmDnfZtuRNKQP-s,2065
29
29
  QuantConnect/__init__.py,sha256=midIrNbX2TrTKCS981vuDbV9yxeoQH-q0XiO0-If0M8,1200
30
- QuantConnect/__init__.pyi,sha256=1M1etQJfmdPKx-zl6normmj3YMiZY0EDYm7Q47tWYqc,431501
30
+ QuantConnect/__init__.pyi,sha256=C-sfiCEo0KDh6dpicdAI3Kc_HBM0rHIK1QXBJB9LPqA,431549
31
31
  QuantConnect/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
32
  QuantConnect/Algorithm/__init__.py,sha256=Djvj5MZNx_nHNC9op6yKxB4fdq4ko0xkYM7RNItdbW8,1223
33
- QuantConnect/Algorithm/__init__.pyi,sha256=WuRNKRKooBcNFZuRUBOTbYejHx5DnASNFwN8B5S0kHY,436058
33
+ QuantConnect/Algorithm/__init__.pyi,sha256=GUifoHAULr0gJKozSdL13CQ7l3TpEg7ezb0TFYFP_iY,438147
34
34
  QuantConnect/Algorithm/Framework/__init__.py,sha256=vf82jxO59Yuotr2SVI1XuEtZh0iVhRUaglZdGcnsmyk,1253
35
35
  QuantConnect/Algorithm/Framework/__init__.pyi,sha256=3XALw5sRXw35hHnDufe6j-3vuWhSiU9zG7mL_4A97Lw,2054
36
36
  QuantConnect/Algorithm/Framework/Alphas/__init__.py,sha256=P7DeE_faVccNqZjE0W518NlC9UTY-r2QXriYt3w0qsw,1274
@@ -55,15 +55,15 @@ QuantConnect/AlgorithmFactory/__init__.py,sha256=FktH2wEoh6428LM3Guxmd_uOeTCC1hY
55
55
  QuantConnect/AlgorithmFactory/__init__.pyi,sha256=XqArMTg8A2vjybu7vzwrze-AdWfPfAopB7FJ2LxeXLs,5427
56
56
  QuantConnect/AlgorithmFactory/Python/__init__.py,sha256=qfqTno5V4yyBr9nKwrGV3AjD5NNMHubeq60AiLOz7SY,1265
57
57
  QuantConnect/AlgorithmFactory/Python/Wrappers/__init__.py,sha256=Jn99uwgA99uqOBNophlXrnhBgqEN9AHi_PP4yWQ7K7c,1292
58
- QuantConnect/AlgorithmFactory/Python/Wrappers/__init__.pyi,sha256=61l-QgNLwyKgE65mPil2kkKHh6xgsgSZkn2l5hO72wI,38969
58
+ QuantConnect/AlgorithmFactory/Python/Wrappers/__init__.pyi,sha256=nbG05en73bX48QuFIbtxow82gAMJl7NnfeRvZlP4PiI,38980
59
59
  QuantConnect/Api/__init__.py,sha256=vAJlpIoxQmzGaDmd4otSvUCWGOgMwlJZh-3GkUanY0U,1205
60
- QuantConnect/Api/__init__.pyi,sha256=aRjL-MxxMxDj0SgPXHdR5bZSs2tfe9_cIP4EFRT9rR0,115816
60
+ QuantConnect/Api/__init__.pyi,sha256=fE_vYUEA3NcpZ-_tkdi4F5kWfLeWFnqaKV9kH-kJPiE,117456
61
61
  QuantConnect/Api/Serialization/__init__.py,sha256=grT3r1iCyKXKpvhVOU9ilAQdR1AkVmSumlH6xBqrCAQ,1247
62
62
  QuantConnect/Api/Serialization/__init__.pyi,sha256=XUXAXXsUkXAiPoOw_Z98RAARYQpZPPbFZWc6ZWcuQeY,1849
63
63
  QuantConnect/Benchmarks/__init__.py,sha256=R88R40175vAvKWO1FE5DBtSow5VJ53ElRMOVRBqhzuI,1226
64
64
  QuantConnect/Benchmarks/__init__.pyi,sha256=qPhzpw4EzE8UrKoNPhqvh8MbBGmHv8HGJwgfkTb3qyM,3011
65
65
  QuantConnect/Brokerages/__init__.py,sha256=KZQ1Lua5IgmaUv8xJ-styLeGrIR4hX1LiBiNasKdvYY,1226
66
- QuantConnect/Brokerages/__init__.pyi,sha256=7eCN79elK3Wz5FBsoGhqx2hTX-UdH-zO205RZQrZIYI,171452
66
+ QuantConnect/Brokerages/__init__.pyi,sha256=amx5W4Mhx6cZ3_H5C-JgpjlLp4asxgElY-tBMKY1Rg4,174784
67
67
  QuantConnect/Brokerages/Authentication/__init__.py,sha256=4QsOVrHtOapg0AWqnB8ub_6FkqXH_En8h7pDoywdcek,1271
68
68
  QuantConnect/Brokerages/Authentication/__init__.pyi,sha256=BnH9RaKwfbxO5KJ5b7_LdtSi-igwgliKsjNtr7OnfYg,8678
69
69
  QuantConnect/Brokerages/Backtesting/__init__.py,sha256=eey6rPGZqPTgs5OOlxJEUc-oLXtULP33yL6vmq43suM,1262
@@ -79,7 +79,7 @@ QuantConnect/Commands/__init__.pyi,sha256=dxZ2NNV5t8c4z879rfbXV082psgTalAYLoIrzM
79
79
  QuantConnect/Configuration/__init__.py,sha256=xVRn46oSL7Vgg6WHlqw6nWdeBVo9ZJbQwXEFMEoz_dw,1235
80
80
  QuantConnect/Configuration/__init__.pyi,sha256=ijeb5YIHMpkeNpnXwuR9x0jlyj9hK9NhsAaoB9IQJgI,8132
81
81
  QuantConnect/Data/__init__.py,sha256=_g-rTzKe1VE0t4E5V9NgBKm6aovBnzV7Xy4RvU5jLkI,1208
82
- QuantConnect/Data/__init__.pyi,sha256=frnOo4nhSSdEBOym2gVoHe2DdYlhCp-X9cNQqAD0vmE,123346
82
+ QuantConnect/Data/__init__.pyi,sha256=dvM3yFpnwyGAmXWYnWAZan_MP6FDbYD8aNEVtBzTzdc,123350
83
83
  QuantConnect/Data/Auxiliary/__init__.py,sha256=9Cv0Bpnkcqga8TBXTl7vi4A8X67R_waUxXr24FOr7wg,1238
84
84
  QuantConnect/Data/Auxiliary/__init__.pyi,sha256=DgcZF-cezXu8yQNlz91WA4b6tvFZKnP6Pitl54yllbk,55182
85
85
  QuantConnect/Data/Common/__init__.py,sha256=CXPneDeSjrRxUguJGLZYCWjSyoVKXPOAQCnN8wZnhgk,1229
@@ -120,7 +120,7 @@ QuantConnect/Indicators/__init__.pyi,sha256=LVmB4I_7eZ-3OOJlxvOUUw7RVA3iZj2xL6Eg
120
120
  QuantConnect/Indicators/CandlestickPatterns/__init__.py,sha256=mSc8zF8vmEjhwfw9ewPhqPEPqtyMgiGCzmXK_Qr_os8,1286
121
121
  QuantConnect/Indicators/CandlestickPatterns/__init__.pyi,sha256=YWb34qFgwVywMUrnzfmeMZswqYJn6qVdzzcmS19Xdw8,88293
122
122
  QuantConnect/Interfaces/__init__.py,sha256=3tBhp3W4AMCFvrmCITRoLfPTWxckdX9spMD8XTmcsfY,1226
123
- QuantConnect/Interfaces/__init__.pyi,sha256=cootv97GBqde0FcHkkV5OvFYpMKvnQ96d8X-UxxOiUo,129657
123
+ QuantConnect/Interfaces/__init__.pyi,sha256=urEJMIWfpts5jS5ilbVZQPJkhWcNBTAX0PJx3fwWuTA,129668
124
124
  QuantConnect/Lean/__init__.py,sha256=m2TwrLCCK6OnS1twBd0XO7N1h7es4LWC6NF3S5gaW80,1208
125
125
  QuantConnect/Lean/Engine/__init__.py,sha256=s82xqMT75h16KwCy-111skTcxUEFam3zp7lYKCMeum0,1229
126
126
  QuantConnect/Lean/Engine/__init__.pyi,sha256=3jCaiyvJdotxgO0hF_98iQRw0DIORxTfG3TXFLtBCDE,17540
@@ -141,7 +141,7 @@ QuantConnect/Lean/Engine/HistoricalData/__init__.pyi,sha256=COrFjUMa3BqRlbQf1JCU
141
141
  QuantConnect/Lean/Engine/RealTime/__init__.py,sha256=kjYfQsxvViA0ILxYaXX69HWkUNM61cvfCSMei3XDcW4,1256
142
142
  QuantConnect/Lean/Engine/RealTime/__init__.pyi,sha256=x4dflCohMdU8cxotDZPljk9BsmrAYKW0WtOBC4z1IjM,15718
143
143
  QuantConnect/Lean/Engine/Results/__init__.py,sha256=4zVcjioAQ7OZcjAtctC7SVbhx7XbMo4ANQJTWJUjjUg,1253
144
- QuantConnect/Lean/Engine/Results/__init__.pyi,sha256=QPrIXabn26BLJKK7q_cdhaGJaTzJyb4N72LqituPFgw,55398
144
+ QuantConnect/Lean/Engine/Results/__init__.pyi,sha256=VY2UG2iPEud8KeE99xhgzYWP2MIqtUJFKILLDK8GXLQ,54370
145
145
  QuantConnect/Lean/Engine/Server/__init__.py,sha256=OJ2TqQ_kxCKrrijuEgc_B45BH7cHyDvoeg7sCSjFomA,1250
146
146
  QuantConnect/Lean/Engine/Server/__init__.pyi,sha256=MW4jk0KVvlwhCTGNprPmebPTLBIkKFfkUqhV-5epuzI,4971
147
147
  QuantConnect/Lean/Engine/Setup/__init__.py,sha256=-CeE22GZBog-CfGn8YmPwwPKDWxN78bcFsxxQ-YIi8o,1247
@@ -169,9 +169,9 @@ QuantConnect/Optimizer/Parameters/__init__.pyi,sha256=9gbGrIg8JMiaCxbc2eCx5zj_pO
169
169
  QuantConnect/Optimizer/Strategies/__init__.py,sha256=YbaSlUBULMrLr-KmGZ-4nJ6jM3L9APVWdTg6CWGQI7A,1256
170
170
  QuantConnect/Optimizer/Strategies/__init__.pyi,sha256=OChxe2gEUgFEBeN7-5VERTmu1_FKdyJLNKAohx-GSMk,11086
171
171
  QuantConnect/Orders/__init__.py,sha256=WE59vNuxNQhoBFWPW2Dhyx2nHXFYP5DV2jDKIMg7H4o,1214
172
- QuantConnect/Orders/__init__.pyi,sha256=6oayMJTpie1v9Cv4P7mKEGJbrIIeR-lX1C9WVXf4e7s,127891
172
+ QuantConnect/Orders/__init__.pyi,sha256=ADirfZX3sAMW27pZugJ99bG9CG7fsJurGt4SPnntqLc,129325
173
173
  QuantConnect/Orders/Fees/__init__.py,sha256=15ZvyliLAKz2lH7lmZzUg30bt3JQCSssEsqwY43kaiw,1229
174
- QuantConnect/Orders/Fees/__init__.pyi,sha256=Xi_GZuQRSCUu7o0VgVf_CKf6jamBMXGXdJlhntcAG9M,33572
174
+ QuantConnect/Orders/Fees/__init__.pyi,sha256=ymVkRHVvluZESoRoOyQmHFcW9z8TTOxoVDUNhWdnmyM,34645
175
175
  QuantConnect/Orders/Fills/__init__.py,sha256=g8IQPj7NvWW-KlZR-uVzabEvpYGhG3BXowuZ5eFGbjc,1232
176
176
  QuantConnect/Orders/Fills/__init__.pyi,sha256=CA7hKvUUuqcaZ4wHTEv_8m-0hur8yzFo3XnueAAmRqg,20912
177
177
  QuantConnect/Orders/OptionExercise/__init__.py,sha256=kwLuKu-FXc0sO2sU_lnfh1gRkK1hD5dmB7HF-1-6o-g,1259
@@ -199,7 +199,7 @@ QuantConnect/Research/__init__.pyi,sha256=AOPUv9zOOI8CgaUQk-42L3d6SNVaQ7TCXnE7oV
199
199
  QuantConnect/Scheduling/__init__.py,sha256=1ZvfxXluXvxEH9xK3robe37w5ao5kiI3ilWSzo7frpI,1226
200
200
  QuantConnect/Scheduling/__init__.pyi,sha256=6EZKjIjcdnwbvCrML1Gge-XJBkCXXuVXAhpWs5wXGvc,56335
201
201
  QuantConnect/Securities/__init__.py,sha256=gu5pJdrrhApIw3ngUPqYZJvAas2v0zB9t6LNUutr-KI,1226
202
- QuantConnect/Securities/__init__.pyi,sha256=aKQsS2C2ToT8acUy_iqEqlJ-KaIFRlSR8_FsLM7YeBQ,358573
202
+ QuantConnect/Securities/__init__.pyi,sha256=RPio0YCeHRrY4rNehxC4lnagXbCmyINDFqsShuOjdLk,358565
203
203
  QuantConnect/Securities/Cfd/__init__.py,sha256=3itlvcL6DM4-hujnrzJoCkqa23k5aXew-F_VugCwte0,1238
204
204
  QuantConnect/Securities/Cfd/__init__.pyi,sha256=K3r-XXFdICOy4lVjsx4GnQkW7liOEpUopJN9f12QI-4,4858
205
205
  QuantConnect/Securities/Crypto/__init__.py,sha256=G5uEfMrpVR3tdmLSbRScw6iGkRtohDIKGLTKi3_AH6Q,1247
@@ -294,7 +294,7 @@ System/Drawing/__init__.pyi,sha256=tkEWOtysPC40BeS7XByJa3gChycqI2RBt25gF9zZHh0,3
294
294
  System/Globalization/__init__.py,sha256=tu0vXf08RD8xbSJfbf51S87c9N-QEtz5HEMzyzLAgzs,1211
295
295
  System/Globalization/__init__.pyi,sha256=gRVUvyeQk66LEkuvCu0yuFQr5qx8TZdcZVABlnQ5MD0,72133
296
296
  System/IO/__init__.py,sha256=zQozFt317VqXGbAq4_4SRs_b1Lvm44vQwlvvbtm3QO8,1178
297
- System/IO/__init__.pyi,sha256=pkfrBDscqo-divHpWOdE578wFBTQJA8pUISCsizNWro,100131
297
+ System/IO/__init__.pyi,sha256=YEHik34JStOnC08FcOibTs-pn10wnwhqjnGZm1g1z0Q,100588
298
298
  System/IO/Enumeration/__init__.py,sha256=ufCWdiWRnkEwrKu4CvBVKJfx0eu-LZTzmhdnN3edpdg,1214
299
299
  System/IO/Enumeration/__init__.pyi,sha256=afpm6eVTU18QOZ466V2cOxqPJ7TX1i9iPbuZl6Be-TQ,4985
300
300
  System/IO/Strategies/__init__.py,sha256=qEEZVyrMooBV5rDJfPf31ibTB737uO_LFstXSDD8mKw,1211
@@ -377,7 +377,7 @@ System/Text/RegularExpressions/Symbolic/__init__.py,sha256=nG7NuyvvYs_jL3srR4qiV
377
377
  System/Text/Unicode/__init__.py,sha256=qDYv50z_Cwxb9mqG4zGgBPCOzFJEY_qMDLE8LaQ9okY,1208
378
378
  System/Text/Unicode/__init__.pyi,sha256=oWgGCcoYWozJJKfc_wxUAvaHhIXcTENEPPUh76FsMPA,923
379
379
  System/Threading/__init__.py,sha256=8fP5FmMEYh2pudPnHTEkaVP39M4j2IvfhKMBjtMIHY8,1199
380
- System/Threading/__init__.pyi,sha256=Yh05SeM5YtWACkwdz1DwO8l_2HI2DGKnf9MJhTJcVfE,57097
380
+ System/Threading/__init__.pyi,sha256=rlBXW5WNO6JygfYv04XhDfIv-QZ20Lrb_Mg1SJntJLM,57097
381
381
  System/Threading/Tasks/__init__.py,sha256=LOxY-1Vt7UnMlDV8H98ktjZfUBZ5lkxLZIKT8YlEpQ4,1217
382
382
  System/Threading/Tasks/__init__.pyi,sha256=CwIAmbd3GyVBOFRBjLReP7RmLOkxwZGbEU8jPPzDjE4,43341
383
383
  System/Threading/Tasks/Sources/__init__.py,sha256=fTBx0mKz5-pFBv4NJGqjNStlhJt9Fu_IvOu1dwbMo04,1241
@@ -402,7 +402,7 @@ clr/__init__.pyi,sha256=21MB2O5_ACzDS7l56ETyFFH9c0TOSGov39Xs1a1r6ik,418
402
402
  clr/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
403
403
  exports/__init__.py,sha256=ioORXBph-UrMrE_0Rghav2MU6fWzjozXikRm9MmxAkw,1173
404
404
  exports/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
405
- quantconnect_stubs-17397.dist-info/METADATA,sha256=8UPCPnrqtp5YusyoADnstrrI5ULjOliMpBbLvyJ_-lY,1332
406
- quantconnect_stubs-17397.dist-info/WHEEL,sha256=Mdi9PDNwEZptOjTlUcAth7XJDFtKrHYaQMPulZeBCiQ,91
407
- quantconnect_stubs-17397.dist-info/top_level.txt,sha256=-TybN6WLciSHclJ3a7i35Q5iL86nl5wAmrg1ghSzPvE,92
408
- quantconnect_stubs-17397.dist-info/RECORD,,
405
+ quantconnect_stubs-17410.dist-info/METADATA,sha256=VaSB8y1Oz2bygZMdyUiRypUKtSHvb7N3hwFliyMu_2A,1332
406
+ quantconnect_stubs-17410.dist-info/WHEEL,sha256=Mdi9PDNwEZptOjTlUcAth7XJDFtKrHYaQMPulZeBCiQ,91
407
+ quantconnect_stubs-17410.dist-info/top_level.txt,sha256=-TybN6WLciSHclJ3a7i35Q5iL86nl5wAmrg1ghSzPvE,92
408
+ quantconnect_stubs-17410.dist-info/RECORD,,