{% extends "global/Page.html" %} {% load otree static %} {% block title %} Results of round {{ round }} {% endblock %} {% block app_styles %} {% endblock %} {% block content %}

You predicted that the bank would {{ decision_guess }} assets, offering {{ bid_guess }}.

The bank actually chose to {{ decision }} assets, offering {{ bid }}.

This means your prediction error was {{ prediction_error }}, and your payoff for prediction was {{ prediction_payoff }}.

At the end of this round, the bank you are responsible for had {{ assets }} in assets and {{ cash }} in cash.

It had {{ impatient }} impatient customers.

This means that the bank was:

{% if truly_solvent %} SOLVENT {% else %} NOT SOLVENT {% endif %} and {% if truly_liquid %} LIQUID {% else %} NOT LIQUID {% endif %}

You declared that the bank was:

{% if solvent %} SOLVENT {% else %} NOT SOLVENT {% endif %} and {% if liquid %} LIQUID {% else %} NOT LIQUID {% endif %}

{% if liquid_correct %}

Your declaration of liquidity was correct. Your payoff for this correct declaration is {{ accountant_prize }}.

{% else %}

Your declaration of liquidity was incorrect. Your payoff for this incorrect declaration is $0.00.

{% endif %} {% if solvent_correct %}

Your declaration of solvency was correct. Your payoff for this correct declaration is {{ accountant_prize }}.

{% else %}

Your declaration of solvency was incorrect. Your payoff for this incorrect declaration is $0.00.

{% endif %}

This brings your payoff for declarations this round to {{ payoff }}.

{% next_button %} {% if round > 1 %}

History of previous rounds

{% for p in player_in_previous_rounds %} {% endfor %}
RoundDeclared Liquid?Declared Solvent?Liquid Correct?Solvent Correct?Predicted offerActual offerDeclaration payoffPrediction payoff
{{ p.round_number }} {{ p.solvent }} {{ p.liquid }} {{ p.solvent_correct }} {{ p.liquid_correct }} {{ p.bid_guess }} {{ p.bid }} {{ p.allocation_payoff }} {{ p.prediction_payoff }}
{% endif %} {% endblock %}