Files
QuantConnect Server Applications d4ca27f93f Adds autogenerated Python stubs via Travis for QCAlgorithm (Build 14115) (#4662)
Co-authored-by: Python Stubs Deployer <stubs-deploy@quantconnect.com>
2020-08-28 16:43:17 -03:00

55 lines
1.1 KiB
Python

import typing
import System.IO
import System.Collections.Generic
import System
import QuantConnect.Indicators
import QuantConnect.Data.Market
import QuantConnect.Data
import QuantConnect
import Python.Runtime
import datetime
class IReadOnlyWindow(System.Collections.IEnumerable, System.Collections.Generic.IEnumerable[T]):
# no doc
Count: int
IsReady: bool
MostRecentlyRemoved: QuantConnect.Indicators.T
Samples: float
Size: int
Item: indexer#
class RollingWindow(System.object, QuantConnect.Indicators.IReadOnlyWindow[T], System.Collections.IEnumerable, System.Collections.Generic.IEnumerable[T]):
""" RollingWindow[T](size: int) """
def Add(self, item: QuantConnect.Indicators.T) -> None:
pass
def GetEnumerator(self) -> System.Collections.Generic.IEnumerator[QuantConnect.Indicators.T]:
pass
def Reset(self) -> None:
pass
def __init__(self, size: int) -> QuantConnect.Indicators.RollingWindow:
pass
Count: int
IsReady: bool
MostRecentlyRemoved: QuantConnect.Indicators.T
Samples: float
Size: int
Item: indexer#