I need to create a stat that will show "how often the player bets the flop when is HU in limped pot"
I suppose it should be like this:
- Code: Select all
(cnt_f_bet_limp_pot_hu / cnt_f_open_opp_limp_pot_hu) * 100
where:
cnt_f_bet_limp_pot_hu =
- Code: Select all
sum(if[cash_hand_player_statistics.flg_f_bet and cash_hand_summary.cnt_players_f = 2 and NOT(cash_hand_player_statistics.flg_p_face_raise) and cash_hand_player_statistics.cnt_p_raise = 0, 1, 0])
and
cnt_f_open_opp_limp_pot_hu =
- Code: Select all
sum(if[cash_hand_player_statistics.flg_f_open_opp and cash_hand_summary.cnt_players_f = 2 and not(cash_hand_player_statistics.flg_p_face_raise) and cash_hand_player_statistics.cnt_p_raise = 0, 1, 0])
Could you kindly check whether everything is right?