Page 1 of 1

Fold to cbet size

PostPosted: Wed Aug 24, 2016 10:12 am
by kingreigns
So i have made this but not sure how to make it be specifically for a cbet.

(cnt_f_halfpotbet_def_action_fold / cnt_f_halfpotbet_def_opp) * 100

sum(if[(cash_hand_player_statistics.val_f_bet_facing_pct BETWEEN 31 and 36) and cash_hand_player_statistics.cnt_f_call = 0 and cash_hand_player_statistics.cnt_f_raise = 0 and cash_hand_player_statistics.enum_folded = 'F', 1, 0])

sum(if[cash_hand_player_statistics.val_f_bet_facing_pct BETWEEN 31 and 36, 1, 0])

Re: Fold to cbet size

PostPosted: Wed Aug 24, 2016 10:29 am
by kraada
Add: cash_hand_player_statistics.flg_f_cbet_def_opp

Re: Fold to cbet size

PostPosted: Wed Aug 24, 2016 2:49 pm
by kingreigns
So like this?


sum(if[(cash_hand_player_statistics.val_f_bet_facing_pct BETWEEN 31 and 36) AND cash_hand_player_statistics.flg_f_cbet_def_opp AND cash_hand_player_statistics.cnt_f_call = 0 and cash_hand_player_statistics.cnt_f_raise = 0 and cash_hand_player_statistics.enum_folded = 'F', 1, 0])

Re: Fold to cbet size

PostPosted: Wed Aug 24, 2016 3:46 pm
by kraada
That would do it yes.

Re: Fold to cbet size

PostPosted: Thu Aug 25, 2016 3:02 pm
by kingreigns
do i also need to add it the opportunities?
sum(if[cash_hand_player_statistics.val_f_bet_facing_pct BETWEEN 31 and 36, 1, 0])

Like this?
sum(if[cash_hand_player_statistics.val_f_bet_facing_pct BETWEEN 31 and 36 AND cash_hand_player_statistics.flg_f_cbet_def_opp, 1, 0])

Re: Fold to cbet size

PostPosted: Thu Aug 25, 2016 3:51 pm
by kraada
You got it :)

highfalutin