← back to Ken
Ken: carry close_time into allMarkets — the near-term filter nuked the pool to 0 active because the market mapping dropped close_time. Now mapped so the 120-day filter works.
afc629cb1c7df94cdf770866c8b37c01d6f2a2fa · 2026-08-03 10:59:39 -0700 · steve@designerwallcoverings.com
Files touched
Diff
commit afc629cb1c7df94cdf770866c8b37c01d6f2a2fa
Author: steve@designerwallcoverings.com <steve@designerwallcoverings.com>
Date: Mon Aug 3 10:59:39 2026 -0700
Ken: carry close_time into allMarkets — the near-term filter nuked the pool to 0 active because the market mapping dropped close_time. Now mapped so the 120-day filter works.
---
kalshi-dash/server.js | 1 +
1 file changed, 1 insertion(+)
diff --git a/kalshi-dash/server.js b/kalshi-dash/server.js
index 48fbe4a..7d51558 100644
--- a/kalshi-dash/server.js
+++ b/kalshi-dash/server.js
@@ -7854,6 +7854,7 @@ async function autonomousScan() {
last_price: cents('last_price', 'last_price_dollars'),
prev_price: cents('previous_price', 'previous_price_dollars') || cents('last_price', 'last_price_dollars'),
status: m.status,
+ close_time: m.close_time || m.expiration_time || null, // for the near-term trade filter
category: evt.category || '',
});
}
← b2c914b Ken: near-term + real-book filter (Steve) — scan now only tr
·
back to Ken
·
Ken: widen near-term window 120->365 days — 120d left only ~ b49c172 →