{% extends "global/Page.html" %} {% load otree %} {% block title %} Overview of results in the last 5 rounds {% endblock %} {% block content %}
End of market simulation
This market simulation has now ended.
Below you can find the results for this simulation.
In this simulation, the stock was in a:
{% if state == 1%} Fundamentally Good State. {% else %} Fundamentally Bad State. {% endif %}
Your income in this market simulation
Your income in round 1:
{{ player.income_1 }} monetary units
Your income in round 2:
{{ player.income_2 }} monetary units
Your income in round 3:
{{ player.income_3 }} monetary units
Your income in round 4:
{{ player.income_4 }} monetary units
Your income in round 5:
{{ player.income_5 }} monetary units
Your overall income in this simulation:
{{ player.payoff }}
Overview of results in this market simulation
| Round | Expectation expert 1 | Expectation expert 2 | Expectation expert 3 | Expectation expert 4 | Machine Learning Prediction | Stock's actual payoff |
|---|---|---|---|---|---|---|
| 1 | {% if exp1_1 == 1%} High payoff {% else %} Low payoff {% endif %} | {% if exp2_1 == 1%} High payoff {% else %} Low payoff {% endif %} | {% if exp3_1 == 1%} High payoff {% else %} Low payoff {% endif %} | {% if exp4_1 == 1%} High payoff {% else %} Low payoff {% endif %} | {% if pred1 == 1%} High payoff {% else %} Low payoff {% endif %} | {% if payoff_1 == 1%} High payoff {% else %} Low payoff {% endif %} |
| 2 | {% if exp1_2 == 1%} High payoff {% else %} Low payoff {% endif %} | {% if exp2_2 == 1%} High payoff {% else %} Low payoff {% endif %} | {% if exp3_2 == 1%} High payoff {% else %} Low payoff {% endif %} | {% if exp4_2 == 1%} High payoff {% else %} Low payoff {% endif %} | {% if pred2 == 1%} High payoff {% else %} Low payoff {% endif %} | {% if payoff_2 == 1%} High payoff {% else %} Low payoff {% endif %} |
| 3 | {% if exp1_3 == 1%} High payoff {% else %} Low payoff {% endif %} | {% if exp2_3 == 1%} High payoff {% else %} Low payoff {% endif %} | {% if exp3_3 == 1%} High payoff {% else %} Low payoff {% endif %} | {% if exp4_3 == 1%} High payoff {% else %} Low payoff {% endif %} | {% if pred3 == 1%} High payoff {% else %} Low payoff {% endif %} | {% if payoff_3 == 1%} High payoff {% else %} Low payoff {% endif %} |
| 4 | {% if exp1_4 == 1%} High payoff {% else %} Low payoff {% endif %} | {% if exp2_4 == 1%} High payoff {% else %} Low payoff {% endif %} | {% if exp3_4 == 1%} High payoff {% else %} Low payoff {% endif %} | {% if exp4_4 == 1%} High payoff {% else %} Low payoff {% endif %} | {% if pred4 == 1%} High payoff {% else %} Low payoff {% endif %} | {% if payoff_4 == 1%} High payoff {% else %} Low payoff {% endif %} |
| 5 | {% if exp1_5 == 1%} High payoff {% else %} Low payoff {% endif %} | {% if exp2_5 == 1%} High payoff {% else %} Low payoff {% endif %} | {% if exp3_5 == 1%} High payoff {% else %} Low payoff {% endif %} | {% if exp4_5 == 1%} High payoff {% else %} Low payoff {% endif %} | {% if pred5 == 1%} High payoff {% else %} Low payoff {% endif %} | {% if payoff_5 == 1%} High payoff {% else %} Low payoff {% endif %} |
The next market simulation with a possibly new fundamental state of the stock will start soon.
{% next_button %} {% endblock %}