from otree.api import ( models, widgets, BaseConstants, BaseSubsession, BaseGroup, BasePlayer, Currency as c, currency_range, ) author = 'Your name here' doc = """ Your app description """ class Constants(BaseConstants): name_in_url = 'mpl' players_per_group = None num_rounds = 1 optionA1=2 optionA2=1.6 optionB1=3.85 optionB2=0.1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): choice1B=models.IntegerField(doc="1st choice, 0=A,1=B", widget=widgets.RadioSelectHorizontal, choices=[[0,"Option A"],[1, "Option B"]], label="") choice2B=models.IntegerField() choice3B=models.IntegerField(doc="1st choice, 0=A,1=B") choice4B=models.IntegerField() choice5B= choice1B = models.IntegerField(doc="1st choice, 0=A,1=B") choice2B = models.IntegerField() choice3B =