Custom Stat : Fold vs 3B AI

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

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

Custom Stat : Fold vs 3B AI

Postby Moby84 » Fri Feb 09, 2018 12:17 pm

Hi there !

The spot is : BU OR 2bb and Fold vs 3B AI with more than 20bb (the 3B AI come from any position).

Stat to return : % of time BU is folding vs 3B AI with 20bb+

Value Expression :

(cnt_3h_bu_or_2bb_steal_3bet_ai_def_action_fold_sup_20 / cnt_3h_bu_or_2bb_steal_3bet_ai_def_opp_sup_20 ) * 100

Column Expression "cnt_3h_bu_or_2bb_steal_3bet_ai_def_action_fold_sup_20" :

sum(if[tourney_hand_player_statistics.flg_steal_att AND
tourney_hand_player_statistics.flg_p_3bet_def_opp AND
tourney_hand_player_statistics.enum_p_3bet_action='F' AND
tourney_hand_player_statistics.position = 0 AND
tourney_hand_player_statistics.amt_p_raise_made = (2 * tourney_blinds.amt_bb) AND
(tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 20 and 100 AND
(tourney_hand_player_statistics.amt_p_3bet_facing >= tourney_hand_player_statistics.amt_p_effective_stack), 1, 0])

Column Expression "cnt_3h_bu_or_2bb_steal_3bet_ai_def_opp_sup_20" :

sum(if[tourney_hand_player_statistics.flg_steal_att AND
tourney_hand_player_statistics.flg_p_3bet_def_opp AND
tourney_hand_player_statistics.position = 0 AND
tourney_hand_player_statistics.amt_p_raise_made = (2 * tourney_blinds.amt_bb) AND
(tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 20 and 100 AND
(tourney_hand_player_statistics.amt_p_3bet_facing >= tourney_hand_player_statistics.amt_p_effective_stack), 1, 0])

QUESTION : The stat returns 0/0 why ? What is wrong please ?

Thanks !
Moby84
 
Posts: 26
Joined: Thu Oct 26, 2017 7:17 am

Re: Custom Stat : Fold vs 3B AI

Postby Flag_Hippo » Fri Feb 09, 2018 5:12 pm

The size of the 3bet faced in this case will be the difference between the size of the 3bet and the size of the 2bet so you need to account for that in your expression e.g.

cnt_3h_bu_or_2bb_steal_3bet_ai_def_action_fold_sup_20

Code: Select all
sum(if[tourney_hand_player_statistics.flg_steal_att AND
tourney_hand_player_statistics.flg_p_3bet_def_opp AND
tourney_hand_player_statistics.enum_p_3bet_action='F' AND
tourney_hand_player_statistics.position = 0 AND
tourney_hand_player_statistics.amt_p_raise_made = (2 * tourney_blinds.amt_bb) AND
(tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 20 and 100 AND
(tourney_hand_player_statistics.amt_p_3bet_facing + tourney_hand_player_statistics.amt_p_raise_made) >= tourney_hand_player_statistics.amt_p_effective_stack, 1, 0])
Flag_Hippo
Moderator
 
Posts: 14505
Joined: Tue Jan 31, 2012 7:50 am

Re: Custom Stat : Fold vs 3B AI

Postby Moby84 » Sat Feb 10, 2018 4:35 pm

Thanks a lot Flag :) I'll check that :)
Moby84
 
Posts: 26
Joined: Thu Oct 26, 2017 7:17 am


Return to Custom Stats, Reports and HUD Profiles

Who is online

Users browsing this forum: No registered users and 31 guests

cron
highfalutin