Incorrect Non 3b Check raise stats

Discuss how to create custom stats, reports and HUD profiles and share your creations.

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

Incorrect Non 3b Check raise stats

Postby acesjohn » Sun Aug 12, 2018 1:30 pm

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???
acesjohn
 
Posts: 134
Joined: Mon Sep 08, 2008 6:21 pm

Re: Incorrect Non 3b Check raise stats

Postby BillGatesIII » Sun Aug 12, 2018 1:50 pm

    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
    BillGatesIII
     
    Posts: 740
    Joined: Fri Dec 16, 2011 6:50 pm

    Re: Incorrect Non 3b Check raise stats

    Postby acesjohn » Sun Aug 12, 2018 2:19 pm

    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 :)
      acesjohn
       
      Posts: 134
      Joined: Mon Sep 08, 2008 6:21 pm


      Return to Custom Stats, Reports and HUD Profiles

      Who is online

      Users browsing this forum: No registered users and 26 guests

      cron