Added klines, liquidations, tickers and trades to be recorded. Bundled the stats as cli argument.
This commit is contained in:
@@ -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)
|
||||
}
|
||||
Reference in New Issue
Block a user