Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,11 @@ func (k *kalshiTracker) pollClosed() {
k.mu.Lock()
defer k.mu.Unlock()
for _, m := range markets {
// KXMV* = auto-generated multivariate parlays. They can briefly pass
// through status=closed (6-10s window) before auto-settling. Exclude.
if strings.HasPrefix(m.Ticker, "KXMV") {
continue
}
ct, err := time.Parse(time.RFC3339, m.CloseTime)
if err != nil {
continue
Expand Down
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ const ORG_JSONLD = {
// Wikidata entity: anchors the OpenChainBench brand in the
// Knowledge Graph so the brand query resolves to this domain
// instead of the unrelated "OpenBench" homonyms.
"https://www.wikidata.org/wiki/Q140172649",
"https://www.wikidata.org/wiki/Q140756438",
],
},
{
Expand Down
Loading