mart.inplay
Per-event, per-minute view that joins the in-play odds and score data with the derived score_winner.
Lineage
Section titled “Lineage”flowchart LR i1[/calculations.inplay_1_by_minute/] --> me[/mart.inplay/] i2[/calculations.inplay_2_score/] --> me me -.-> none((terminal — consumed by dashboards / backtests)) click i1 "/calculations/inplay_1_by_minute/" "Open" click i2 "/calculations/inplay_2_score/" "Open"
Columns
Section titled “Columns”| Column | Description | Formula |
|---|---|---|
event_id | Bet365 event identifier. | i1.event_id |
event_date | Event date. | i1.event_date |
event_partition_key | ClickHouse partition key. | i1.event_partition_key |
minute_id | Match minute. | i1.minute_id |
short_score | Score at this minute. | i1.short_score |
home_odd | In-play home odd at this minute. | i1.home_odd |
draw_odd | In-play draw odd at this minute. | i1.draw_odd |
away_odd | In-play away odd at this minute. | i1.away_odd |
score_winner | Side leading at this minute ('home' / 'draw' / 'away' / NULL). | i2.score_winner |