From 7e99b137427e74ffe5315070f27bbe000ce4ca6a Mon Sep 17 00:00:00 2001 From: gcarq Date: Fri, 10 Nov 2017 17:26:52 +0100 Subject: [PATCH 1/2] add missing commands to README --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 99546632f..0eea256ae 100644 --- a/README.md +++ b/README.md @@ -22,8 +22,11 @@ Persistence is achieved through sqlite. * /status [table]: Lists all open trades * /count: Displays number of open trades * /profit: Lists cumulative profit from all finished trades -* /forcesell : Instantly sells the given trade (Ignoring `minimum_roi`). +* /forcesell |all: Instantly sells the given trade (Ignoring `minimum_roi`). * /performance: Show performance of each finished trade grouped by pair +* /balance: Show account balance per currency +* /help: Show help message +* /version: Show version ### Config `minimal_roi` is a JSON object where the key is a duration From 2e953a937df3b492335710d9c961f011c57c2c70 Mon Sep 17 00:00:00 2001 From: gcarq Date: Thu, 16 Nov 2017 00:40:36 +0100 Subject: [PATCH 2/2] version bump --- freqtrade/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/__init__.py b/freqtrade/__init__.py index b3d4bd950..75254ebcc 100644 --- a/freqtrade/__init__.py +++ b/freqtrade/__init__.py @@ -1,3 +1,3 @@ -__version__ = '0.14.1' +__version__ = '0.14.2' from . import main