{% extends "global/Page.html" %} {% load otree static %} {% block title %} Asset Market {% endblock %} {% block styles %} {% endblock %} {% block content %}

The total amount of cash bid for all assets was {{ total_bid }}.

The total amount of assets offered for sale was {{ total_offer }}.

{% if trade_happens %}

Thus, the market price was {{ price }} per asset.

{% if your_bid > 0 %}

You bid {{ your_bid }} in cash, which means you have purchased {{ your_new_assets }} in assets.

{% elif your_offer > 0 %}

You offered {{ your_offer }} assets for sale, which means you have received {{ your_new_cash }} in cash.

{% else %}

You did not place any offers to buy or sell assets.

{% endif %} {% else %}

No trade has occurred. You keep all the cash and assets you had previously.

{% endif %}

You previously had {{ your_old_assets }} in assets and {{ your_old_cash }} in cash.

You now have {{ your_assets }} in assets and {{ your_cash }} in cash.

Recall that you have {{ player.impatient }} impatient customers.

{#

Based on this information, your bank is:

#} {#

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

#} {#

Your payoff for asset allocation this round is {{ round_payoff }}.

#} {% if trade_happens %}

You predicted that the asset price would be {{ player.price_guess }}. The actual price was {{ price }}. This means that your prediction error was {{ prediction_error }}, and your payoff for your prediction is {{ prediction_prize }}.

{% else %}

Since no trade occurred, the asset did not have a price. Your payoff for your prediction is {{ prediction_prize }}.

{% endif %} {% next_button %} {% endblock %}