Align jq microcap execution with intraday snapshots

This commit is contained in:
boris
2026-04-20 12:13:59 +08:00
parent 0e2c25e4c4
commit 0fe681ff5f
10 changed files with 761 additions and 94 deletions

View File

@@ -21,7 +21,8 @@ impl Instrument {
}
pub fn is_delisted_before(&self, date: NaiveDate) -> bool {
self.delisted_at.is_some_and(|delisted_at| delisted_at < date)
self.delisted_at
.is_some_and(|delisted_at| delisted_at < date)
}
}