quantconnect-stubs 17403__py3-none-any.whl → 17407__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.
- QuantConnect/Lean/Engine/Results/__init__.pyi +0 -38
- System/IO/__init__.pyi +12 -0
- System/Threading/__init__.pyi +3 -3
- {quantconnect_stubs-17403.dist-info → quantconnect_stubs-17407.dist-info}/METADATA +1 -1
- {quantconnect_stubs-17403.dist-info → quantconnect_stubs-17407.dist-info}/RECORD +7 -7
- {quantconnect_stubs-17403.dist-info → quantconnect_stubs-17407.dist-info}/WHEEL +0 -0
- {quantconnect_stubs-17403.dist-info → quantconnect_stubs-17407.dist-info}/top_level.txt +0 -0
|
@@ -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
|
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."""
|
System/Threading/__init__.pyi
CHANGED
|
@@ -960,15 +960,15 @@ class Thread(System.Runtime.ConstrainedExecution.CriticalFinalizerObject):
|
|
|
960
960
|
...
|
|
961
961
|
|
|
962
962
|
@overload
|
|
963
|
-
def join(self) ->
|
|
963
|
+
def join(self, milliseconds_timeout: int) -> bool:
|
|
964
964
|
...
|
|
965
965
|
|
|
966
966
|
@overload
|
|
967
|
-
def join(self
|
|
967
|
+
def join(self) -> None:
|
|
968
968
|
...
|
|
969
969
|
|
|
970
970
|
@overload
|
|
971
|
-
def join(self,
|
|
971
|
+
def join(self, timeout: datetime.timedelta) -> bool:
|
|
972
972
|
...
|
|
973
973
|
|
|
974
974
|
@staticmethod
|
|
@@ -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=
|
|
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
|
|
@@ -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=
|
|
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=
|
|
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-
|
|
406
|
-
quantconnect_stubs-
|
|
407
|
-
quantconnect_stubs-
|
|
408
|
-
quantconnect_stubs-
|
|
405
|
+
quantconnect_stubs-17407.dist-info/METADATA,sha256=0VXMigsRN2geJR__OkVCPTiKZgTFlIRMfsx9IzC35P0,1332
|
|
406
|
+
quantconnect_stubs-17407.dist-info/WHEEL,sha256=Mdi9PDNwEZptOjTlUcAth7XJDFtKrHYaQMPulZeBCiQ,91
|
|
407
|
+
quantconnect_stubs-17407.dist-info/top_level.txt,sha256=-TybN6WLciSHclJ3a7i35Q5iL86nl5wAmrg1ghSzPvE,92
|
|
408
|
+
quantconnect_stubs-17407.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|