From 34c32b53ce60bc056d9bec8f91e09e33b09489b3 Mon Sep 17 00:00:00 2001 From: Tako Date: Mon, 4 Dec 2023 21:56:25 +0000 Subject: [PATCH] rename candles to bars --- src/composables/percentageTool.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/composables/percentageTool.ts b/src/composables/percentageTool.ts index e7df7e15..5e0eda75 100644 --- a/src/composables/percentageTool.ts +++ b/src/composables/percentageTool.ts @@ -77,7 +77,7 @@ export function usePercentageTool(chartRef, theme: string, timeframe_ms: number) style: { x: x, y: y - 20, - text: `${timeDiff} Candles - ${startPrice < endPrice ? pct : '-' + pct}%`, + text: `${timeDiff} bars - ${startPrice < endPrice ? pct : '-' + pct}%`, font: '14px sans-serif', fill: color, },