From 170152d620caec1fab83181337ff9bb57d3780a7 Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 2 Feb 2022 06:50:54 +0100 Subject: [PATCH] Add note about plot-dataframe not supproting futures mode part of #6224 --- docs/plotting.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/plotting.md b/docs/plotting.md index a812f2429..e5091b9f9 100644 --- a/docs/plotting.md +++ b/docs/plotting.md @@ -14,7 +14,7 @@ pip install -U -r requirements-plot.txt The `freqtrade plot-dataframe` subcommand shows an interactive graph with three subplots: -* Main plot with candlestics and indicators following price (sma/ema) +* Main plot with candlesticks and indicators following price (sma/ema) * Volume bars * Additional indicators as specified by `--indicators2` @@ -276,6 +276,10 @@ def plot_config(self): !!! Note "Trade position adjustments" If `position_adjustment_enable` / `adjust_trade_position()` is used, the trade initial buy price is averaged over multiple orders and the trade start price will most likely appear outside the candle range. +!!! Note "Futures / Margin trading" + `plot-dataframe` does not support Futures / short trades, so these trades will simply be missing, and it's unlikely we'll be adding this functionality to this command. + Please use freqUI instead by starting freqtrade in [webserver mode](utils.md#webserver-mode) and use the Chart page to plot your dataframe. + ## Plot profit ![plot-profit](assets/plot-profit.png)