Merge pull request #1758 from freqtrade/fix/rpcheader
Missing /daily header
This commit is contained in:
commit
c6d19a4afb
@ -269,7 +269,8 @@ class Telegram(RPC):
|
|||||||
headers=[
|
headers=[
|
||||||
'Day',
|
'Day',
|
||||||
f'Profit {stake_cur}',
|
f'Profit {stake_cur}',
|
||||||
f'Profit {fiat_disp_cur}'
|
f'Profit {fiat_disp_cur}',
|
||||||
|
f'Trades'
|
||||||
],
|
],
|
||||||
tablefmt='simple')
|
tablefmt='simple')
|
||||||
message = f'<b>Daily Profit over the last {timescale} days</b>:\n<pre>{stats_tab}</pre>'
|
message = f'<b>Daily Profit over the last {timescale} days</b>:\n<pre>{stats_tab}</pre>'
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
"""
|
||||||
|
This script was adapted from ccxt here:
|
||||||
|
https://github.com/ccxt/ccxt/blob/master/examples/py/arbitrage-pairs.py
|
||||||
|
"""
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user