From cea251c83c771ae2d3a220d4103569bb46cd6040 Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 25 Oct 2021 06:46:02 +0200 Subject: [PATCH] Clarify documentation for /forcebuy closes #5783 --- docs/telegram-usage.md | 2 +- freqtrade/rpc/telegram.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/telegram-usage.md b/docs/telegram-usage.md index b9d01a236..0c45fbbf1 100644 --- a/docs/telegram-usage.md +++ b/docs/telegram-usage.md @@ -171,7 +171,7 @@ official commands. You can ask at any moment for help with `/help`. | `/profit []` | Display a summary of your profit/loss from close trades and some stats about your performance, over the last n days (all trades by default) | `/forcesell ` | Instantly sells the given trade (Ignoring `minimum_roi`). | `/forcesell all` | Instantly sells all open trades (Ignoring `minimum_roi`). -| `/forcebuy [rate]` | Instantly buys the given pair. Rate is optional. (`forcebuy_enable` must be set to True) +| `/forcebuy [rate]` | Instantly buys the given pair. Rate is optional and only applies to limit orders. (`forcebuy_enable` must be set to True) | `/performance` | Show performance of each finished trade grouped by pair | `/balance` | Show account balance per currency | `/daily ` | Shows profit or loss per day, over the last n days (n defaults to 7) diff --git a/freqtrade/rpc/telegram.py b/freqtrade/rpc/telegram.py index 846747f40..771d8bfa4 100644 --- a/freqtrade/rpc/telegram.py +++ b/freqtrade/rpc/telegram.py @@ -1033,7 +1033,7 @@ class Telegram(RPCHandler): :return: None """ forcebuy_text = ("*/forcebuy []:* `Instantly buys the given pair. " - "Optionally takes a rate at which to buy.` \n") + "Optionally takes a rate at which to buy (only applies to limit orders).` \n") message = ("*/start:* `Starts the trader`\n" "*/stop:* `Stops the trader`\n" "*/status |[table]:* `Lists all open trades`\n"