Page 1 of 1

Incorrect Non 3b Check raise stats

PostPosted: Sun Aug 12, 2018 1:30 pm
by acesjohn
Ok so assuming the codes used are as followed:

Default Collective: (cnt_f_check_raise / cnt_f_check_raise_opp) * 100
cnt_f_check_raise
sum(if[cash_hand_player_statistics.flg_f_check_raise, 1, 0])
cnt_f_check_raise_opp
sum(if[cash_hand_player_statistics.flg_f_check AND (cash_hand_player_statistics.cnt_f_raise > 0 OR cash_hand_player_statistics.cnt_f_call > 0 OR cash_hand_player_statistics.flg_f_fold), 1, 0])

&

3bet Pot: (cnt_f_check_raise_3bet_pot / cnt_f_check_raise_opp_3bet_pot) * 100
cnt_f_check_raise_3bet_pot
sum(if[cash_hand_player_statistics.flg_f_check_raise AND (cash_hand_player_statistics.flg_p_3bet_opp OR cash_hand_player_statistics.flg_p_3bet), 1, 0])
cnt_f_check_raise_opp_3bet_pot
sum(if[cash_hand_player_statistics.flg_f_check AND (cash_hand_player_statistics.cnt_f_raise > 0 OR cash_hand_player_statistics.cnt_f_call > 0 OR cash_hand_player_statistics.flg_f_fold) AND (cash_hand_player_statistics.flg_p_3bet_opp OR cash_hand_player_statistics.flg_p_3bet), 1, 0])


What is wrong with this for calculating a NON 3BET POT?
(cnt_f_check_raise-cnt_f_check_raise_3bet_pot / cnt_f_check_raise_opp-cnt_f_check_raise_opp_3bet_pot) * 100

On my pop up i get:

N3B = -10402 (6/221)
3BP = 7 (8/118)
Total = 4 (14/339)

Both the totals and opportunities seem to add up perfectly, however the value for N3B is horribly wrong, why is this???

Re: Incorrect Non 3b Check raise stats

PostPosted: Sun Aug 12, 2018 1:50 pm
by BillGatesIII
    Try this.

    Code: Select all
    ((cnt_f_check_raise-cnt_f_check_raise_3bet_pot) / (cnt_f_check_raise_opp-cnt_f_check_raise_opp_3bet_pot)) * 100

    Re: Incorrect Non 3b Check raise stats

    PostPosted: Sun Aug 12, 2018 2:19 pm
    by acesjohn
    BillGatesIII wrote:
      Try this.

      Code: Select all
      ((cnt_f_check_raise-cnt_f_check_raise_3bet_pot) / (cnt_f_check_raise_opp-cnt_f_check_raise_opp_3bet_pot)) * 100


      Perfect! Makes complete sense. Thank you :)