2018-02-04 09:21:16 +00:00
|
|
|
"""
|
|
|
|
Freqtrade is the main module of this bot. It contains the class Freqtrade()
|
|
|
|
"""
|
|
|
|
|
|
|
|
import copy
|
2018-03-25 19:37:14 +00:00
|
|
|
import logging
|
2018-02-04 09:21:16 +00:00
|
|
|
import traceback
|
2018-03-02 15:22:00 +00:00
|
|
|
from datetime import datetime
|
2019-03-22 17:16:54 +00:00
|
|
|
from typing import Any, Dict, List, Optional, Tuple
|
2018-03-17 21:44:47 +00:00
|
|
|
|
2018-03-02 15:22:00 +00:00
|
|
|
import arrow
|
2018-09-25 18:45:01 +00:00
|
|
|
from requests.exceptions import RequestException
|
2018-07-31 10:47:32 +00:00
|
|
|
|
2019-04-05 18:20:16 +00:00
|
|
|
from freqtrade import (DependencyException, OperationalException, InvalidOrderException,
|
2019-04-05 18:40:44 +00:00
|
|
|
__version__, constants, persistence)
|
2018-12-12 19:16:03 +00:00
|
|
|
from freqtrade.data.converter import order_book_to_dataframe
|
2018-12-17 05:43:01 +00:00
|
|
|
from freqtrade.data.dataprovider import DataProvider
|
2018-09-21 15:41:31 +00:00
|
|
|
from freqtrade.edge import Edge
|
2019-04-09 09:27:35 +00:00
|
|
|
from freqtrade.exchange import timeframe_to_minutes
|
2018-02-04 09:21:16 +00:00
|
|
|
from freqtrade.persistence import Trade
|
2018-07-12 17:59:17 +00:00
|
|
|
from freqtrade.rpc import RPCManager, RPCMessageType
|
2019-02-17 03:18:56 +00:00
|
|
|
from freqtrade.resolvers import ExchangeResolver, StrategyResolver, PairListResolver
|
2018-02-04 09:21:16 +00:00
|
|
|
from freqtrade.state import State
|
2018-11-24 19:00:02 +00:00
|
|
|
from freqtrade.strategy.interface import SellType, IStrategy
|
2018-12-12 18:57:40 +00:00
|
|
|
from freqtrade.wallets import Wallets
|
2018-02-04 09:21:16 +00:00
|
|
|
|
2018-09-21 15:41:31 +00:00
|
|
|
|
2018-03-25 19:37:14 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2018-02-04 09:21:16 +00:00
|
|
|
class FreqtradeBot(object):
|
|
|
|
"""
|
|
|
|
Freqtrade is the main class of the bot.
|
|
|
|
This is from here the bot start its logic.
|
|
|
|
"""
|
|
|
|
|
2019-01-22 19:01:12 +00:00
|
|
|
def __init__(self, config: Dict[str, Any]) -> None:
|
2018-02-04 09:21:16 +00:00
|
|
|
"""
|
2018-12-26 13:37:25 +00:00
|
|
|
Init all variables and objects the bot needs to work
|
|
|
|
:param config: configuration dict, you can use Configuration.get_config()
|
|
|
|
to get the config dict.
|
2018-02-04 09:21:16 +00:00
|
|
|
"""
|
|
|
|
|
2019-03-22 17:16:54 +00:00
|
|
|
logger.info('Starting freqtrade %s', __version__)
|
2018-02-04 09:21:16 +00:00
|
|
|
|
2019-03-31 20:39:55 +00:00
|
|
|
# Init bot state
|
2018-04-06 07:57:08 +00:00
|
|
|
self.state = State.STOPPED
|
2018-02-04 09:21:16 +00:00
|
|
|
|
|
|
|
# Init objects
|
|
|
|
self.config = config
|
2019-03-10 17:05:33 +00:00
|
|
|
|
2018-07-09 16:27:36 +00:00
|
|
|
self.strategy: IStrategy = StrategyResolver(self.config).strategy
|
2018-11-24 19:12:50 +00:00
|
|
|
|
2018-06-02 11:55:06 +00:00
|
|
|
self.rpc: RPCManager = RPCManager(self)
|
2019-02-17 03:18:56 +00:00
|
|
|
|
2019-04-08 01:42:28 +00:00
|
|
|
exchange_name = self.config.get('exchange', {}).get('name').title()
|
2019-02-20 19:13:23 +00:00
|
|
|
self.exchange = ExchangeResolver(exchange_name, self.config).exchange
|
2019-02-17 03:18:56 +00:00
|
|
|
|
2019-02-28 22:26:29 +00:00
|
|
|
self.wallets = Wallets(self.config, self.exchange)
|
2018-12-02 14:57:49 +00:00
|
|
|
self.dataprovider = DataProvider(self.config, self.exchange)
|
2018-12-26 13:32:17 +00:00
|
|
|
|
|
|
|
# Attach Dataprovider to Strategy baseclass
|
|
|
|
IStrategy.dp = self.dataprovider
|
|
|
|
# Attach Wallets to Strategy baseclass
|
|
|
|
IStrategy.wallets = self.wallets
|
|
|
|
|
2018-12-05 19:44:56 +00:00
|
|
|
pairlistname = self.config.get('pairlist', {}).get('method', 'StaticPairList')
|
|
|
|
self.pairlists = PairListResolver(pairlistname, self, self.config).pairlist
|
2018-10-02 10:15:54 +00:00
|
|
|
|
|
|
|
# Initializing Edge only if enabled
|
2018-11-07 23:22:46 +00:00
|
|
|
self.edge = Edge(self.config, self.exchange, self.strategy) if \
|
2018-11-07 17:12:46 +00:00
|
|
|
self.config.get('edge', {}).get('enabled', False) else None
|
2018-10-02 10:15:54 +00:00
|
|
|
|
2018-10-28 12:15:49 +00:00
|
|
|
self.active_pair_whitelist: List[str] = self.config['exchange']['pair_whitelist']
|
2018-02-04 09:21:16 +00:00
|
|
|
|
2019-05-30 04:31:34 +00:00
|
|
|
persistence.init(self.config.get('db_url', None),
|
|
|
|
clean_open_orders=self.config.get('dry_run', False))
|
2018-02-04 09:21:16 +00:00
|
|
|
|
2019-03-31 20:39:55 +00:00
|
|
|
# Set initial bot state from config
|
2018-02-04 09:21:16 +00:00
|
|
|
initial_state = self.config.get('initial_state')
|
2019-03-31 20:39:55 +00:00
|
|
|
self.state = State[initial_state.upper()] if initial_state else State.STOPPED
|
2018-02-04 09:21:16 +00:00
|
|
|
|
2018-06-08 23:19:42 +00:00
|
|
|
def cleanup(self) -> None:
|
2018-02-04 09:21:16 +00:00
|
|
|
"""
|
2018-06-08 23:19:42 +00:00
|
|
|
Cleanup pending resources on an already stopped bot
|
2018-02-04 09:21:16 +00:00
|
|
|
:return: None
|
|
|
|
"""
|
2018-06-08 23:19:42 +00:00
|
|
|
logger.info('Cleaning up modules ...')
|
2019-03-10 17:05:33 +00:00
|
|
|
|
2018-02-04 09:21:16 +00:00
|
|
|
self.rpc.cleanup()
|
|
|
|
persistence.cleanup()
|
|
|
|
|
2019-05-19 18:06:26 +00:00
|
|
|
def startup(self) -> None:
|
|
|
|
"""
|
|
|
|
Called on startup and after reloading the bot - triggers notifications and
|
|
|
|
performs startup tasks
|
|
|
|
"""
|
|
|
|
self.rpc.startup_messages(self.config, self.pairlists)
|
2019-05-20 17:35:48 +00:00
|
|
|
if not self.edge:
|
|
|
|
# Adjust stoploss if it was changed
|
|
|
|
Trade.stoploss_reinitialization(self.strategy.stoploss)
|
2019-05-19 18:06:26 +00:00
|
|
|
|
2019-03-22 17:16:54 +00:00
|
|
|
def process(self) -> bool:
|
2018-02-04 09:21:16 +00:00
|
|
|
"""
|
|
|
|
Queries the persistence layer for open trades and handles them,
|
|
|
|
otherwise a new trade is created.
|
|
|
|
:return: True if one or more trades has been created or closed, False otherwise
|
|
|
|
"""
|
|
|
|
state_changed = False
|
2019-03-22 21:20:20 +00:00
|
|
|
|
|
|
|
# Check whether markets have to be reloaded
|
|
|
|
self.exchange._reload_markets()
|
|
|
|
|
|
|
|
# Refresh whitelist
|
|
|
|
self.pairlists.refresh_pairlist()
|
|
|
|
self.active_pair_whitelist = self.pairlists.whitelist
|
|
|
|
|
|
|
|
# Calculating Edge positioning
|
|
|
|
if self.edge:
|
|
|
|
self.edge.calculate()
|
|
|
|
self.active_pair_whitelist = self.edge.adjust(self.active_pair_whitelist)
|
|
|
|
|
|
|
|
# Query trades from persistence layer
|
|
|
|
trades = Trade.get_open_trades()
|
|
|
|
|
|
|
|
# Extend active-pair whitelist with pairs from open trades
|
|
|
|
# It ensures that tickers are downloaded for open trades
|
|
|
|
self._extend_whitelist_with_trades(self.active_pair_whitelist, trades)
|
|
|
|
|
|
|
|
# Refreshing candles
|
|
|
|
self.dataprovider.refresh(self._create_pair_whitelist(self.active_pair_whitelist),
|
|
|
|
self.strategy.informative_pairs())
|
|
|
|
|
|
|
|
# First process current opened trades
|
|
|
|
for trade in trades:
|
|
|
|
state_changed |= self.process_maybe_execute_sell(trade)
|
|
|
|
|
|
|
|
# Then looking for buy opportunities
|
|
|
|
if len(trades) < self.config['max_open_trades']:
|
|
|
|
state_changed = self.process_maybe_execute_buy()
|
|
|
|
|
|
|
|
if 'unfilledtimeout' in self.config:
|
|
|
|
# Check and handle any timed out open orders
|
|
|
|
self.check_handle_timedout()
|
|
|
|
Trade.session.flush()
|
|
|
|
|
2018-02-04 09:21:16 +00:00
|
|
|
return state_changed
|
|
|
|
|
2019-02-20 12:56:26 +00:00
|
|
|
def _extend_whitelist_with_trades(self, whitelist: List[str], trades: List[Any]):
|
2019-02-20 13:12:17 +00:00
|
|
|
"""
|
|
|
|
Extend whitelist with pairs from open trades
|
|
|
|
"""
|
2019-02-20 12:12:04 +00:00
|
|
|
whitelist.extend([trade.pair for trade in trades if trade.pair not in whitelist])
|
|
|
|
|
|
|
|
def _create_pair_whitelist(self, pairs: List[str]) -> List[Tuple[str, str]]:
|
|
|
|
"""
|
|
|
|
Create pair-whitelist tuple with (pair, ticker_interval)
|
|
|
|
"""
|
|
|
|
return [(pair, self.config['ticker_interval']) for pair in pairs]
|
|
|
|
|
2019-03-02 17:53:42 +00:00
|
|
|
def get_target_bid(self, pair: str, tick: Dict = None) -> float:
|
2018-02-04 09:21:16 +00:00
|
|
|
"""
|
|
|
|
Calculates bid target between current ask price and last price
|
|
|
|
:return: float: Price
|
|
|
|
"""
|
2018-08-29 09:38:43 +00:00
|
|
|
config_bid_strategy = self.config.get('bid_strategy', {})
|
|
|
|
if 'use_order_book' in config_bid_strategy and\
|
|
|
|
config_bid_strategy.get('use_order_book', False):
|
2018-08-05 04:41:06 +00:00
|
|
|
logger.info('Getting price from order book')
|
2018-08-29 09:38:43 +00:00
|
|
|
order_book_top = config_bid_strategy.get('order_book_top', 1)
|
2018-08-05 04:41:06 +00:00
|
|
|
order_book = self.exchange.get_order_book(pair, order_book_top)
|
2018-08-14 10:12:44 +00:00
|
|
|
logger.debug('order_book %s', order_book)
|
2018-08-05 04:41:06 +00:00
|
|
|
# top 1 = index 0
|
|
|
|
order_book_rate = order_book['bids'][order_book_top - 1][0]
|
|
|
|
logger.info('...top %s order book buy rate %0.8f', order_book_top, order_book_rate)
|
2019-02-12 23:55:55 +00:00
|
|
|
used_rate = order_book_rate
|
2018-08-05 04:41:06 +00:00
|
|
|
else:
|
2019-03-02 17:53:42 +00:00
|
|
|
if not tick:
|
2019-03-02 16:24:48 +00:00
|
|
|
logger.info('Using Last Ask / Last Price')
|
|
|
|
ticker = self.exchange.get_ticker(pair)
|
2019-03-02 17:53:42 +00:00
|
|
|
else:
|
|
|
|
ticker = tick
|
2019-02-12 23:55:55 +00:00
|
|
|
if ticker['ask'] < ticker['last']:
|
|
|
|
ticker_rate = ticker['ask']
|
|
|
|
else:
|
|
|
|
balance = self.config['bid_strategy']['ask_last_balance']
|
|
|
|
ticker_rate = ticker['ask'] + balance * (ticker['last'] - ticker['ask'])
|
2018-08-05 04:41:06 +00:00
|
|
|
used_rate = ticker_rate
|
|
|
|
|
|
|
|
return used_rate
|
2018-02-04 09:21:16 +00:00
|
|
|
|
2018-09-21 19:48:27 +00:00
|
|
|
def _get_trade_stake_amount(self, pair) -> Optional[float]:
|
2018-07-18 06:36:39 +00:00
|
|
|
"""
|
|
|
|
Check if stake amount can be fulfilled with the available balance
|
|
|
|
for the stake currency
|
|
|
|
:return: float: Stake Amount
|
|
|
|
"""
|
2018-11-06 18:45:41 +00:00
|
|
|
if self.edge:
|
2018-12-01 09:58:05 +00:00
|
|
|
return self.edge.stake_amount(
|
2018-11-28 14:36:32 +00:00
|
|
|
pair,
|
|
|
|
self.wallets.get_free(self.config['stake_currency']),
|
2018-12-04 16:05:35 +00:00
|
|
|
self.wallets.get_total(self.config['stake_currency']),
|
2018-12-03 18:55:37 +00:00
|
|
|
Trade.total_open_trades_stakes()
|
2018-11-26 20:06:32 +00:00
|
|
|
)
|
2018-09-21 15:41:31 +00:00
|
|
|
else:
|
|
|
|
stake_amount = self.config['stake_amount']
|
|
|
|
|
2018-11-24 15:37:28 +00:00
|
|
|
avaliable_amount = self.wallets.get_free(self.config['stake_currency'])
|
2018-05-23 10:15:03 +00:00
|
|
|
|
2018-05-25 14:04:08 +00:00
|
|
|
if stake_amount == constants.UNLIMITED_STAKE_AMOUNT:
|
2019-02-25 19:00:17 +00:00
|
|
|
open_trades = len(Trade.get_open_trades())
|
2018-06-05 21:14:28 +00:00
|
|
|
if open_trades >= self.config['max_open_trades']:
|
2018-06-07 21:54:46 +00:00
|
|
|
logger.warning('Can\'t open a new trade: max number of trades is reached')
|
|
|
|
return None
|
2018-06-16 23:23:12 +00:00
|
|
|
return avaliable_amount / (self.config['max_open_trades'] - open_trades)
|
2018-05-23 10:15:03 +00:00
|
|
|
|
|
|
|
# Check if stake_amount is fulfilled
|
|
|
|
if avaliable_amount < stake_amount:
|
|
|
|
raise DependencyException(
|
2019-02-10 19:28:40 +00:00
|
|
|
f"Available balance({avaliable_amount} {self.config['stake_currency']}) is "
|
|
|
|
f"lower than stake amount({stake_amount} {self.config['stake_currency']})"
|
2018-05-23 10:15:03 +00:00
|
|
|
)
|
|
|
|
|
2018-11-06 18:45:41 +00:00
|
|
|
return stake_amount
|
2018-05-23 10:15:03 +00:00
|
|
|
|
2018-06-16 23:23:12 +00:00
|
|
|
def _get_min_pair_stake_amount(self, pair: str, price: float) -> Optional[float]:
|
2019-03-05 18:45:10 +00:00
|
|
|
try:
|
|
|
|
market = self.exchange.markets[pair]
|
|
|
|
except KeyError:
|
|
|
|
raise ValueError(f"Can't get market information for symbol {pair}")
|
2018-06-16 23:23:12 +00:00
|
|
|
|
|
|
|
if 'limits' not in market:
|
|
|
|
return None
|
|
|
|
|
|
|
|
min_stake_amounts = []
|
2018-06-28 17:48:05 +00:00
|
|
|
limits = market['limits']
|
|
|
|
if ('cost' in limits and 'min' in limits['cost']
|
|
|
|
and limits['cost']['min'] is not None):
|
|
|
|
min_stake_amounts.append(limits['cost']['min'])
|
|
|
|
|
|
|
|
if ('amount' in limits and 'min' in limits['amount']
|
|
|
|
and limits['amount']['min'] is not None):
|
|
|
|
min_stake_amounts.append(limits['amount']['min'] * price)
|
2018-06-16 23:23:12 +00:00
|
|
|
|
|
|
|
if not min_stake_amounts:
|
|
|
|
return None
|
|
|
|
|
2019-02-16 16:50:55 +00:00
|
|
|
# reserve some percent defined in config (5% default) + stoploss
|
2019-02-19 08:45:19 +00:00
|
|
|
amount_reserve_percent = 1.0 - self.config.get('amount_reserve_percent',
|
|
|
|
constants.DEFAULT_AMOUNT_RESERVE_PERCENT)
|
2018-07-09 16:27:36 +00:00
|
|
|
if self.strategy.stoploss is not None:
|
|
|
|
amount_reserve_percent += self.strategy.stoploss
|
2018-06-16 23:23:12 +00:00
|
|
|
# it should not be more than 50%
|
|
|
|
amount_reserve_percent = max(amount_reserve_percent, 0.5)
|
2018-07-31 18:43:32 +00:00
|
|
|
return min(min_stake_amounts) / amount_reserve_percent
|
2018-06-16 23:23:12 +00:00
|
|
|
|
2018-03-15 22:48:22 +00:00
|
|
|
def create_trade(self) -> bool:
|
2018-02-04 09:21:16 +00:00
|
|
|
"""
|
|
|
|
Checks the implemented trading indicator(s) for a randomly picked pair,
|
|
|
|
if one pair triggers the buy_signal a new trade record gets created
|
|
|
|
:return: True if a trade object has been created and persisted, False otherwise
|
|
|
|
"""
|
2018-07-09 16:27:36 +00:00
|
|
|
interval = self.strategy.ticker_interval
|
2018-10-28 12:15:49 +00:00
|
|
|
whitelist = copy.deepcopy(self.active_pair_whitelist)
|
2018-02-04 09:21:16 +00:00
|
|
|
|
2019-04-03 17:51:46 +00:00
|
|
|
if not whitelist:
|
|
|
|
logger.warning("Whitelist is empty.")
|
|
|
|
return False
|
|
|
|
|
2018-02-04 09:21:16 +00:00
|
|
|
# Remove currently opened and latest pairs from whitelist
|
2019-02-25 19:00:17 +00:00
|
|
|
for trade in Trade.get_open_trades():
|
2018-02-04 09:21:16 +00:00
|
|
|
if trade.pair in whitelist:
|
|
|
|
whitelist.remove(trade.pair)
|
2018-03-25 19:37:14 +00:00
|
|
|
logger.debug('Ignoring %s in pair whitelist', trade.pair)
|
2018-02-04 09:21:16 +00:00
|
|
|
|
|
|
|
if not whitelist:
|
2019-04-03 17:51:46 +00:00
|
|
|
logger.info("No currency pair in whitelist, but checking to sell open trades.")
|
2019-04-01 11:08:03 +00:00
|
|
|
return False
|
2018-02-04 09:21:16 +00:00
|
|
|
|
2018-07-31 18:25:10 +00:00
|
|
|
# running get_signal on historical data fetched
|
2018-02-04 09:21:16 +00:00
|
|
|
for _pair in whitelist:
|
2018-12-30 06:15:21 +00:00
|
|
|
(buy, sell) = self.strategy.get_signal(
|
|
|
|
_pair, interval, self.dataprovider.ohlcv(_pair, self.strategy.ticker_interval))
|
|
|
|
|
2018-02-04 09:21:16 +00:00
|
|
|
if buy and not sell:
|
2018-09-21 15:41:31 +00:00
|
|
|
stake_amount = self._get_trade_stake_amount(_pair)
|
2018-09-24 13:47:07 +00:00
|
|
|
if not stake_amount:
|
|
|
|
return False
|
2018-09-26 14:36:41 +00:00
|
|
|
|
2019-02-10 19:28:40 +00:00
|
|
|
logger.info(f"Buy signal found: about create a new trade with stake_amount: "
|
|
|
|
f"{stake_amount} ...")
|
2018-09-26 14:36:41 +00:00
|
|
|
|
2018-08-29 09:38:43 +00:00
|
|
|
bidstrat_check_depth_of_market = self.config.get('bid_strategy', {}).\
|
2018-08-05 04:41:06 +00:00
|
|
|
get('check_depth_of_market', {})
|
2018-08-29 09:38:43 +00:00
|
|
|
if (bidstrat_check_depth_of_market.get('enabled', False)) and\
|
|
|
|
(bidstrat_check_depth_of_market.get('bids_to_ask_delta', 0) > 0):
|
|
|
|
if self._check_depth_of_market_buy(_pair, bidstrat_check_depth_of_market):
|
2018-08-05 04:41:06 +00:00
|
|
|
return self.execute_buy(_pair, stake_amount)
|
|
|
|
else:
|
|
|
|
return False
|
2018-07-26 17:58:49 +00:00
|
|
|
return self.execute_buy(_pair, stake_amount)
|
2018-07-31 18:25:10 +00:00
|
|
|
|
2018-07-26 17:58:49 +00:00
|
|
|
return False
|
2018-07-10 13:10:56 +00:00
|
|
|
|
2018-08-07 10:29:37 +00:00
|
|
|
def _check_depth_of_market_buy(self, pair: str, conf: Dict) -> bool:
|
2018-08-05 04:41:06 +00:00
|
|
|
"""
|
|
|
|
Checks depth of market before executing a buy
|
|
|
|
"""
|
2018-08-07 10:29:37 +00:00
|
|
|
conf_bids_to_ask_delta = conf.get('bids_to_ask_delta', 0)
|
2018-08-05 04:41:06 +00:00
|
|
|
logger.info('checking depth of market for %s', pair)
|
|
|
|
order_book = self.exchange.get_order_book(pair, 1000)
|
2018-08-05 13:08:07 +00:00
|
|
|
order_book_data_frame = order_book_to_dataframe(order_book['bids'], order_book['asks'])
|
2018-08-05 04:41:06 +00:00
|
|
|
order_book_bids = order_book_data_frame['b_size'].sum()
|
|
|
|
order_book_asks = order_book_data_frame['a_size'].sum()
|
|
|
|
bids_ask_delta = order_book_bids / order_book_asks
|
|
|
|
logger.info('bids: %s, asks: %s, delta: %s', order_book_bids,
|
2018-08-07 10:29:37 +00:00
|
|
|
order_book_asks, bids_ask_delta)
|
2018-08-05 04:41:06 +00:00
|
|
|
if bids_ask_delta >= conf_bids_to_ask_delta:
|
|
|
|
return True
|
2018-07-26 17:58:49 +00:00
|
|
|
return False
|
2018-07-10 13:10:56 +00:00
|
|
|
|
2018-10-09 05:06:11 +00:00
|
|
|
def execute_buy(self, pair: str, stake_amount: float, price: Optional[float] = None) -> bool:
|
2018-07-10 13:10:56 +00:00
|
|
|
"""
|
|
|
|
Executes a limit buy for the given pair
|
|
|
|
:param pair: pair for which we want to create a LIMIT_BUY
|
|
|
|
:return: None
|
|
|
|
"""
|
2018-06-09 05:21:17 +00:00
|
|
|
pair_s = pair.replace('_', '/')
|
2018-09-21 19:55:36 +00:00
|
|
|
stake_currency = self.config['stake_currency']
|
2018-09-21 15:41:31 +00:00
|
|
|
fiat_currency = self.config.get('fiat_display_currency', None)
|
2018-12-09 14:59:05 +00:00
|
|
|
time_in_force = self.strategy.order_time_in_force['buy']
|
2018-09-26 14:36:41 +00:00
|
|
|
|
2018-10-09 05:06:11 +00:00
|
|
|
if price:
|
2018-12-10 17:52:24 +00:00
|
|
|
buy_limit_requested = price
|
2018-10-09 05:06:11 +00:00
|
|
|
else:
|
|
|
|
# Calculate amount
|
2019-02-12 23:55:55 +00:00
|
|
|
buy_limit_requested = self.get_target_bid(pair)
|
2018-09-26 14:36:41 +00:00
|
|
|
|
2018-12-10 17:52:24 +00:00
|
|
|
min_stake_amount = self._get_min_pair_stake_amount(pair_s, buy_limit_requested)
|
2018-06-16 23:23:12 +00:00
|
|
|
if min_stake_amount is not None and min_stake_amount > stake_amount:
|
|
|
|
logger.warning(
|
2019-02-10 18:31:13 +00:00
|
|
|
f'Can\'t open a new trade for {pair_s}: stake amount '
|
|
|
|
f'is too small ({stake_amount} < {min_stake_amount})'
|
2018-06-16 23:23:12 +00:00
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
2018-12-10 17:52:24 +00:00
|
|
|
amount = stake_amount / buy_limit_requested
|
2018-02-04 09:21:16 +00:00
|
|
|
|
2018-11-27 18:05:59 +00:00
|
|
|
order = self.exchange.buy(pair=pair, ordertype=self.strategy.order_types['buy'],
|
2018-12-10 17:52:24 +00:00
|
|
|
amount=amount, rate=buy_limit_requested,
|
2018-12-09 14:59:05 +00:00
|
|
|
time_in_force=time_in_force)
|
2018-11-27 18:05:59 +00:00
|
|
|
order_id = order['id']
|
2018-12-09 14:59:05 +00:00
|
|
|
order_status = order.get('status', None)
|
2018-11-27 18:05:59 +00:00
|
|
|
|
2018-12-10 17:52:24 +00:00
|
|
|
# we assume the order is executed at the price requested
|
|
|
|
buy_limit_filled_price = buy_limit_requested
|
|
|
|
|
2018-12-09 14:59:05 +00:00
|
|
|
if order_status == 'expired' or order_status == 'rejected':
|
2018-11-27 18:05:59 +00:00
|
|
|
order_type = self.strategy.order_types['buy']
|
2018-11-29 12:22:41 +00:00
|
|
|
order_tif = self.strategy.order_time_in_force['buy']
|
2018-12-09 14:59:05 +00:00
|
|
|
|
2018-12-12 12:33:03 +00:00
|
|
|
# return false if the order is not filled
|
2018-12-09 14:59:05 +00:00
|
|
|
if float(order['filled']) == 0:
|
|
|
|
logger.warning('Buy %s order with time in force %s for %s is %s by %s.'
|
|
|
|
' zero amount is fulfilled.',
|
|
|
|
order_tif, order_type, pair_s, order_status, self.exchange.name)
|
|
|
|
return False
|
2018-12-10 17:52:24 +00:00
|
|
|
else:
|
|
|
|
# the order is partially fulfilled
|
|
|
|
# in case of IOC orders we can check immediately
|
|
|
|
# if the order is fulfilled fully or partially
|
2018-12-09 14:59:05 +00:00
|
|
|
logger.warning('Buy %s order with time in force %s for %s is %s by %s.'
|
|
|
|
' %s amount fulfilled out of %s (%s remaining which is canceled).',
|
|
|
|
order_tif, order_type, pair_s, order_status, self.exchange.name,
|
|
|
|
order['filled'], order['amount'], order['remaining']
|
|
|
|
)
|
2018-12-12 12:05:55 +00:00
|
|
|
stake_amount = order['cost']
|
2018-12-10 17:52:24 +00:00
|
|
|
amount = order['amount']
|
2018-12-12 12:05:55 +00:00
|
|
|
buy_limit_filled_price = order['price']
|
2018-12-10 17:52:24 +00:00
|
|
|
order_id = None
|
|
|
|
|
|
|
|
# in case of FOK the order may be filled immediately and fully
|
2018-12-12 12:05:55 +00:00
|
|
|
elif order_status == 'closed':
|
|
|
|
stake_amount = order['cost']
|
2018-12-10 17:52:24 +00:00
|
|
|
amount = order['amount']
|
2018-12-12 12:05:55 +00:00
|
|
|
buy_limit_filled_price = order['price']
|
2018-11-27 18:05:59 +00:00
|
|
|
|
2018-06-24 22:04:27 +00:00
|
|
|
self.rpc.send_msg({
|
2018-07-03 18:26:48 +00:00
|
|
|
'type': RPCMessageType.BUY_NOTIFICATION,
|
|
|
|
'exchange': self.exchange.name.capitalize(),
|
|
|
|
'pair': pair_s,
|
2018-12-12 12:33:03 +00:00
|
|
|
'limit': buy_limit_filled_price,
|
2018-07-03 18:26:48 +00:00
|
|
|
'stake_amount': stake_amount,
|
|
|
|
'stake_currency': stake_currency,
|
|
|
|
'fiat_currency': fiat_currency
|
2018-06-24 22:04:27 +00:00
|
|
|
})
|
2018-11-22 16:02:02 +00:00
|
|
|
|
2018-02-04 09:21:16 +00:00
|
|
|
# Fee is applied twice because we make a LIMIT_BUY and LIMIT_SELL
|
2018-06-17 10:41:33 +00:00
|
|
|
fee = self.exchange.get_fee(symbol=pair, taker_or_maker='maker')
|
2018-02-04 09:21:16 +00:00
|
|
|
trade = Trade(
|
|
|
|
pair=pair,
|
|
|
|
stake_amount=stake_amount,
|
|
|
|
amount=amount,
|
2018-04-21 17:47:08 +00:00
|
|
|
fee_open=fee,
|
|
|
|
fee_close=fee,
|
2018-12-10 17:52:24 +00:00
|
|
|
open_rate=buy_limit_filled_price,
|
|
|
|
open_rate_requested=buy_limit_requested,
|
2018-02-04 09:21:16 +00:00
|
|
|
open_date=datetime.utcnow(),
|
2018-06-18 20:20:50 +00:00
|
|
|
exchange=self.exchange.id,
|
2018-07-12 18:38:57 +00:00
|
|
|
open_order_id=order_id,
|
2018-07-19 17:41:42 +00:00
|
|
|
strategy=self.strategy.get_strategy_name(),
|
2019-04-04 17:56:40 +00:00
|
|
|
ticker_interval=timeframe_to_minutes(self.config['ticker_interval'])
|
2018-02-04 09:21:16 +00:00
|
|
|
)
|
2018-11-22 16:02:02 +00:00
|
|
|
|
2019-03-31 17:41:17 +00:00
|
|
|
# Update fees if order is closed
|
2019-03-31 13:40:16 +00:00
|
|
|
if order_status == 'closed':
|
2019-04-02 05:12:48 +00:00
|
|
|
self.update_trade_state(trade, order)
|
2019-03-31 13:40:16 +00:00
|
|
|
|
2018-02-04 09:21:16 +00:00
|
|
|
Trade.session.add(trade)
|
|
|
|
Trade.session.flush()
|
2018-11-17 20:22:54 +00:00
|
|
|
|
|
|
|
# Updating wallets
|
|
|
|
self.wallets.update()
|
|
|
|
|
2018-02-04 09:21:16 +00:00
|
|
|
return True
|
|
|
|
|
2018-03-15 22:48:22 +00:00
|
|
|
def process_maybe_execute_buy(self) -> bool:
|
2018-02-04 09:21:16 +00:00
|
|
|
"""
|
|
|
|
Tries to execute a buy trade in a safe way
|
|
|
|
:return: True if executed
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
# Create entity and execute trade
|
2018-03-15 22:48:22 +00:00
|
|
|
if self.create_trade():
|
2018-02-04 09:21:16 +00:00
|
|
|
return True
|
|
|
|
|
2018-03-25 19:37:14 +00:00
|
|
|
logger.info('Found no buy signals for whitelisted currencies. Trying again..')
|
2018-02-04 09:21:16 +00:00
|
|
|
return False
|
|
|
|
except DependencyException as exception:
|
2018-03-25 19:37:14 +00:00
|
|
|
logger.warning('Unable to create trade: %s', exception)
|
2018-02-04 09:21:16 +00:00
|
|
|
return False
|
|
|
|
|
2018-03-15 22:48:22 +00:00
|
|
|
def process_maybe_execute_sell(self, trade: Trade) -> bool:
|
2018-02-04 09:21:16 +00:00
|
|
|
"""
|
|
|
|
Tries to execute a sell trade
|
|
|
|
:return: True if executed
|
|
|
|
"""
|
2018-04-22 18:27:34 +00:00
|
|
|
try:
|
2019-04-02 05:12:48 +00:00
|
|
|
self.update_trade_state(trade)
|
2018-04-22 18:27:34 +00:00
|
|
|
|
2018-11-28 12:58:53 +00:00
|
|
|
if self.strategy.order_types.get('stoploss_on_exchange') and trade.is_open:
|
2018-11-24 16:08:12 +00:00
|
|
|
result = self.handle_stoploss_on_exchange(trade)
|
2018-11-23 14:17:36 +00:00
|
|
|
if result:
|
|
|
|
self.wallets.update()
|
2018-11-23 18:17:36 +00:00
|
|
|
return result
|
2018-11-23 14:17:36 +00:00
|
|
|
|
2018-04-22 18:27:34 +00:00
|
|
|
if trade.is_open and trade.open_order_id is None:
|
|
|
|
# Check if we can sell our current pair
|
2018-11-17 20:26:41 +00:00
|
|
|
result = self.handle_trade(trade)
|
2018-11-17 20:27:42 +00:00
|
|
|
|
|
|
|
# Updating wallets if any trade occured
|
2018-11-17 20:22:54 +00:00
|
|
|
if result:
|
|
|
|
self.wallets.update()
|
2018-11-17 20:27:42 +00:00
|
|
|
|
2018-11-17 20:22:54 +00:00
|
|
|
return result
|
|
|
|
|
2018-04-22 18:27:34 +00:00
|
|
|
except DependencyException as exception:
|
|
|
|
logger.warning('Unable to sell trade: %s', exception)
|
2018-02-04 09:21:16 +00:00
|
|
|
return False
|
|
|
|
|
2018-04-25 06:52:08 +00:00
|
|
|
def get_real_amount(self, trade: Trade, order: Dict) -> float:
|
2018-04-15 17:38:58 +00:00
|
|
|
"""
|
|
|
|
Get real amount for the trade
|
2019-04-09 09:27:35 +00:00
|
|
|
Necessary for exchanges which charge fees in base currency (e.g. binance)
|
2018-04-15 17:38:58 +00:00
|
|
|
"""
|
2018-04-25 06:52:08 +00:00
|
|
|
order_amount = order['amount']
|
|
|
|
# Only run for closed orders
|
2018-04-25 07:01:21 +00:00
|
|
|
if trade.fee_open == 0 or order['status'] == 'open':
|
2018-04-25 06:52:08 +00:00
|
|
|
return order_amount
|
|
|
|
|
|
|
|
# use fee from order-dict if possible
|
2018-05-15 17:49:28 +00:00
|
|
|
if 'fee' in order and order['fee'] and (order['fee'].keys() >= {'currency', 'cost'}):
|
2018-04-25 06:52:08 +00:00
|
|
|
if trade.pair.startswith(order['fee']['currency']):
|
|
|
|
new_amount = order_amount - order['fee']['cost']
|
|
|
|
logger.info("Applying fee on amount for %s (from %s to %s) from Order",
|
|
|
|
trade, order['amount'], new_amount)
|
|
|
|
return new_amount
|
|
|
|
|
|
|
|
# Fallback to Trades
|
2018-06-17 10:41:33 +00:00
|
|
|
trades = self.exchange.get_trades_for_order(trade.open_order_id, trade.pair,
|
|
|
|
trade.open_date)
|
2018-04-15 17:38:58 +00:00
|
|
|
|
|
|
|
if len(trades) == 0:
|
2018-04-25 06:52:08 +00:00
|
|
|
logger.info("Applying fee on amount for %s failed: myTrade-Dict empty found", trade)
|
|
|
|
return order_amount
|
2018-04-15 17:38:58 +00:00
|
|
|
amount = 0
|
2018-04-21 17:47:08 +00:00
|
|
|
fee_abs = 0
|
2018-04-25 06:52:08 +00:00
|
|
|
for exectrade in trades:
|
|
|
|
amount += exectrade['amount']
|
2018-05-15 17:49:28 +00:00
|
|
|
if "fee" in exectrade and (exectrade['fee'].keys() >= {'currency', 'cost'}):
|
2018-04-21 17:47:08 +00:00
|
|
|
# only applies if fee is in quote currency!
|
2018-04-25 06:52:08 +00:00
|
|
|
if trade.pair.startswith(exectrade['fee']['currency']):
|
|
|
|
fee_abs += exectrade['fee']['cost']
|
2018-04-15 17:38:58 +00:00
|
|
|
|
2018-04-25 06:52:08 +00:00
|
|
|
if amount != order_amount:
|
2019-02-10 18:31:13 +00:00
|
|
|
logger.warning(f"Amount {amount} does not match amount {trade.amount}")
|
2018-04-15 17:38:58 +00:00
|
|
|
raise OperationalException("Half bought? Amounts don't match")
|
2018-04-21 17:47:08 +00:00
|
|
|
real_amount = amount - fee_abs
|
2018-04-25 06:52:08 +00:00
|
|
|
if fee_abs != 0:
|
2019-02-10 18:31:13 +00:00
|
|
|
logger.info(f"Applying fee on amount for {trade} "
|
|
|
|
f"(from {order_amount} to {real_amount}) from Trades")
|
2018-04-15 17:38:58 +00:00
|
|
|
return real_amount
|
|
|
|
|
2019-04-02 05:12:48 +00:00
|
|
|
def update_trade_state(self, trade, action_order: dict = None):
|
2019-03-31 13:39:41 +00:00
|
|
|
"""
|
|
|
|
Checks trades with open orders and updates the amount if necessary
|
|
|
|
"""
|
|
|
|
# Get order details for actual price per unit
|
|
|
|
if trade.open_order_id:
|
|
|
|
# Update trade with order values
|
|
|
|
logger.info('Found open order for %s', trade)
|
|
|
|
order = action_order or self.exchange.get_order(trade.open_order_id, trade.pair)
|
|
|
|
# Try update amount (binance-fix)
|
|
|
|
try:
|
|
|
|
new_amount = self.get_real_amount(trade, order)
|
|
|
|
if order['amount'] != new_amount:
|
|
|
|
order['amount'] = new_amount
|
|
|
|
# Fee was applied, so set to 0
|
|
|
|
trade.fee_open = 0
|
|
|
|
|
|
|
|
except OperationalException as exception:
|
|
|
|
logger.warning("Could not update trade amount: %s", exception)
|
|
|
|
|
|
|
|
trade.update(order)
|
|
|
|
|
2019-04-21 16:49:07 +00:00
|
|
|
# Updating wallets when order is closed
|
2019-04-21 17:20:28 +00:00
|
|
|
if not trade.is_open:
|
2019-04-21 16:49:07 +00:00
|
|
|
self.wallets.update()
|
|
|
|
|
2019-03-16 12:24:10 +00:00
|
|
|
def get_sell_rate(self, pair: str, refresh: bool) -> float:
|
|
|
|
"""
|
|
|
|
Get sell rate - either using get-ticker bid or first bid based on orderbook
|
|
|
|
The orderbook portion is only used for rpc messaging, which would otherwise fail
|
|
|
|
for BitMex (has no bid/ask in get_ticker)
|
|
|
|
or remain static in any other case since it's not updating.
|
|
|
|
:return: Bid rate
|
|
|
|
"""
|
|
|
|
config_ask_strategy = self.config.get('ask_strategy', {})
|
|
|
|
if config_ask_strategy.get('use_order_book', False):
|
|
|
|
logger.debug('Using order book to get sell rate')
|
|
|
|
|
|
|
|
order_book = self.exchange.get_order_book(pair, 1)
|
2019-03-17 10:27:01 +00:00
|
|
|
rate = order_book['bids'][0][0]
|
2019-03-16 12:24:10 +00:00
|
|
|
|
|
|
|
else:
|
|
|
|
rate = self.exchange.get_ticker(pair, refresh)['bid']
|
|
|
|
return rate
|
|
|
|
|
2018-03-15 22:48:22 +00:00
|
|
|
def handle_trade(self, trade: Trade) -> bool:
|
2018-02-04 09:21:16 +00:00
|
|
|
"""
|
|
|
|
Sells the current pair if the threshold is reached and updates the trade record.
|
|
|
|
:return: True if trade has been sold, False otherwise
|
|
|
|
"""
|
|
|
|
if not trade.is_open:
|
2019-02-10 18:31:13 +00:00
|
|
|
raise ValueError(f'Attempt to handle closed trade: {trade}')
|
2018-02-04 09:21:16 +00:00
|
|
|
|
2018-03-25 19:37:14 +00:00
|
|
|
logger.debug('Handling %s ...', trade)
|
2018-02-04 09:21:16 +00:00
|
|
|
|
|
|
|
(buy, sell) = (False, False)
|
2018-06-22 18:51:21 +00:00
|
|
|
experimental = self.config.get('experimental', {})
|
|
|
|
if experimental.get('use_sell_signal') or experimental.get('ignore_roi_if_buy_signal'):
|
2018-12-30 06:15:21 +00:00
|
|
|
(buy, sell) = self.strategy.get_signal(
|
|
|
|
trade.pair, self.strategy.ticker_interval,
|
|
|
|
self.dataprovider.ohlcv(trade.pair, self.strategy.ticker_interval))
|
2018-02-04 09:21:16 +00:00
|
|
|
|
2018-08-29 09:38:43 +00:00
|
|
|
config_ask_strategy = self.config.get('ask_strategy', {})
|
|
|
|
if config_ask_strategy.get('use_order_book', False):
|
2018-08-05 04:41:06 +00:00
|
|
|
logger.info('Using order book for selling...')
|
|
|
|
# logger.debug('Order book %s',orderBook)
|
2018-08-29 09:38:43 +00:00
|
|
|
order_book_min = config_ask_strategy.get('order_book_min', 1)
|
|
|
|
order_book_max = config_ask_strategy.get('order_book_max', 1)
|
2018-08-05 04:41:06 +00:00
|
|
|
|
|
|
|
order_book = self.exchange.get_order_book(trade.pair, order_book_max)
|
|
|
|
|
|
|
|
for i in range(order_book_min, order_book_max + 1):
|
|
|
|
order_book_rate = order_book['asks'][i - 1][0]
|
|
|
|
logger.info(' order book asks top %s: %0.8f', i, order_book_rate)
|
2019-02-13 00:54:57 +00:00
|
|
|
sell_rate = order_book_rate
|
2018-08-05 04:41:06 +00:00
|
|
|
|
|
|
|
if self.check_sell(trade, sell_rate, buy, sell):
|
|
|
|
return True
|
2019-01-16 19:03:34 +00:00
|
|
|
|
2018-08-05 04:41:06 +00:00
|
|
|
else:
|
2018-11-30 13:14:31 +00:00
|
|
|
logger.debug('checking sell')
|
2019-03-16 12:24:10 +00:00
|
|
|
sell_rate = self.get_sell_rate(trade.pair, True)
|
2018-08-05 04:41:06 +00:00
|
|
|
if self.check_sell(trade, sell_rate, buy, sell):
|
|
|
|
return True
|
|
|
|
|
2018-12-01 09:01:11 +00:00
|
|
|
logger.debug('Found no sell signal for %s.', trade)
|
2018-08-05 04:41:06 +00:00
|
|
|
return False
|
|
|
|
|
2018-11-24 16:08:12 +00:00
|
|
|
def handle_stoploss_on_exchange(self, trade: Trade) -> bool:
|
2018-11-24 16:10:51 +00:00
|
|
|
"""
|
|
|
|
Check if trade is fulfilled in which case the stoploss
|
2019-01-08 12:44:51 +00:00
|
|
|
on exchange should be added immediately if stoploss on exchange
|
2018-11-24 16:10:51 +00:00
|
|
|
is enabled.
|
|
|
|
"""
|
|
|
|
|
2019-04-04 15:13:54 +00:00
|
|
|
logger.debug('Handling stoploss on exchange %s ...', trade)
|
|
|
|
|
2019-04-05 18:20:16 +00:00
|
|
|
stoploss_order = None
|
|
|
|
|
2019-03-31 13:41:10 +00:00
|
|
|
try:
|
2019-04-04 15:13:54 +00:00
|
|
|
# First we check if there is already a stoploss on exchange
|
|
|
|
stoploss_order = self.exchange.get_order(trade.stoploss_order_id, trade.pair) \
|
|
|
|
if trade.stoploss_order_id else None
|
2019-04-05 18:20:16 +00:00
|
|
|
except InvalidOrderException as exception:
|
2019-04-04 15:13:54 +00:00
|
|
|
logger.warning('Unable to fetch stoploss order: %s', exception)
|
|
|
|
|
2019-04-05 17:53:15 +00:00
|
|
|
# If trade open order id does not exist: buy order is fulfilled
|
2019-04-04 15:13:54 +00:00
|
|
|
buy_order_fulfilled = not trade.open_order_id
|
|
|
|
|
2019-04-05 17:49:02 +00:00
|
|
|
# Limit price threshold: As limit price should always be below price
|
2019-04-04 15:13:54 +00:00
|
|
|
limit_price_pct = 0.99
|
|
|
|
|
2019-04-05 18:20:16 +00:00
|
|
|
# If buy order is fulfilled but there is no stoploss, we add a stoploss on exchange
|
2019-04-04 15:13:54 +00:00
|
|
|
if (buy_order_fulfilled and not stoploss_order):
|
|
|
|
if self.edge:
|
|
|
|
stoploss = self.edge.stoploss(pair=trade.pair)
|
|
|
|
else:
|
|
|
|
stoploss = self.strategy.stoploss
|
2019-03-31 13:41:10 +00:00
|
|
|
|
2019-04-04 15:13:54 +00:00
|
|
|
stop_price = trade.open_rate * (1 + stoploss)
|
2019-03-31 13:41:10 +00:00
|
|
|
|
2019-04-04 15:13:54 +00:00
|
|
|
# limit price should be less than stop price.
|
|
|
|
limit_price = stop_price * limit_price_pct
|
2019-03-31 13:41:10 +00:00
|
|
|
|
2019-04-04 15:13:54 +00:00
|
|
|
try:
|
2019-03-31 13:41:10 +00:00
|
|
|
stoploss_order_id = self.exchange.stoploss_limit(
|
|
|
|
pair=trade.pair, amount=trade.amount, stop_price=stop_price, rate=limit_price
|
|
|
|
)['id']
|
|
|
|
trade.stoploss_order_id = str(stoploss_order_id)
|
|
|
|
trade.stoploss_last_update = datetime.now()
|
2019-04-04 15:13:54 +00:00
|
|
|
return False
|
2019-03-31 13:41:10 +00:00
|
|
|
|
2019-04-04 15:13:54 +00:00
|
|
|
except DependencyException as exception:
|
|
|
|
logger.warning('Unable to place a stoploss order on exchange: %s', exception)
|
|
|
|
|
|
|
|
# If stoploss order is canceled for some reason we add it
|
|
|
|
if stoploss_order and stoploss_order['status'] == 'canceled':
|
|
|
|
try:
|
|
|
|
stoploss_order_id = self.exchange.stoploss_limit(
|
|
|
|
pair=trade.pair, amount=trade.amount,
|
|
|
|
stop_price=trade.stop_loss, rate=trade.stop_loss * limit_price_pct
|
|
|
|
)['id']
|
|
|
|
trade.stoploss_order_id = str(stoploss_order_id)
|
|
|
|
return False
|
|
|
|
except DependencyException as exception:
|
2019-04-04 15:17:21 +00:00
|
|
|
logger.warning('Stoploss order was cancelled, '
|
|
|
|
'but unable to recreate one: %s', exception)
|
2019-04-04 15:13:54 +00:00
|
|
|
|
|
|
|
# We check if stoploss order is fulfilled
|
|
|
|
if stoploss_order and stoploss_order['status'] == 'closed':
|
|
|
|
trade.sell_reason = SellType.STOPLOSS_ON_EXCHANGE.value
|
|
|
|
trade.update(stoploss_order)
|
|
|
|
self.notify_sell(trade)
|
|
|
|
return True
|
|
|
|
|
|
|
|
# Finally we check if stoploss on exchange should be moved up because of trailing.
|
|
|
|
if stoploss_order and self.config.get('trailing_stop', False):
|
|
|
|
# if trailing stoploss is enabled we check if stoploss value has changed
|
|
|
|
# in which case we cancel stoploss order and put another one with new
|
|
|
|
# value immediately
|
|
|
|
self.handle_trailing_stoploss_on_exchange(trade, stoploss_order)
|
|
|
|
|
|
|
|
return False
|
2018-11-23 19:47:17 +00:00
|
|
|
|
2019-01-16 11:16:32 +00:00
|
|
|
def handle_trailing_stoploss_on_exchange(self, trade: Trade, order):
|
2019-01-16 14:00:35 +00:00
|
|
|
"""
|
|
|
|
Check to see if stoploss on exchange should be updated
|
|
|
|
in case of trailing stoploss on exchange
|
|
|
|
:param Trade: Corresponding Trade
|
|
|
|
:param order: Current on exchange stoploss order
|
|
|
|
:return: None
|
|
|
|
"""
|
|
|
|
|
2019-01-16 15:15:36 +00:00
|
|
|
if trade.stop_loss > float(order['info']['stopPrice']):
|
2019-01-16 11:16:32 +00:00
|
|
|
# we check if the update is neccesary
|
2019-01-18 11:02:29 +00:00
|
|
|
update_beat = self.strategy.order_types.get('stoploss_on_exchange_interval', 60)
|
2019-01-16 11:16:32 +00:00
|
|
|
if (datetime.utcnow() - trade.stoploss_last_update).total_seconds() > update_beat:
|
|
|
|
# cancelling the current stoploss on exchange first
|
2019-04-02 16:57:06 +00:00
|
|
|
logger.info('Trailing stoploss: cancelling current stoploss on exchange (id:{%s})'
|
|
|
|
'in order to add another one ...', order['id'])
|
2019-01-16 11:16:32 +00:00
|
|
|
if self.exchange.cancel_order(order['id'], trade.pair):
|
|
|
|
# creating the new one
|
|
|
|
stoploss_order_id = self.exchange.stoploss_limit(
|
|
|
|
pair=trade.pair, amount=trade.amount,
|
|
|
|
stop_price=trade.stop_loss, rate=trade.stop_loss * 0.99
|
|
|
|
)['id']
|
|
|
|
trade.stoploss_order_id = str(stoploss_order_id)
|
|
|
|
|
2018-08-05 04:41:06 +00:00
|
|
|
def check_sell(self, trade: Trade, sell_rate: float, buy: bool, sell: bool) -> bool:
|
2018-11-07 17:12:46 +00:00
|
|
|
if self.edge:
|
2018-09-21 15:41:31 +00:00
|
|
|
stoploss = self.edge.stoploss(trade.pair)
|
2018-10-01 15:33:18 +00:00
|
|
|
should_sell = self.strategy.should_sell(
|
2018-11-07 17:12:46 +00:00
|
|
|
trade, sell_rate, datetime.utcnow(), buy, sell, force_stoploss=stoploss)
|
2018-09-21 15:41:31 +00:00
|
|
|
else:
|
2018-10-01 15:33:18 +00:00
|
|
|
should_sell = self.strategy.should_sell(trade, sell_rate, datetime.utcnow(), buy, sell)
|
2018-09-21 15:41:31 +00:00
|
|
|
|
2018-07-12 20:21:52 +00:00
|
|
|
if should_sell.sell_flag:
|
2018-08-05 04:41:06 +00:00
|
|
|
self.execute_sell(trade, sell_rate, should_sell.sell_type)
|
2018-10-04 16:05:46 +00:00
|
|
|
logger.info('executed sell, reason: %s', should_sell.sell_type)
|
2018-02-04 09:21:16 +00:00
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2018-06-14 01:32:52 +00:00
|
|
|
def check_handle_timedout(self) -> None:
|
2018-02-04 09:21:16 +00:00
|
|
|
"""
|
|
|
|
Check if any orders are timed out and cancel if neccessary
|
|
|
|
:param timeoutvalue: Number of minutes until order is considered timed out
|
|
|
|
:return: None
|
|
|
|
"""
|
2018-06-14 01:32:52 +00:00
|
|
|
buy_timeout = self.config['unfilledtimeout']['buy']
|
|
|
|
sell_timeout = self.config['unfilledtimeout']['sell']
|
|
|
|
buy_timeoutthreashold = arrow.utcnow().shift(minutes=-buy_timeout).datetime
|
|
|
|
sell_timeoutthreashold = arrow.utcnow().shift(minutes=-sell_timeout).datetime
|
2018-02-04 09:21:16 +00:00
|
|
|
|
|
|
|
for trade in Trade.query.filter(Trade.open_order_id.isnot(None)).all():
|
|
|
|
try:
|
2018-06-08 00:37:12 +00:00
|
|
|
# FIXME: Somehow the query above returns results
|
|
|
|
# where the open_order_id is in fact None.
|
|
|
|
# This is probably because the record got
|
|
|
|
# updated via /forcesell in a different thread.
|
2018-06-08 00:34:44 +00:00
|
|
|
if not trade.open_order_id:
|
|
|
|
continue
|
2018-06-17 10:41:33 +00:00
|
|
|
order = self.exchange.get_order(trade.open_order_id, trade.pair)
|
2018-09-25 18:45:01 +00:00
|
|
|
except (RequestException, DependencyException):
|
2018-03-25 19:37:14 +00:00
|
|
|
logger.info(
|
2018-02-04 09:21:16 +00:00
|
|
|
'Cannot query order for %s due to %s',
|
|
|
|
trade,
|
|
|
|
traceback.format_exc())
|
|
|
|
continue
|
2018-03-25 20:25:26 +00:00
|
|
|
ordertime = arrow.get(order['datetime']).datetime
|
2018-02-04 09:21:16 +00:00
|
|
|
|
|
|
|
# Check if trade is still actually open
|
2018-12-24 10:39:11 +00:00
|
|
|
if float(order['remaining']) == 0.0:
|
2018-11-21 16:48:53 +00:00
|
|
|
self.wallets.update()
|
2018-02-04 09:21:16 +00:00
|
|
|
continue
|
|
|
|
|
2019-02-03 12:39:05 +00:00
|
|
|
# Handle cancelled on exchange
|
|
|
|
if order['status'] == 'canceled':
|
|
|
|
if order['side'] == 'buy':
|
|
|
|
self.handle_buy_order_full_cancel(trade, "canceled on Exchange")
|
|
|
|
elif order['side'] == 'sell':
|
|
|
|
self.handle_timedout_limit_sell(trade, order)
|
|
|
|
self.wallets.update()
|
|
|
|
# Check if order is still actually open
|
|
|
|
elif order['status'] == 'open':
|
2018-06-14 01:32:52 +00:00
|
|
|
if order['side'] == 'buy' and ordertime < buy_timeoutthreashold:
|
|
|
|
self.handle_timedout_limit_buy(trade, order)
|
2018-11-19 10:16:07 +00:00
|
|
|
self.wallets.update()
|
2018-06-14 01:32:52 +00:00
|
|
|
elif order['side'] == 'sell' and ordertime < sell_timeoutthreashold:
|
|
|
|
self.handle_timedout_limit_sell(trade, order)
|
2018-11-19 10:16:07 +00:00
|
|
|
self.wallets.update()
|
2018-02-04 09:21:16 +00:00
|
|
|
|
2019-02-03 12:39:05 +00:00
|
|
|
def handle_buy_order_full_cancel(self, trade: Trade, reason: str) -> None:
|
2019-02-04 05:13:22 +00:00
|
|
|
"""Close trade in database and send message"""
|
2019-02-03 12:39:05 +00:00
|
|
|
Trade.session.delete(trade)
|
|
|
|
Trade.session.flush()
|
|
|
|
logger.info('Buy order %s for %s.', reason, trade)
|
|
|
|
self.rpc.send_msg({
|
|
|
|
'type': RPCMessageType.STATUS_NOTIFICATION,
|
|
|
|
'status': f'Unfilled buy order for {trade.pair} {reason}'
|
|
|
|
})
|
|
|
|
|
2018-02-04 09:21:16 +00:00
|
|
|
def handle_timedout_limit_buy(self, trade: Trade, order: Dict) -> bool:
|
|
|
|
"""Buy timeout - cancel order
|
|
|
|
:return: True if order was fully cancelled
|
|
|
|
"""
|
2018-06-17 10:41:33 +00:00
|
|
|
self.exchange.cancel_order(trade.open_order_id, trade.pair)
|
2018-02-04 09:21:16 +00:00
|
|
|
if order['remaining'] == order['amount']:
|
|
|
|
# if trade is not partially completed, just delete the trade
|
2019-02-03 12:39:05 +00:00
|
|
|
self.handle_buy_order_full_cancel(trade, "cancelled due to timeout")
|
2018-02-04 09:21:16 +00:00
|
|
|
return True
|
|
|
|
|
|
|
|
# if trade is partially complete, edit the stake details for the trade
|
|
|
|
# and close the order
|
|
|
|
trade.amount = order['amount'] - order['remaining']
|
|
|
|
trade.stake_amount = trade.amount * trade.open_rate
|
|
|
|
trade.open_order_id = None
|
2018-03-25 19:37:14 +00:00
|
|
|
logger.info('Partial buy order timeout for %s.', trade)
|
2018-06-24 22:04:27 +00:00
|
|
|
self.rpc.send_msg({
|
2018-07-03 18:26:48 +00:00
|
|
|
'type': RPCMessageType.STATUS_NOTIFICATION,
|
2019-02-03 12:39:05 +00:00
|
|
|
'status': f'Remaining buy order for {trade.pair} cancelled due to timeout'
|
2018-06-24 22:04:27 +00:00
|
|
|
})
|
2018-02-04 09:21:16 +00:00
|
|
|
return False
|
|
|
|
|
|
|
|
def handle_timedout_limit_sell(self, trade: Trade, order: Dict) -> bool:
|
|
|
|
"""
|
|
|
|
Sell timeout - cancel order and update trade
|
|
|
|
:return: True if order was fully cancelled
|
|
|
|
"""
|
|
|
|
if order['remaining'] == order['amount']:
|
|
|
|
# if trade is not partially completed, just cancel the trade
|
2019-02-03 12:39:05 +00:00
|
|
|
if order["status"] != "canceled":
|
|
|
|
reason = "due to timeout"
|
|
|
|
self.exchange.cancel_order(trade.open_order_id, trade.pair)
|
|
|
|
logger.info('Sell order timeout for %s.', trade)
|
|
|
|
else:
|
|
|
|
reason = "on exchange"
|
2019-02-03 12:49:55 +00:00
|
|
|
logger.info('Sell order canceled on exchange for %s.', trade)
|
2018-02-04 09:21:16 +00:00
|
|
|
trade.close_rate = None
|
|
|
|
trade.close_profit = None
|
|
|
|
trade.close_date = None
|
|
|
|
trade.is_open = True
|
|
|
|
trade.open_order_id = None
|
2018-06-24 22:04:27 +00:00
|
|
|
self.rpc.send_msg({
|
2018-07-03 18:26:48 +00:00
|
|
|
'type': RPCMessageType.STATUS_NOTIFICATION,
|
2019-02-04 05:13:22 +00:00
|
|
|
'status': f'Unfilled sell order for {trade.pair} cancelled {reason}'
|
2018-06-24 22:04:27 +00:00
|
|
|
})
|
2019-02-03 12:39:05 +00:00
|
|
|
|
2018-02-04 09:21:16 +00:00
|
|
|
return True
|
|
|
|
|
|
|
|
# TODO: figure out how to handle partially complete sell orders
|
|
|
|
return False
|
|
|
|
|
2018-07-22 23:54:20 +00:00
|
|
|
def execute_sell(self, trade: Trade, limit: float, sell_reason: SellType) -> None:
|
2018-02-04 09:21:16 +00:00
|
|
|
"""
|
|
|
|
Executes a limit sell for the given trade and limit
|
|
|
|
:param trade: Trade instance
|
|
|
|
:param limit: limit rate for the sell order
|
2018-07-22 23:54:20 +00:00
|
|
|
:param sellreason: Reason the sell was triggered
|
2018-02-04 09:21:16 +00:00
|
|
|
:return: None
|
|
|
|
"""
|
2018-11-15 05:58:24 +00:00
|
|
|
sell_type = 'sell'
|
|
|
|
if sell_reason in (SellType.STOP_LOSS, SellType.TRAILING_STOP_LOSS):
|
|
|
|
sell_type = 'stoploss'
|
2018-11-25 18:48:46 +00:00
|
|
|
|
2018-12-01 09:50:41 +00:00
|
|
|
# if stoploss is on exchange and we are on dry_run mode,
|
|
|
|
# we consider the sell price stop price
|
|
|
|
if self.config.get('dry_run', False) and sell_type == 'stoploss' \
|
|
|
|
and self.strategy.order_types['stoploss_on_exchange']:
|
2019-01-31 05:51:03 +00:00
|
|
|
limit = trade.stop_loss
|
2018-11-25 18:48:46 +00:00
|
|
|
|
2018-11-22 16:02:02 +00:00
|
|
|
# First cancelling stoploss on exchange ...
|
2018-11-25 16:22:56 +00:00
|
|
|
if self.strategy.order_types.get('stoploss_on_exchange') and trade.stoploss_order_id:
|
2018-11-22 16:02:02 +00:00
|
|
|
self.exchange.cancel_order(trade.stoploss_order_id, trade.pair)
|
|
|
|
|
2018-02-04 09:21:16 +00:00
|
|
|
# Execute sell and update trade record
|
2018-11-17 12:23:13 +00:00
|
|
|
order_id = self.exchange.sell(pair=str(trade.pair),
|
|
|
|
ordertype=self.strategy.order_types[sell_type],
|
2018-11-25 21:02:59 +00:00
|
|
|
amount=trade.amount, rate=limit,
|
|
|
|
time_in_force=self.strategy.order_time_in_force['sell']
|
|
|
|
)['id']
|
|
|
|
|
2018-02-04 09:21:16 +00:00
|
|
|
trade.open_order_id = order_id
|
2018-04-25 18:16:36 +00:00
|
|
|
trade.close_rate_requested = limit
|
2018-07-22 23:54:20 +00:00
|
|
|
trade.sell_reason = sell_reason.value
|
2018-02-04 09:21:16 +00:00
|
|
|
Trade.session.flush()
|
2019-03-12 21:01:19 +00:00
|
|
|
self.notify_sell(trade)
|
|
|
|
|
|
|
|
def notify_sell(self, trade: Trade):
|
|
|
|
"""
|
|
|
|
Sends rpc notification when a sell occured.
|
|
|
|
"""
|
2019-03-13 18:41:58 +00:00
|
|
|
profit_rate = trade.close_rate if trade.close_rate else trade.close_rate_requested
|
|
|
|
profit_trade = trade.calc_profit(rate=profit_rate)
|
2019-03-16 12:24:10 +00:00
|
|
|
# Use cached ticker here - it was updated seconds ago.
|
|
|
|
current_rate = self.get_sell_rate(trade.pair, False)
|
2019-03-13 18:41:58 +00:00
|
|
|
profit_percent = trade.calc_profit_percent(profit_rate)
|
2019-03-12 21:01:19 +00:00
|
|
|
gain = "profit" if profit_percent > 0 else "loss"
|
|
|
|
|
|
|
|
msg = {
|
|
|
|
'type': RPCMessageType.SELL_NOTIFICATION,
|
|
|
|
'exchange': trade.exchange.capitalize(),
|
|
|
|
'pair': trade.pair,
|
|
|
|
'gain': gain,
|
|
|
|
'limit': trade.close_rate_requested,
|
|
|
|
'amount': trade.amount,
|
|
|
|
'open_rate': trade.open_rate,
|
|
|
|
'current_rate': current_rate,
|
|
|
|
'profit_amount': profit_trade,
|
|
|
|
'profit_percent': profit_percent,
|
|
|
|
'sell_reason': trade.sell_reason
|
|
|
|
}
|
|
|
|
|
|
|
|
# For regular case, when the configuration exists
|
|
|
|
if 'stake_currency' in self.config and 'fiat_display_currency' in self.config:
|
|
|
|
stake_currency = self.config['stake_currency']
|
|
|
|
fiat_currency = self.config['fiat_display_currency']
|
|
|
|
msg.update({
|
|
|
|
'stake_currency': stake_currency,
|
|
|
|
'fiat_currency': fiat_currency,
|
|
|
|
})
|
|
|
|
|
|
|
|
# Send the message
|
|
|
|
self.rpc.send_msg(msg)
|