diff --git a/README.md b/README.md index 6ba5c4bbd..c8b2ce3dc 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,7 @@ Persistence is achieved through sqlite. * /stop: Stops the trader * /status: Lists all open trades * /profit: Lists cumulative profit from all finished trades +* /cancel: cancels open order for given trade (currently disabled) ##### Config `trade_thresholds` is a JSON object where the key is a duration diff --git a/main.py b/main.py index b44371e61..165ca7467 100755 --- a/main.py +++ b/main.py @@ -22,7 +22,7 @@ from utils import get_conf __author__ = "gcarq" __copyright__ = "gcarq 2017" __license__ = "GPLv3" -__version__ = "0.5.1" +__version__ = "0.6.0" conf = get_conf()