Exemple #1
0
 def fetch_ohlcv(self,
                 symbol,
                 timeframe='1m',
                 since=None,
                 limit=None,
                 params={}):
     raise NotSupported(self.id +
                        ' API does not allow to fetch OHLCV series for now')
Exemple #2
0
 def fetch_closed_orders(self, market=None, params={}):
     raise NotSupported(self.id +
                        ' fetch_closed_orders() not implemented yet')
Exemple #3
0
 def fetch_orders(self, params={}):
     raise NotSupported(self.id + ' fetch_orders() is not implemented yet')
Exemple #4
0
 def fetch_tickers(self, symbols=None):
     raise NotSupported(
         self.id +
         ' API does not allow to fetch all tickers at once with a single call to fetch_tickers () for now'
     )
Exemple #5
0
 def fetch_open_orders(self, symbol=None, params={}):
     raise NotSupported(self.id +
                        ' fetch_open_orders() not implemented yet')
Exemple #6
0
 def fetch_order(self, id, symbol=None, params={}):
     raise NotSupported(self.id + ' fetch_order() is not implemented yet')