From 6224aab1b2022ace11764b013ac5cb2a1e99e747 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Thu, 27 Feb 2025 12:13:47 +0100 Subject: Add btc tick viz --- btctick/index.html | 331 +++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 324 insertions(+), 7 deletions(-) (limited to 'btctick') diff --git a/btctick/index.html b/btctick/index.html index 91a10b2..c4e1cf4 100644 --- a/btctick/index.html +++ b/btctick/index.html @@ -6,10 +6,302 @@ BTC Ticker + + + +
+

BTC/USDT Live Ticker

+
Loading...
+
Waiting for data...
+
+ + +
+
Showing last 60 seconds of price data
+ +
+ - - -

+ // Throttled chart update for smoother performance + setInterval(() => { + if (priceHistory.length > 0) { + drawChart(); + } + }, 1000); // Update chart once per second + \ No newline at end of file -- cgit v1.3.1