class Lexicon: # InvestmentDecisionPage.html investment_title = "Investment Decision" advisor_info = "Advisor Allocation: " advisor_advice = "Advisor Advice: " treatment_allocation = "The recommended allocation is {allocation}%." treatment_forecast = "The best forecast for next period's return is {best_forecast}%." treatment_allocation_forecast = """ The best forecast for next period's return is {best_forecast}%, and the recommended allocation is {allocation}%. """ treatment_autonomous = "Your advisor has invested {allocation} of your tokens in the risky asset." # Form field labels return_expectation_label = "What is your expected return for this investment?" portfolio_allocation_label = "How much do you allocate to this investment?" confidence_label = "How certain are you that this decision was the right one?" # InvestmentResultsPage.html feedback_template = """
The realized return on the investment is {realized_return}%, and {allocation} of your tokens were invested in the risky asset.
Your forecast was {forecasted_return}%, and therefore {forecast_correct} 1 percentage point of the realized return.
Your total payoff in this round is therefore {payoff_total} tokens ({payoff_investment} tokens from the investment and {payoff_forecast} tokens for the forecast).
""" feedback_template_manual = feedback_template feedback_template_auto = feedback_template confidence_min_label = "Very Uncertain" confidence_max_label = "Very Certain" # Block transition page transition_title = "Important Notice" transition_final_title = "Investment Task Completed" transition_block1_to_block2 = """

In the next few rounds, an automated investment tool will make the investment allocation decision for you. The tool automatically chooses how much to invest based on its forecast of future returns (using the Predictive Signal) and on your risk preference from the lottery question.

You will still provide your own return forecast in each round, but the allocation decision will be made by the robot.

Please continue to the next round.

""" transition_block2_to_block3_allocation = """

In the next few rounds, you will receive automated advice about recommended allocation in each round.

You will still enter your own forecast and your own allocation decision. You may follow or ignore the recommendation.

Please continue to the next round.

""" transition_block2_to_block3_allocation_forecast = """

In the next few rounds, you will receive automated advice including both a forecast and a recommended allocation in each round.

You will still enter your own forecast and your own allocation decision. You may follow or ignore the recommendation.

Please continue to the next round.

""" transition_block3_to_block4 = """

From this point onward, there will be no robo-advisor.

You will make the investment decisions on your own: provide your forecast and choose your allocation yourself.

Please continue to the next round.

""" transition_block4_to_questionnaire = """

The investment game is now finished.

Next, you will proceed to the final questionnaire.

Please click Next to continue.

"""