- Code: Select all
(cnt_p_limp_h / cnt_p_limp_opp_h) * 100
Where cnt_p_limp_h is:
- Code: Select all
sum(if[tourney_hand_player_statistics.cnt_p_face_limpers > 0, 1, 0])
and cnt_p_limp_opp_h is:
- Code: Select all
sum(if[tourney_hand_player_statistics.position = 8, 1, 0])
Strangely, cnt_p_limp_opp_h is not incremented when I open fold in the SB. Is the value of tourney_hand_player_statistics.position not 8 for my opponent when I open fold?