{{ extends 'global/Page.html' }}
{{ block title }}Checking{{ endblock }}
{{ block content }}
PREDICTION SCORING DEBUG — REMOVE BEFORE LAUNCH
This page displays hidden realized outcomes and prediction-scoring information.
Prediction Scoring Check
Market {{ market_number }}
Predictions made in Period {{ prediction_round }} were about
Period {{ target_round }}.
Realized Market Outcomes
| Actual new investments in Period {{ target_round }} |
{{ actual_new_investments }} |
| Actual redemption requests in Period {{ target_round }} |
{{ actual_redemption_requests }} |
| Fund closed for insufficient cash |
{{ actual_fund_closes }} |
Scoring Integrity Checks
| Target period marked as occurring for all participants |
{{ if all_target_flags_ok }}
PASS
{{ else }}
FAIL
{{ endif }}
|
| Q1 realized outcomes stored correctly |
{{ if q1_actuals_ok }}
PASS
{{ else }}
FAIL
{{ endif }}
|
| Q2 realized outcomes stored correctly |
{{ if q2_actuals_ok }}
PASS
{{ else }}
FAIL
{{ endif }}
|
| Q3 realized outcomes stored correctly |
{{ if q3_actuals_ok }}
PASS
{{ else }}
FAIL
{{ endif }}
|
| Overall scoring integrity check |
{{ if overall_scoring_ok }}
PASS
{{ else }}
FAIL
{{ endif }}
|
Question 1 — New Investments
| Link |
Prediction |
Actual |
Answered |
Bonus Eligible |
Correct |
{{ for row in rows }}
| P{{ row.link_number }} |
{{ if row.q1_answered }}
{{ row.q1_prediction }}
{{ else }}
—
{{ endif }}
|
{{ row.q1_actual }} |
{{ if row.q1_answered }}
Yes
{{ else }}
No
{{ endif }}
|
{{ if row.q1_eligible }}
Yes
{{ else }}
No
{{ endif }}
|
{{ if row.q1_eligible }}
{{ if row.q1_correct }}
PASS
{{ else }}
FAIL
{{ endif }}
{{ else }}
N/A
{{ endif }}
|
{{ endfor }}
Question 2 — Redemption Requests
| Link |
Prediction |
Actual |
Answered |
Bonus Eligible |
Correct |
{{ for row in rows }}
| P{{ row.link_number }} |
{{ if row.q2_answered }}
{{ row.q2_prediction }}
{{ else }}
—
{{ endif }}
|
{{ row.q2_actual }} |
{{ if row.q2_answered }}
Yes
{{ else }}
No
{{ endif }}
|
{{ if row.q2_eligible }}
Yes
{{ else }}
No
{{ endif }}
|
{{ if row.q2_eligible }}
{{ if row.q2_correct }}
PASS
{{ else }}
FAIL
{{ endif }}
{{ else }}
N/A
{{ endif }}
|
{{ endfor }}
Question 3 — Fund Closure
| Link |
Prediction |
Actual |
Answered |
Bonus Eligible |
Correct |
{{ for row in rows }}
| P{{ row.link_number }} |
{{ if row.q3_answered }}
{{ row.q3_prediction }}
{{ else }}
—
{{ endif }}
|
{{ row.q3_actual }} |
{{ if row.q3_answered }}
Yes
{{ else }}
No
{{ endif }}
|
{{ if row.q3_eligible }}
Yes
{{ else }}
No
{{ endif }}
|
{{ if row.q3_eligible }}
{{ if row.q3_correct }}
PASS
{{ else }}
FAIL
{{ endif }}
{{ else }}
N/A
{{ endif }}
|
{{ endfor }}
Question 4 — Hypothetical Own Redemption
For participants who were shown Question 4, the realized outcome below
answers the following counterfactual:
Given the actual next-period investments and redemption requests,
if this participant also submitted a redemption request according
to their actual entry seniority and hidden tie priority, would that
request have been paid in full?
| Link |
Q4 Shown |
Prediction |
Counterfactual Actual |
Answered |
Bonus Eligible |
Correct |
{{ for row in rows }}
| P{{ row.link_number }} |
{{ if row.q4_shown }}
Yes
{{ else }}
No
{{ endif }}
|
{{ if row.q4_answered }}
{{ row.q4_prediction }}
{{ else }}
—
{{ endif }}
|
{{ if row.q4_shown }}
{{ row.q4_actual }}
{{ else }}
N/A
{{ endif }}
|
{{ if row.q4_shown }}
{{ if row.q4_answered }}
Yes
{{ else }}
No
{{ endif }}
{{ else }}
N/A
{{ endif }}
|
{{ if row.q4_eligible }}
Yes
{{ else }}
No
{{ endif }}
|
{{ if row.q4_eligible }}
{{ if row.q4_correct }}
PASS
{{ else }}
FAIL
{{ endif }}
{{ else }}
N/A
{{ endif }}
|
{{ endfor }}
Eligible Prediction Summary
| Link |
Timed Out on Prediction Page |
Eligible Responses |
Correct Eligible Responses |
{{ for row in rows }}
| P{{ row.link_number }} |
{{ if row.timed_out }}
Yes
{{ else }}
No
{{ endif }}
|
{{ row.eligible_response_count }}
|
{{ row.correct_response_count }}
|
{{ endfor }}
{{ next_button }}
{{ endblock }}