Implement stub functions for OANDA

This commit is contained in:
2022-10-30 11:21:48 +00:00
parent f6fa9bdbb6
commit f22fcfdaaa
5 changed files with 55 additions and 19 deletions

View File

@@ -13,6 +13,9 @@ class BaseExchange(object):
def connect(self):
raise NotImplementedError
def get_account(self):
raise NotImplementedError
def get_supported_assets(self):
raise NotImplementedError
@@ -39,4 +42,3 @@ class BaseExchange(object):
def get_all_positions(self):
raise NotImplementedError