Added klines, liquidations, tickers and trades to be recorded. Bundled the stats as cli argument.

This commit is contained in:
Kalzu Rekku
2026-07-22 15:35:33 +03:00
parent 270922fb78
commit f6765fdf07
15 changed files with 2719 additions and 495 deletions
+15
View File
@@ -0,0 +1,15 @@
package main
import (
"flag"
"bybit_btcusdt_ingest/utils/stats"
)
func main() {
dataDir := flag.String("data", "./data", "Path to the data directory")
noColor := flag.Bool("no-color", false, "Disable colored output")
flag.Parse()
stats.PrintDashboard(*dataDir, *noColor)
}