Check Raise Flop MRP

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

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

Check Raise Flop MRP

Postby DANNI BASTOS » Mon Sep 25, 2023 4:28 pm

I made a statistic based on 'Check Raise Flop'
What is the percentage of times that the BB player makes XR flop in a bet in HU months, with 10 to 100b of effective stack and in a preflop minraise

player:
preflop C
flop XR

(cnt_f_check_raise_10more / cnt_f_check_raise_opp_10more) * 100

cnt_f_check_raise_10more
sum(if[(tourney_hand_player_statistics.val_p_raise_aggressor_pos=9 AND ((tourney_hand_player_statistics.amt_p_2bet_facing + tourney_hand_player_statistics.amt_blind) / tourney_blinds.amt_bb) BETWEEN 1.99 and 2.10) and tourney_hand_summary.cnt_players = 2 AND
tourney_hand_player_statistics.position=8 AND
(tourney_hand_player_statistics.val_f_bet_facing_pct <=40) AND
((tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 10 AND 100) AND
tourney_hand_player_statistics.flg_f_check_raise, 1, 0])

cnt_f_check_raise_opp_10more
sum(if[tourney_hand_summary.cnt_players = 2 AND
tourney_hand_player_statistics.position=8 AND
(tourney_hand_player_statistics.val_f_bet_facing_pct <=40) AND
((tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 10 AND 100) AND
(tourney_hand_player_statistics.val_p_raise_aggressor_pos=9 AND
((tourney_hand_player_statistics.amt_p_2bet_facing + tourney_hand_player_statistics.amt_blind) / tourney_blinds.amt_bb) BETWEEN 1.99 and 2.10) and tourney_hand_player_statistics.flg_f_check AND (tourney_hand_player_statistics.cnt_f_raise > 0 OR tourney_hand_player_statistics.cnt_f_call > 0 OR tourney_hand_player_statistics.flg_f_fold), 1, 0])

Please let me know if everything is correct.
DANNI BASTOS
 
Posts: 43
Joined: Mon Aug 07, 2023 4:09 pm

Re: Check Raise Flop MRP

Postby Flag_Hippo » Tue Sep 26, 2023 5:26 am

DANNI BASTOS wrote:preflop C

This isn't specified so if the BB 3Bets vs the min raise and SB 4Bets then those hands would get counted too (provided the SB bets the flop).
DANNI BASTOS wrote:(tourney_hand_player_statistics.val_f_bet_facing_pct <=40)

Flop bet sizing is not mentioned in your description so I am not sure if it should be there or not.
Flag_Hippo
Moderator
 
Posts: 15186
Joined: Tue Jan 31, 2012 7:50 am

Re: Check Raise Flop MRP

Postby DANNI BASTOS » Sat Oct 28, 2023 9:43 am

Flag_Hippo wrote:This isn't specified so if the BB 3Bets vs the min raise and SB 4Bets then those hands would get counted too (provided the SB bets the flop).

How do I specify that the player only called on the flop, can you show me the line to add to this statistic?

Flag_Hippo wrote:Flop bet sizing is not mentioned in your description so I am not sure if it should be there or not.


When I place (tourney_hand_player_statistics.val_f_bet_facing_pct <=40), am I not specifying the size of the bet?
DANNI BASTOS
 
Posts: 43
Joined: Mon Aug 07, 2023 4:09 pm

Re: Check Raise Flop MRP

Postby Flag_Hippo » Sun Oct 29, 2023 6:29 am

DANNI BASTOS wrote:
Flag_Hippo wrote:This isn't specified so if the BB 3Bets vs the min raise and SB 4Bets then those hands would get counted too (provided the SB bets the flop).

How do I specify that the player only called on the flop, can you show me the line to add to this statistic?

This was for preflop and not the flop. You can specify that the player only made a single call preflop with:

Code: Select all
lookup_actions_p.action = 'C'

Flag_Hippo wrote:Flop bet sizing is not mentioned in your description so I am not sure if it should be there or not.

DANNI BASTOS wrote:When I place (tourney_hand_player_statistics.val_f_bet_facing_pct <=40), am I not specifying the size of the bet?

I was just mentioning this because this wasn't included anywhere in the written description of the statistic from your original post. If it's meant to be there you can leave it.
Flag_Hippo
Moderator
 
Posts: 15186
Joined: Tue Jan 31, 2012 7:50 am

Re: Check Raise Flop MRP

Postby fadrianocm » Wed Nov 01, 2023 6:54 pm

Could you please confirm for me if everything is ok now?

cnt_f_check_raise_10more
sum(if[(tourney_hand_player_statistics.val_p_raise_aggressor_pos=9 AND lookup_actions_p.action = 'C' and((tourney_hand_player_statistics.amt_p_2bet_facing + tourney_hand_player_statistics.amt_blind) / tourney_blinds.amt_bb) BETWEEN 1.99 and 2.10) and tourney_hand_summary.cnt_players = 2 AND
tourney_hand_player_statistics.position=8 AND
(tourney_hand_player_statistics.val_f_bet_facing_pct <=40) AND
((tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 10 AND 100) AND
tourney_hand_player_statistics.flg_f_check_raise, 1, 0])

cnt_f_check_raise_opp_10more
sum(if[tourney_hand_summary.cnt_players = 2 AND
tourney_hand_player_statistics.position=8 AND lookup_actions_p.action = 'C' AND
(tourney_hand_player_statistics.val_f_bet_facing_pct <=40) AND
((tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 10 AND 100) AND
(tourney_hand_player_statistics.val_p_raise_aggressor_pos=9 AND
((tourney_hand_player_statistics.amt_p_2bet_facing + tourney_hand_player_statistics.amt_blind) / tourney_blinds.amt_bb) BETWEEN 1.99 and 2.10) and tourney_hand_player_statistics.flg_f_check AND (tourney_hand_player_statistics.cnt_f_raise > 0 OR tourney_hand_player_statistics.cnt_f_call > 0 OR tourney_hand_player_statistics.flg_f_fold), 1, 0])


As for (tourney_hand_player_statistics.val_f_bet_facing_pct <=40), yes! It was supposed to be there, sorry I didn't mention it.
fadrianocm
 
Posts: 4
Joined: Tue May 03, 2022 11:07 pm

Re: Check Raise Flop MRP

Postby Flag_Hippo » Thu Nov 02, 2023 6:45 am

Yes that's fine.
Flag_Hippo
Moderator
 
Posts: 15186
Joined: Tue Jan 31, 2012 7:50 am

Re: Check Raise Flop MRP

Postby DANNI BASTOS » Sat Nov 04, 2023 9:41 am

Excellent! :)

I'm also looking to do the same stats for the limp pot.
There are just a few changes that follow below.
Please confirm for me that this is correct.

stats: cnt_lp_f_check_raise_10more/cnt_lp_f_check_raise_opp_10more

cnt_lp_f_check_raise_10more
sum(if[(lookup_actions_p.action = 'X' AND
tourney_hand_summary.cnt_players = 2 AND
tourney_hand_player_statistics.position=8 AND
(tourney_hand_player_statistics.val_f_bet_facing_pct <=40) AND
((tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 10 AND 100) AND
tourney_hand_player_statistics.flg_f_check_raise, 1, 0])

cnt_lp_f_check_raise_opp_10more
sum(if[tourney_hand_summary.cnt_players = 2 AND
tourney_hand_player_statistics.position=8 AND
lookup_actions_p.action = 'X' AND
(tourney_hand_player_statistics.val_f_bet_facing_pct <=40) AND
((tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 10 AND 100) AND
tourney_hand_player_statistics.flg_f_check AND
(tourney_hand_player_statistics.cnt_f_raise > 0 OR tourney_hand_player_statistics.cnt_f_call > 0 OR tourney_hand_player_statistics.flg_f_fold), 1, 0])
DANNI BASTOS
 
Posts: 43
Joined: Mon Aug 07, 2023 4:09 pm

Re: Check Raise Flop MRP

Postby Flag_Hippo » Sat Nov 04, 2023 1:09 pm

Yes that's fine although this will not validate with the extra bracket you've inserted:

DANNI BASTOS wrote:sum(if[(lookup_actions_p.action = 'X' AND tourney_hand_summary.cnt_players = 2 AND tourney_hand_player_statistics.position=8 AND (tourney_hand_player_statistics.val_f_bet_facing_pct <=40) AND ((tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 10 AND 100) AND tourney_hand_player_statistics.flg_f_check_raise, 1, 0])

Also you can test your column expressions yourself by using he method described in this post.
Flag_Hippo
Moderator
 
Posts: 15186
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 41 guests

cron
highfalutin