2018-02-13 03:45:59 +00:00
|
|
|
"""
|
|
|
|
This module contains class to define a RPC communications
|
|
|
|
"""
|
2018-03-25 19:37:14 +00:00
|
|
|
import logging
|
2018-06-02 11:43:51 +00:00
|
|
|
from datetime import datetime, timedelta, date
|
2018-03-17 21:44:47 +00:00
|
|
|
from decimal import Decimal
|
2018-06-02 11:52:55 +00:00
|
|
|
from typing import Dict, Tuple, Any
|
2018-03-17 21:44:47 +00:00
|
|
|
|
2018-03-02 15:22:00 +00:00
|
|
|
import arrow
|
2018-02-13 03:45:59 +00:00
|
|
|
import sqlalchemy as sql
|
2018-03-17 21:44:47 +00:00
|
|
|
from pandas import DataFrame
|
2018-06-07 18:08:46 +00:00
|
|
|
from numpy import mean, nan_to_num
|
2018-03-17 21:44:47 +00:00
|
|
|
|
|
|
|
from freqtrade import exchange
|
|
|
|
from freqtrade.misc import shorten_date
|
2018-02-13 03:45:59 +00:00
|
|
|
from freqtrade.persistence import Trade
|
|
|
|
from freqtrade.state import State
|
|
|
|
|
|
|
|
|
2018-03-25 19:37:14 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2018-02-13 03:45:59 +00:00
|
|
|
class RPC(object):
|
|
|
|
"""
|
|
|
|
RPC class can be used to have extra feature, like bot data, and access to DB data
|
|
|
|
"""
|
|
|
|
def __init__(self, freqtrade) -> None:
|
|
|
|
"""
|
|
|
|
Initializes all enabled rpc modules
|
|
|
|
:param freqtrade: Instance of a freqtrade bot
|
|
|
|
:return: None
|
|
|
|
"""
|
|
|
|
self.freqtrade = freqtrade
|
|
|
|
|
2018-03-17 22:30:31 +00:00
|
|
|
def rpc_trade_status(self) -> Tuple[bool, Any]:
|
2018-02-13 03:45:59 +00:00
|
|
|
"""
|
|
|
|
Below follows the RPC backend it is prefixed with rpc_ to raise awareness that it is
|
|
|
|
a remotely exposed function
|
|
|
|
:return:
|
|
|
|
"""
|
|
|
|
# Fetch open trade
|
|
|
|
trades = Trade.query.filter(Trade.is_open.is_(True)).all()
|
2018-04-06 07:57:08 +00:00
|
|
|
if self.freqtrade.state != State.RUNNING:
|
2018-03-17 22:30:31 +00:00
|
|
|
return True, '*Status:* `trader is not running`'
|
2018-02-13 03:45:59 +00:00
|
|
|
elif not trades:
|
2018-03-17 22:30:31 +00:00
|
|
|
return True, '*Status:* `no active trade`'
|
2018-02-13 03:45:59 +00:00
|
|
|
else:
|
|
|
|
result = []
|
|
|
|
for trade in trades:
|
|
|
|
order = None
|
|
|
|
if trade.open_order_id:
|
2018-03-25 20:25:26 +00:00
|
|
|
order = exchange.get_order(trade.open_order_id, trade.pair)
|
2018-02-13 03:45:59 +00:00
|
|
|
# calculate profit and send message to user
|
|
|
|
current_rate = exchange.get_ticker(trade.pair, False)['bid']
|
|
|
|
current_profit = trade.calc_profit_percent(current_rate)
|
|
|
|
fmt_close_profit = '{:.2f}%'.format(
|
|
|
|
round(trade.close_profit * 100, 2)
|
|
|
|
) if trade.close_profit else None
|
|
|
|
message = "*Trade ID:* `{trade_id}`\n" \
|
|
|
|
"*Current Pair:* [{pair}]({market_url})\n" \
|
|
|
|
"*Open Since:* `{date}`\n" \
|
|
|
|
"*Amount:* `{amount}`\n" \
|
|
|
|
"*Open Rate:* `{open_rate:.8f}`\n" \
|
|
|
|
"*Close Rate:* `{close_rate}`\n" \
|
|
|
|
"*Current Rate:* `{current_rate:.8f}`\n" \
|
|
|
|
"*Close Profit:* `{close_profit}`\n" \
|
|
|
|
"*Current Profit:* `{current_profit:.2f}%`\n" \
|
|
|
|
"*Open Order:* `{open_order}`"\
|
2018-03-02 15:22:00 +00:00
|
|
|
.format(
|
|
|
|
trade_id=trade.id,
|
|
|
|
pair=trade.pair,
|
|
|
|
market_url=exchange.get_pair_detail_url(trade.pair),
|
|
|
|
date=arrow.get(trade.open_date).humanize(),
|
|
|
|
open_rate=trade.open_rate,
|
|
|
|
close_rate=trade.close_rate,
|
|
|
|
current_rate=current_rate,
|
|
|
|
amount=round(trade.amount, 8),
|
|
|
|
close_profit=fmt_close_profit,
|
|
|
|
current_profit=round(current_profit * 100, 2),
|
2018-03-25 20:25:26 +00:00
|
|
|
open_order='({} {} rem={:.8f})'.format(
|
|
|
|
order['type'], order['side'], order['remaining']
|
2018-03-02 15:22:00 +00:00
|
|
|
) if order else None,
|
|
|
|
)
|
2018-02-13 03:45:59 +00:00
|
|
|
result.append(message)
|
2018-03-17 22:30:31 +00:00
|
|
|
return False, result
|
2018-02-13 03:45:59 +00:00
|
|
|
|
2018-03-17 22:30:31 +00:00
|
|
|
def rpc_status_table(self) -> Tuple[bool, Any]:
|
2018-02-13 03:45:59 +00:00
|
|
|
trades = Trade.query.filter(Trade.is_open.is_(True)).all()
|
2018-04-06 07:57:08 +00:00
|
|
|
if self.freqtrade.state != State.RUNNING:
|
2018-03-17 22:30:31 +00:00
|
|
|
return True, '*Status:* `trader is not running`'
|
2018-02-13 03:45:59 +00:00
|
|
|
elif not trades:
|
2018-03-17 22:30:31 +00:00
|
|
|
return True, '*Status:* `no active order`'
|
2018-02-13 03:45:59 +00:00
|
|
|
else:
|
|
|
|
trades_list = []
|
|
|
|
for trade in trades:
|
|
|
|
# calculate profit and send message to user
|
|
|
|
current_rate = exchange.get_ticker(trade.pair, False)['bid']
|
|
|
|
trades_list.append([
|
|
|
|
trade.id,
|
|
|
|
trade.pair,
|
|
|
|
shorten_date(arrow.get(trade.open_date).humanize(only_distance=True)),
|
|
|
|
'{:.2f}%'.format(100 * trade.calc_profit_percent(current_rate))
|
|
|
|
])
|
2018-03-02 15:22:00 +00:00
|
|
|
|
2018-02-13 03:45:59 +00:00
|
|
|
columns = ['ID', 'Pair', 'Since', 'Profit']
|
|
|
|
df_statuses = DataFrame.from_records(trades_list, columns=columns)
|
|
|
|
df_statuses = df_statuses.set_index(columns[0])
|
|
|
|
# The style used throughout is to return a tuple
|
|
|
|
# consisting of (error_occured?, result)
|
|
|
|
# Another approach would be to just return the
|
|
|
|
# result, or raise error
|
2018-03-17 22:30:31 +00:00
|
|
|
return False, df_statuses
|
2018-02-13 03:45:59 +00:00
|
|
|
|
2018-03-17 22:30:31 +00:00
|
|
|
def rpc_daily_profit(
|
|
|
|
self, timescale: int,
|
|
|
|
stake_currency: str, fiat_display_currency: str) -> Tuple[bool, Any]:
|
2018-02-13 03:45:59 +00:00
|
|
|
today = datetime.utcnow().date()
|
2018-06-02 11:43:51 +00:00
|
|
|
profit_days: Dict[date, Dict] = {}
|
2018-03-02 15:22:00 +00:00
|
|
|
|
2018-02-13 03:45:59 +00:00
|
|
|
if not (isinstance(timescale, int) and timescale > 0):
|
2018-03-17 22:30:31 +00:00
|
|
|
return True, '*Daily [n]:* `must be an integer greater than 0`'
|
2018-03-02 15:22:00 +00:00
|
|
|
|
2018-02-13 03:45:59 +00:00
|
|
|
fiat = self.freqtrade.fiat_converter
|
|
|
|
for day in range(0, timescale):
|
|
|
|
profitday = today - timedelta(days=day)
|
|
|
|
trades = Trade.query \
|
|
|
|
.filter(Trade.is_open.is_(False)) \
|
|
|
|
.filter(Trade.close_date >= profitday)\
|
|
|
|
.filter(Trade.close_date < (profitday + timedelta(days=1)))\
|
|
|
|
.order_by(Trade.close_date)\
|
|
|
|
.all()
|
|
|
|
curdayprofit = sum(trade.calc_profit() for trade in trades)
|
|
|
|
profit_days[profitday] = {
|
|
|
|
'amount': format(curdayprofit, '.8f'),
|
|
|
|
'trades': len(trades)
|
|
|
|
}
|
2018-03-02 15:22:00 +00:00
|
|
|
|
2018-02-13 03:45:59 +00:00
|
|
|
stats = [
|
|
|
|
[
|
|
|
|
key,
|
|
|
|
'{value:.8f} {symbol}'.format(
|
|
|
|
value=float(value['amount']),
|
|
|
|
symbol=stake_currency
|
|
|
|
),
|
|
|
|
'{value:.3f} {symbol}'.format(
|
|
|
|
value=fiat.convert_amount(
|
|
|
|
value['amount'],
|
|
|
|
stake_currency,
|
|
|
|
fiat_display_currency
|
|
|
|
),
|
|
|
|
symbol=fiat_display_currency
|
|
|
|
),
|
2018-03-02 15:22:00 +00:00
|
|
|
'{value} trade{s}'.format(
|
|
|
|
value=value['trades'],
|
|
|
|
s='' if value['trades'] < 2 else 's'
|
|
|
|
),
|
2018-02-13 03:45:59 +00:00
|
|
|
]
|
|
|
|
for key, value in profit_days.items()
|
|
|
|
]
|
2018-03-17 22:30:31 +00:00
|
|
|
return False, stats
|
2018-02-13 03:45:59 +00:00
|
|
|
|
2018-03-17 22:30:31 +00:00
|
|
|
def rpc_trade_statistics(
|
|
|
|
self, stake_currency: str, fiat_display_currency: str) -> Tuple[bool, Any]:
|
2018-02-13 03:45:59 +00:00
|
|
|
"""
|
|
|
|
:return: cumulative profit statistics.
|
|
|
|
"""
|
|
|
|
trades = Trade.query.order_by(Trade.id).all()
|
2018-03-02 15:22:00 +00:00
|
|
|
|
2018-02-13 03:45:59 +00:00
|
|
|
profit_all_coin = []
|
|
|
|
profit_all_percent = []
|
|
|
|
profit_closed_coin = []
|
|
|
|
profit_closed_percent = []
|
|
|
|
durations = []
|
2018-03-02 15:22:00 +00:00
|
|
|
|
2018-02-13 03:45:59 +00:00
|
|
|
for trade in trades:
|
2018-06-02 11:43:51 +00:00
|
|
|
current_rate: float = 0.0
|
2018-03-02 15:22:00 +00:00
|
|
|
|
2018-02-13 03:45:59 +00:00
|
|
|
if not trade.open_rate:
|
|
|
|
continue
|
|
|
|
if trade.close_date:
|
|
|
|
durations.append((trade.close_date - trade.open_date).total_seconds())
|
2018-03-02 15:22:00 +00:00
|
|
|
|
2018-02-13 03:45:59 +00:00
|
|
|
if not trade.is_open:
|
|
|
|
profit_percent = trade.calc_profit_percent()
|
|
|
|
profit_closed_coin.append(trade.calc_profit())
|
|
|
|
profit_closed_percent.append(profit_percent)
|
|
|
|
else:
|
|
|
|
# Get current rate
|
|
|
|
current_rate = exchange.get_ticker(trade.pair, False)['bid']
|
|
|
|
profit_percent = trade.calc_profit_percent(rate=current_rate)
|
2018-03-02 15:22:00 +00:00
|
|
|
|
|
|
|
profit_all_coin.append(
|
|
|
|
trade.calc_profit(rate=Decimal(trade.close_rate or current_rate))
|
|
|
|
)
|
2018-02-13 03:45:59 +00:00
|
|
|
profit_all_percent.append(profit_percent)
|
2018-03-02 15:22:00 +00:00
|
|
|
|
|
|
|
best_pair = Trade.session.query(
|
2018-03-17 23:27:57 +00:00
|
|
|
Trade.pair, sql.func.sum(Trade.close_profit).label('profit_sum')
|
|
|
|
).filter(Trade.is_open.is_(False)) \
|
|
|
|
.group_by(Trade.pair) \
|
2018-03-02 15:22:00 +00:00
|
|
|
.order_by(sql.text('profit_sum DESC')).first()
|
|
|
|
|
2018-02-13 03:45:59 +00:00
|
|
|
if not best_pair:
|
2018-03-17 22:30:31 +00:00
|
|
|
return True, '*Status:* `no closed trade`'
|
2018-03-02 15:22:00 +00:00
|
|
|
|
2018-02-13 03:45:59 +00:00
|
|
|
bp_pair, bp_rate = best_pair
|
2018-03-02 15:22:00 +00:00
|
|
|
|
2018-02-13 03:45:59 +00:00
|
|
|
# FIX: we want to keep fiatconverter in a state/environment,
|
|
|
|
# doing this will utilize its caching functionallity, instead we reinitialize it here
|
|
|
|
fiat = self.freqtrade.fiat_converter
|
|
|
|
# Prepare data to display
|
|
|
|
profit_closed_coin = round(sum(profit_closed_coin), 8)
|
2018-06-07 18:08:46 +00:00
|
|
|
profit_closed_percent = round(nan_to_num(mean(profit_closed_percent)) * 100, 2)
|
2018-02-13 03:45:59 +00:00
|
|
|
profit_closed_fiat = fiat.convert_amount(
|
|
|
|
profit_closed_coin,
|
|
|
|
stake_currency,
|
|
|
|
fiat_display_currency
|
|
|
|
)
|
|
|
|
profit_all_coin = round(sum(profit_all_coin), 8)
|
2018-06-07 18:08:46 +00:00
|
|
|
profit_all_percent = round(nan_to_num(mean(profit_all_percent)) * 100, 2)
|
2018-02-13 03:45:59 +00:00
|
|
|
profit_all_fiat = fiat.convert_amount(
|
|
|
|
profit_all_coin,
|
|
|
|
stake_currency,
|
|
|
|
fiat_display_currency
|
|
|
|
)
|
|
|
|
num = float(len(durations) or 1)
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
{
|
|
|
|
'profit_closed_coin': profit_closed_coin,
|
|
|
|
'profit_closed_percent': profit_closed_percent,
|
|
|
|
'profit_closed_fiat': profit_closed_fiat,
|
|
|
|
'profit_all_coin': profit_all_coin,
|
|
|
|
'profit_all_percent': profit_all_percent,
|
|
|
|
'profit_all_fiat': profit_all_fiat,
|
|
|
|
'trade_count': len(trades),
|
|
|
|
'first_trade_date': arrow.get(trades[0].open_date).humanize(),
|
|
|
|
'latest_trade_date': arrow.get(trades[-1].open_date).humanize(),
|
|
|
|
'avg_duration': str(timedelta(seconds=sum(durations) / num)).split('.')[0],
|
|
|
|
'best_pair': bp_pair,
|
|
|
|
'best_rate': round(bp_rate * 100, 2)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2018-03-17 22:30:31 +00:00
|
|
|
def rpc_balance(self, fiat_display_currency: str) -> Tuple[bool, Any]:
|
2018-02-13 03:45:59 +00:00
|
|
|
"""
|
|
|
|
:return: current account balance per crypto
|
|
|
|
"""
|
|
|
|
output = []
|
|
|
|
total = 0.0
|
2018-05-14 21:31:56 +00:00
|
|
|
for coin, balance in exchange.get_balances().items():
|
|
|
|
if not balance['total']:
|
|
|
|
continue
|
|
|
|
|
|
|
|
rate = None
|
2018-02-13 03:45:59 +00:00
|
|
|
if coin == 'BTC':
|
2018-05-14 21:31:56 +00:00
|
|
|
rate = 1.0
|
2018-02-13 03:45:59 +00:00
|
|
|
else:
|
|
|
|
if coin == 'USDT':
|
2018-05-14 21:31:56 +00:00
|
|
|
rate = 1.0 / exchange.get_ticker('BTC/USDT', False)['bid']
|
2018-02-13 03:45:59 +00:00
|
|
|
else:
|
2018-05-14 21:31:56 +00:00
|
|
|
rate = exchange.get_ticker(coin + '/BTC', False)['bid']
|
|
|
|
est_btc: float = rate * balance['total']
|
|
|
|
total = total + est_btc
|
2018-03-02 15:22:00 +00:00
|
|
|
output.append(
|
|
|
|
{
|
2018-05-14 21:31:56 +00:00
|
|
|
'currency': coin,
|
|
|
|
'available': balance['free'],
|
|
|
|
'balance': balance['total'],
|
|
|
|
'pending': balance['used'],
|
|
|
|
'est_btc': est_btc
|
2018-03-02 15:22:00 +00:00
|
|
|
}
|
|
|
|
)
|
2018-05-14 21:31:56 +00:00
|
|
|
if total == 0.0:
|
|
|
|
return True, '`All balances are zero.`'
|
|
|
|
|
2018-02-13 03:45:59 +00:00
|
|
|
fiat = self.freqtrade.fiat_converter
|
|
|
|
symbol = fiat_display_currency
|
|
|
|
value = fiat.convert_amount(total, 'BTC', symbol)
|
2018-03-17 22:30:31 +00:00
|
|
|
return False, (output, total, symbol, value)
|
2018-02-13 03:45:59 +00:00
|
|
|
|
2018-05-31 18:54:37 +00:00
|
|
|
def rpc_start(self) -> Tuple[bool, str]:
|
2018-02-13 03:45:59 +00:00
|
|
|
"""
|
|
|
|
Handler for start.
|
|
|
|
"""
|
2018-04-06 07:57:08 +00:00
|
|
|
if self.freqtrade.state == State.RUNNING:
|
2018-03-17 22:30:31 +00:00
|
|
|
return True, '*Status:* `already running`'
|
2018-03-02 15:22:00 +00:00
|
|
|
|
2018-04-06 07:57:08 +00:00
|
|
|
self.freqtrade.state = State.RUNNING
|
2018-03-17 22:30:31 +00:00
|
|
|
return False, '`Starting trader ...`'
|
2018-02-13 03:45:59 +00:00
|
|
|
|
2018-05-31 18:54:37 +00:00
|
|
|
def rpc_stop(self) -> Tuple[bool, str]:
|
2018-02-13 03:45:59 +00:00
|
|
|
"""
|
|
|
|
Handler for stop.
|
|
|
|
"""
|
2018-04-06 07:57:08 +00:00
|
|
|
if self.freqtrade.state == State.RUNNING:
|
|
|
|
self.freqtrade.state = State.STOPPED
|
2018-03-17 22:30:31 +00:00
|
|
|
return False, '`Stopping trader ...`'
|
2018-03-02 15:22:00 +00:00
|
|
|
|
2018-03-17 22:30:31 +00:00
|
|
|
return True, '*Status:* `already stopped`'
|
2018-02-13 03:45:59 +00:00
|
|
|
|
2018-06-09 02:29:48 +00:00
|
|
|
def rpc_reload_conf(self) -> str:
|
|
|
|
""" Handler for reload_conf. """
|
|
|
|
self.freqtrade.state = State.RELOAD_CONF
|
|
|
|
return '*Status:* `Reloading config ...`'
|
|
|
|
|
2018-02-13 03:45:59 +00:00
|
|
|
# FIX: no test for this!!!!
|
2018-03-17 22:30:31 +00:00
|
|
|
def rpc_forcesell(self, trade_id) -> Tuple[bool, Any]:
|
2018-02-13 03:45:59 +00:00
|
|
|
"""
|
|
|
|
Handler for forcesell <id>.
|
|
|
|
Sells the given trade at current price
|
|
|
|
:return: error or None
|
|
|
|
"""
|
2018-03-17 22:30:31 +00:00
|
|
|
def _exec_forcesell(trade: Trade) -> None:
|
2018-02-13 03:45:59 +00:00
|
|
|
# Check if there is there is an open order
|
|
|
|
if trade.open_order_id:
|
2018-03-25 20:25:26 +00:00
|
|
|
order = exchange.get_order(trade.open_order_id, trade.pair)
|
2018-03-02 15:22:00 +00:00
|
|
|
|
2018-02-13 03:45:59 +00:00
|
|
|
# Cancel open LIMIT_BUY orders and close trade
|
2018-03-25 20:25:26 +00:00
|
|
|
if order and order['status'] == 'open' \
|
|
|
|
and order['type'] == 'limit' \
|
|
|
|
and order['side'] == 'buy':
|
|
|
|
exchange.cancel_order(trade.open_order_id, trade.pair)
|
|
|
|
trade.close(order.get('price') or trade.open_rate)
|
2018-05-25 14:29:06 +00:00
|
|
|
# Do the best effort, if we don't know 'filled' amount, don't try selling
|
|
|
|
if order['filled'] is None:
|
|
|
|
return
|
|
|
|
trade.amount = order['filled']
|
2018-03-02 15:22:00 +00:00
|
|
|
|
2018-02-13 03:45:59 +00:00
|
|
|
# Ignore trades with an attached LIMIT_SELL order
|
2018-03-25 20:25:26 +00:00
|
|
|
if order and order['status'] == 'open' \
|
|
|
|
and order['type'] == 'limit' \
|
|
|
|
and order['side'] == 'sell':
|
2018-02-13 03:45:59 +00:00
|
|
|
return
|
2018-03-02 15:22:00 +00:00
|
|
|
|
2018-02-13 03:45:59 +00:00
|
|
|
# Get current rate and execute sell
|
|
|
|
current_rate = exchange.get_ticker(trade.pair, False)['bid']
|
|
|
|
self.freqtrade.execute_sell(trade, current_rate)
|
|
|
|
# ---- EOF def _exec_forcesell ----
|
|
|
|
|
2018-04-06 07:57:08 +00:00
|
|
|
if self.freqtrade.state != State.RUNNING:
|
2018-03-17 22:30:31 +00:00
|
|
|
return True, '`trader is not running`'
|
2018-03-02 15:22:00 +00:00
|
|
|
|
2018-02-13 03:45:59 +00:00
|
|
|
if trade_id == 'all':
|
|
|
|
# Execute sell for all open orders
|
|
|
|
for trade in Trade.query.filter(Trade.is_open.is_(True)).all():
|
|
|
|
_exec_forcesell(trade)
|
2018-03-17 22:30:31 +00:00
|
|
|
return False, ''
|
2018-03-02 15:22:00 +00:00
|
|
|
|
2018-02-13 03:45:59 +00:00
|
|
|
# Query for trade
|
|
|
|
trade = Trade.query.filter(
|
|
|
|
sql.and_(
|
|
|
|
Trade.id == trade_id,
|
|
|
|
Trade.is_open.is_(True)
|
|
|
|
)
|
|
|
|
).first()
|
|
|
|
if not trade:
|
2018-03-25 19:37:14 +00:00
|
|
|
logger.warning('forcesell: Invalid argument received')
|
2018-03-17 22:30:31 +00:00
|
|
|
return True, 'Invalid argument.'
|
2018-03-02 15:22:00 +00:00
|
|
|
|
2018-02-13 03:45:59 +00:00
|
|
|
_exec_forcesell(trade)
|
2018-06-08 00:35:10 +00:00
|
|
|
Trade.session.flush()
|
2018-03-17 22:30:31 +00:00
|
|
|
return False, ''
|
2018-02-13 03:45:59 +00:00
|
|
|
|
2018-03-17 22:30:31 +00:00
|
|
|
def rpc_performance(self) -> Tuple[bool, Any]:
|
2018-02-13 03:45:59 +00:00
|
|
|
"""
|
|
|
|
Handler for performance.
|
|
|
|
Shows a performance statistic from finished trades
|
|
|
|
"""
|
2018-04-06 07:57:08 +00:00
|
|
|
if self.freqtrade.state != State.RUNNING:
|
2018-03-17 22:30:31 +00:00
|
|
|
return True, '`trader is not running`'
|
2018-03-02 15:22:00 +00:00
|
|
|
|
2018-02-13 03:45:59 +00:00
|
|
|
pair_rates = Trade.session.query(Trade.pair,
|
|
|
|
sql.func.sum(Trade.close_profit).label('profit_sum'),
|
|
|
|
sql.func.count(Trade.pair).label('count')) \
|
|
|
|
.filter(Trade.is_open.is_(False)) \
|
|
|
|
.group_by(Trade.pair) \
|
|
|
|
.order_by(sql.text('profit_sum DESC')) \
|
|
|
|
.all()
|
|
|
|
trades = []
|
|
|
|
for (pair, rate, count) in pair_rates:
|
|
|
|
trades.append({'pair': pair, 'profit': round(rate * 100, 2), 'count': count})
|
2018-03-02 15:22:00 +00:00
|
|
|
|
2018-03-17 22:30:31 +00:00
|
|
|
return False, trades
|
2018-03-02 15:22:00 +00:00
|
|
|
|
2018-03-17 22:30:31 +00:00
|
|
|
def rpc_count(self) -> Tuple[bool, Any]:
|
2018-02-13 03:45:59 +00:00
|
|
|
"""
|
|
|
|
Returns the number of trades running
|
|
|
|
:return: None
|
|
|
|
"""
|
2018-04-06 07:57:08 +00:00
|
|
|
if self.freqtrade.state != State.RUNNING:
|
2018-03-17 22:30:31 +00:00
|
|
|
return True, '`trader is not running`'
|
2018-03-02 15:22:00 +00:00
|
|
|
|
2018-02-13 03:45:59 +00:00
|
|
|
trades = Trade.query.filter(Trade.is_open.is_(True)).all()
|
2018-03-17 22:30:31 +00:00
|
|
|
return False, trades
|