From f2215182ddab3e32bb7073b77459c64a34a4b0f8 Mon Sep 17 00:00:00 2001 From: enenn Date: Fri, 9 Feb 2018 18:34:32 +0100 Subject: [PATCH] Remove now obsolete exchange interface --- freqtrade/exchange/interface.py | 134 -------------------------------- 1 file changed, 134 deletions(-) delete mode 100644 freqtrade/exchange/interface.py diff --git a/freqtrade/exchange/interface.py b/freqtrade/exchange/interface.py deleted file mode 100644 index 1f316e662..000000000 --- a/freqtrade/exchange/interface.py +++ /dev/null @@ -1,134 +0,0 @@ -from abc import ABC, abstractmethod -from typing import Dict, List, Optional - - -class Exchange(ABC): - @property - def name(self) -> str: - """ - Name of the exchange. - :return: str representation of the class name - """ - return self.__class__.__name__ - - @property - def fee(self) -> float: - """ - Fee for placing an order - :return: percentage in float - """ - - @abstractmethod - def buy(self, pair: str, rate: float, amount: float) -> str: - """ - Places a limit buy order. - :param pair: Pair as str, format: ETH/BTC - :param rate: Rate limit for order - :param amount: The amount to purchase - :return: order_id of the placed buy order - """ - - @abstractmethod - def sell(self, pair: str, rate: float, amount: float) -> str: - """ - Places a limit sell order. - :param pair: Pair as str, format: ETH/BTC - :param rate: Rate limit for order - :param amount: The amount to sell - :return: order_id of the placed sell order - """ - - @abstractmethod - def get_balance(self, currency: str) -> float: - """ - Gets account balance. - :param currency: Currency as str, format: BTC - :return: float - """ - - @abstractmethod - def get_balances(self) -> List[dict]: - """ - Gets account balances across currencies - :return: List of dicts, format: [ - { - 'Currency': str, - 'Balance': float, - 'Available': float, - 'Pending': float, - } - ... - ] - """ - - @abstractmethod - def get_ticker(self, pair: str, refresh: Optional[bool] = True) -> dict: - """ - Gets ticker for given pair. - :param pair: Pair as str, format: ETC/BTC - :param refresh: Shall we query a new value or a cached value is enough - :return: dict, format: { - 'bid': float, - 'ask': float, - 'last': float - } - """ - - @abstractmethod - def get_ticker_history(self, pair: str, tick_interval: int) -> List[Dict]: - """ - Gets ticker history for given pair. - :param pair: Pair as str, format: ETC/BTC - :param tick_interval: ticker interval in minutes - :return: list, format: [ - { - 'O': float, (Open) - 'H': float, (High) - 'L': float, (Low) - 'C': float, (Close) - 'V': float, (Volume) - 'T': datetime, (Time) - 'BV': float, (Base Volume) - }, - ... - ] - """ - - def get_order(self, order_id: str) -> Dict: - """ - Get order details for the given order_id. - :param order_id: ID as str - :return: dict, format: { - 'id': str, - 'type': str, - 'pair': str, - 'opened': str ISO 8601 datetime, - 'closed': str ISO 8601 datetime, - 'rate': float, - 'amount': float, - 'remaining': int - } - """ - - @abstractmethod - def cancel_order(self, order_id: str) -> None: - """ - Cancels order for given order_id. - :param order_id: ID as str - :return: None - """ - - @abstractmethod - def get_pair_detail_url(self, pair: str) -> str: - """ - Returns the market detail url for the given pair. - :param pair: Pair as str, format: ETC/BTC - :return: URL as str - """ - - @abstractmethod - def get_markets(self) -> List[str]: - """ - Returns all available markets. - :return: List of all available pairs - """