From b6d4044ce0990b024a3966d81371fcbd7f8649dd Mon Sep 17 00:00:00 2001 From: aszerW Date: Sun, 19 Oct 2025 12:30:21 +0800 Subject: [PATCH] =?UTF-8?q?markers=E7=9A=84=E6=97=B6=E9=97=B4=E7=B2=92?= =?UTF-8?q?=E5=BA=A6=E7=B2=BE=E7=A1=AE=E5=88=B0=E7=A7=92=EF=BC=8C=E9=81=BF?= =?UTF-8?q?=E5=85=8D=E5=B0=8F=E6=97=B6=E7=BA=A7=E6=95=B0=E6=8D=AE=E5=87=BA?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- chart.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chart.py b/chart.py index 83888d3..70e4392 100644 --- a/chart.py +++ b/chart.py @@ -256,7 +256,7 @@ class QuantChart: if item["TD"] in [9, 13]: markers.append( { - "time": item["time"].strftime("%Y-%m-%d"), + "time": item["time"].strftime("%Y-%m-%d %H:%M:%S"), "position": "above", "shape": "arrow_down", "color": "#00FF00", @@ -266,7 +266,7 @@ class QuantChart: elif item["TD"] in [-9, -13]: markers.append( { - "time": item["time"].strftime("%Y-%m-%d"), + "time": item["time"].strftime("%Y-%m-%d %H:%M:%S"), "position": "below", "shape": "arrow_up", "color": "#FF0000",