From a5450672b109ffe0e617f2ab6b83d6bd8babd558 Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 2 Oct 2025 20:21:40 +0200 Subject: [PATCH] feat: add line annotations --- freqtrade/ft_types/plot_annotation_type.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/ft_types/plot_annotation_type.py b/freqtrade/ft_types/plot_annotation_type.py index e95586a70..8bee4b1c2 100644 --- a/freqtrade/ft_types/plot_annotation_type.py +++ b/freqtrade/ft_types/plot_annotation_type.py @@ -6,7 +6,7 @@ from typing_extensions import TypedDict class AnnotationType(TypedDict, total=False): - type: Required[Literal["area"]] + type: Required[Literal["area", "line"]] start: str | datetime end: str | datetime y_start: float