Added range checks to min_days_listed in AgeFilter

This commit is contained in:
gambcl
2020-07-08 18:06:30 +01:00
parent 86cf6201c8
commit 2e45859aef
3 changed files with 47 additions and 0 deletions

View File

@@ -187,6 +187,11 @@ class Exchange:
def timeframes(self) -> List[str]:
return list((self._api.timeframes or {}).keys())
@property
def ohlcv_candle_limit(self) -> int:
"""exchange ohlcv candle limit"""
return int(self._ohlcv_candle_limit)
@property
def markets(self) -> Dict:
"""exchange ccxt markets"""