{% extends "global/Page.html" %} {% load otree static %} {% block title %} Results of round {{ round }} {% endblock %} {% block app_styles %} {% endblock %} {% block content %} {% if bid_guess == 0 %} {% if bid == 0 %} You predicted that the bank would neither bid nor offer any assets. The bank actually chose to neither bid nor offer assets.
{% else %} You predicted that the bank would neither bid nor offer any assets. The bank actually chose to {{ decision }} assets,{% if decision == 'buy' %} bidding {{ bid }} units of cash{% else %} offering {{ bid }} units of assets{% endif %}. {% endif %} {% else %} {% if bid == 0 %} You predicted that the bank would {{ decision_guess }} assets, {% if decision_guess == 'buy' %} bidding {{ bid_guess }} units of cash{% else %} offering {{ bid_guess }} units of assets{% endif %}. The bank actually chose to neither bid nor offer assets. {% else %} You predicted that the bank would {{ decision_guess }} assets, {% if decision_guess == 'buy' %} bidding {{ bid_guess }} units of cash{% else %} offering {{ bid_guess }} units of assets{% endif %}. The bank actually chose to {{ decision }} assets,{% if decision == 'buy' %} bidding {{ bid }} units of cash{% else %} offering {{ bid }} units of assets{% endif %}. {% endif %} {% endif %}{% if truly_solvent %} SOLVENT {% else %} NOT SOLVENT {% endif %} and {% if truly_liquid %} LIQUID {% else %} NOT LIQUID {% endif %}
{% if solvent %} SOLVENT {% else %} NOT SOLVENT {% endif %} and {% if liquid %} LIQUID {% else %} NOT LIQUID {% endif %}
Your declaration of liquidity was correct, thus your payoff is {{ accountant_prize }}.
{% else %}Your declaration of liquidity was incorrect, thus your payoff is $0.00.
{% endif %} {% if solvent_correct %}Your declaration of solvency was correct. thus your payoff is {{ accountant_prize }}.
{% else %}Your declaration of solvency was incorrect, thus your payoff is $0.00
{% endif %}Round | Declared Solvent? | Declared Liquid? | Solvent Correct? | Liquid Correct? | Cash (Begin 2nd period) | Predicted offer | Actual offer | Declaration payoff | Prediction payoff |
---|---|---|---|---|---|---|---|---|---|
{{ p.round_number }} | {{ p.solvent }} | {{ p.liquid }} | {{ p.solvent_correct }} | {{ p.liquid_correct }} | {{p.cash_aux|to1}} | {{ p.bid_guess }} | {{ p.bid }} | {{ p.allocation_payoff }} | {{ p.prediction_payoff }} |