alt/services/worker/cmd/alt-worker-data-check/main.go
toki 8c3c4ba5a2 feat: operator surface phase updates, worker backtest/kis live client, binary utilities
- Add bin/kis-paper-daily-smoke and bin/kis-sops-env utilities
- Update agent-roadmap for operator surface phase
- Add worker backtest bar source and Kis live client
- Update KIS live secret configuration and documentation
- Refine worker datacheck and daily chart price providers
2026-06-03 12:10:48 +09:00

21 lines
656 B
Go

// Command alt-worker-data-check runs the Korea daily data foundation smoke: it
// imports an embedded KIS daily-chart fixture through the normalize/import
// pipeline into an in-memory store and prints a stable summary of the bars
// queried back. It needs no KIS credential, secret store, or PostgreSQL, so an
// operator can re-run it locally to confirm normalized daily bars are queryable.
package main
import (
"context"
"fmt"
"os"
"git.toki-labs.com/toki/alt/services/worker/internal/marketdata/datacheck"
)
func main() {
if err := datacheck.Run(context.Background(), os.Stdout); err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}