I would like to create a ChipEV/tournament statistic for each 3handed position, that is:
BTN vs 2opp
BTN vs BB
BTN vs SB
SB vs BB
SB vs BTN
BB vs BTN
BB vs SB
I managed to do HU SBvsBB and BBvsSB, they were simpler:
example:
BBvSB hipEV/game (HUBB) = (amt_expected_won_hubb / cnt_tourneys)
amt_expected_won_hubb
sum(if[tourney_hand_summary.cnt_players = 2 and tourney_hand_player_statistics.position = 8, tourney_hand_player_statistics.amt_expected_won, 0])
for the case of 3handed I know I should put:
tourney_hand_summary.cnt_players = 3
tourney_hand_player_statistics.position = (player position)
but I don't know how to put the opponent's position.
How do I do this?
someone help me please!