mirror of
https://github.com/wassname/catalyst.git
synced 2026-09-11 12:00:50 +08:00
Initial work on bittrex implementation
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
import unittest
|
||||
from abc import ABCMeta, abstractmethod
|
||||
|
||||
|
||||
class BaseExchangeTestCase():
|
||||
__metaclass__ = ABCMeta
|
||||
|
||||
@abstractmethod
|
||||
def test_order(self):
|
||||
pass
|
||||
|
||||
@abstractmethod
|
||||
def test_open_orders(self):
|
||||
pass
|
||||
|
||||
@abstractmethod
|
||||
def test_get_order(self):
|
||||
pass
|
||||
|
||||
@abstractmethod
|
||||
def test_cancel_order(self):
|
||||
pass
|
||||
|
||||
@abstractmethod
|
||||
def test_get_candles(self):
|
||||
pass
|
||||
|
||||
@abstractmethod
|
||||
def test_tickers(self):
|
||||
pass
|
||||
|
||||
@abstractmethod
|
||||
def get_account(self):
|
||||
pass
|
||||
Reference in New Issue
Block a user