{% extends "global/Page.html" %} {% load otree %} {% load utils %} {% block title %} Round {{player.round_number}} {% endblock %} {% block content %} {% if game_name == "gas_station" %}

Instructions

You have been randomly and anonymously grouped another player. All players see these same instructions.

Suppose you are the owner of one of the two gas stations in a small rural town. There are 1000 cars that will need to fill their tanks, say 10 gallons worth each, every month.

If the price is no more than ${{player.session.config.gas_station_max_price}} they fill their tanks in town. For any price above ${{player.session.config.gas_station_max_price}} they would go over to the next town. When filling their gas in town they would go to the cheapest station. If both stations charge the same then they would just split the market.

Assume the wholesale price of gas is ${{player.session.config.gas_station_wholesale_price}}. Also assume that you discount future cash-flows such that $1 next month is equal to $0.95 for you today.

Previous Decisions

{% if should_display_opponent_bids %} {% endif %} {% for _ in payoffs %} {% if should_display_opponent_bids %} {% endif %} {% endfor %}
Round Bid PayoffOpponent Bid
{{ forloop.counter }} {{ bids|get_by_index:forloop.counter0 }} {{ payoffs|get_by_index:forloop.counter0 }}{{ opponent_bids|get_by_index:forloop.counter0 }}

Current Decision

Please set your price for the next round. The amount must be a positive dollar amount.

{% formfield player.bid_amount label="Price (1 gallon):" %} {% next_button %}
{% elif game_name == "dealership" %}

Instructions

You have been randomly and anonymously grouped another player. All players see these same instructions.

Suppose you are the owner of one of the two ford car dealerships in Austin. Weekly demand for the new Ford Focus is as follows.

With probability 50% there is no one interested in buying a car in any given week. If there is an interested party they will buy from the cheapest dealer as long as the price is no more than $20,000 otherwise they will pick some VW car. If prices are the same they would randomize among dealers.

The invoice price (i.e how much the dealer must pay Ford ) is $15,000. Assume that a $1 next week is worth $0.99 today for the dealer. Assume that you don’t get to observe the prices offered by the other dealership.

Previous Decisions

{% if should_display_opponent_bids %} {% endif %} {% for _ in payoffs %} {% if should_display_opponent_bids %} {% endif %} {% endfor %}
Round Bid PayoffOpponent Bid
{{ forloop.counter }} {{ bids|get_by_index:forloop.counter0 }} {{ payoffs|get_by_index:forloop.counter0 }}{{ opponent_bids|get_by_index:forloop.counter0 }}

Current Decision

Please set your price for the next round. The amount must be a positive dollar amount.

{% formfield player.bid_amount label="Price (1 car):" %} {% next_button %}
{% endif %} {% endblock %}