expose precisionMode from exchange class

This commit is contained in:
Matthias
2020-01-12 14:37:45 +01:00
parent 90a9052377
commit fa1f9bcdbd
2 changed files with 6 additions and 0 deletions

View File

@@ -188,6 +188,11 @@ class Exchange:
self._load_markets()
return self._api.markets
@property
def precisionMode(self) -> str:
"""exchange ccxt precisionMode"""
return self._api.precisionMode
def get_markets(self, base_currencies: List[str] = None, quote_currencies: List[str] = None,
pairs_only: bool = False, active_only: bool = False) -> Dict:
"""