Fold R after call T float & Turn bet after F Float

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

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

Fold R after call T float & Turn bet after F Float

Postby Huttydr » Thu Dec 16, 2021 7:53 pm

Good evening, I have created these two stats: Turn bet after F Float HU & Fold R after call T float, the first is based on the times that an opponent bets turn after making F float HU and the second the times that an opponent folds River after calling in T Float, but for some reason the first does not detect any cases and the second always indicates a frequency of 0 in all cases.
Does anyone see any errors?

Turn bet after F Float HU: (cnt_t_bet_after_f_float / cnt_t_bet_opp_after_f_float) * 100

cnt_t_bet_after_f_float:

Code: Select all
sum(if[ (lookup_actions_p.action = 'C' AND cash_hand_player_statistics.flg_p_face_raise AND cash_hand_player_statistics.flg_f_bet AND char_length(cash_hand_summary.str_aggressors_p) = 2 And ((cash_hand_summary.cnt_players = 2 AND cash_hand_player_statistics.flg_f_has_position)) AND cash_hand_player_statistics.flg_t_open_opp AND cash_hand_player_statistics.flg_t_bet), 1, 0])

cnt_t_bet_opp_after_f_float:

Code: Select all
sum(if[ (lookup_actions_p.action = 'C' AND cash_hand_player_statistics.flg_p_face_raise AND cash_hand_player_statistics.flg_f_bet AND char_length(cash_hand_summary.str_aggressors_p) = 2 AND((cash_hand_summary.cnt_players = 2 AND cash_hand_player_statistics.flg_f_has_position)) AND cash_hand_player_statistics.flg_t_open_opp), 1, 0])


Fold R after call T float: (cnt_r_bet_after_call_t_float_def_action_fold / cnt_r_bet_after_call_t_float_def_opp) * 100

cnt_r_bet_after_call_t_float_def_action_fold:

Code: Select all
sum(if[cash_hand_player_statistics.enum_t_float_action='C' and cash_hand_player_statistics.amt_r_bet_facing > 0 and lookup_actions_r.action = 'F', 1, 0])

cnt_r_bet_after_call_t_float_def_opp:

Code: Select all
sum(if[cash_hand_player_statistics.enum_t_float_action='C' and cash_hand_player_statistics.amt_r_bet_facing > 0, 1, 0])

regards, huttydr.
Huttydr
 
Posts: 15
Joined: Tue Jan 12, 2021 3:35 pm

Re: Fold R after call T float & Turn bet after F Float

Postby Flag_Hippo » Sat Dec 18, 2021 7:00 am

Huttydr wrote:Good evening, I have created these two stats: Turn bet after F Float HU & Fold R after call T float, the first is based on the times that an opponent bets turn after making F float HU and the second the times that an opponent folds River after calling in T Float, but for some reason the first does not detect any case

When you say HU where is that exactly? Players dealt into the hand? Or on the flop only? Your statistic is only counting hands where two players were dealt in (cash_hand_summary.cnt_players = 2) so if you don't play heads up poker you will not see any results.
Huttydr wrote:and the second always indicates a frequency of 0 in all cases.

The player the statistic is written for is out of position so you have their river actions wrong. It should be 'XF' instead of just 'F'.
Flag_Hippo
Moderator
 
Posts: 14441
Joined: Tue Jan 31, 2012 7:50 am


Return to Custom Stats, Reports and HUD Profiles

Who is online

Users browsing this forum: No registered users and 23 guests

cron