RAPTOR v18.4: Исправлена отчетность, активированы выходные
This commit is contained in:
38
invest-python-master/t_tech/invest/strategies/base/errors.py
Normal file
38
invest-python-master/t_tech/invest/strategies/base/errors.py
Normal file
@@ -0,0 +1,38 @@
|
||||
class StrategyError(Exception):
|
||||
pass
|
||||
|
||||
|
||||
class NotEnoughData(StrategyError):
|
||||
pass
|
||||
|
||||
|
||||
class MarginalTradeIsNotActive(StrategyError):
|
||||
pass
|
||||
|
||||
|
||||
class InsufficientMarginalTradeFunds(StrategyError):
|
||||
pass
|
||||
|
||||
|
||||
class CandleEventForDateNotFound(StrategyError):
|
||||
pass
|
||||
|
||||
|
||||
class UnknownSignal(StrategyError):
|
||||
pass
|
||||
|
||||
|
||||
class OldCandleObservingError(StrategyError):
|
||||
pass
|
||||
|
||||
|
||||
class MarketDataNotAvailableError(StrategyError):
|
||||
pass
|
||||
|
||||
|
||||
class StrategySupervisorError(Exception):
|
||||
pass
|
||||
|
||||
|
||||
class EventsWereNotSupervised(StrategySupervisorError):
|
||||
pass
|
||||
Reference in New Issue
Block a user