Page 1 of 1

Looking for stats: 4bet size

PostPosted: Fri Mar 24, 2023 8:31 am
by PsychoCheez
Hi,

I'm trying to create a stat which will involve measuring the following preflop stats:

the pot size won
the amount hero 2bet/3bet/4bet

Which statements are the equivalents to these please?

Thanks

Re: Looking for stats: 4bet size

PostPosted: Fri Mar 24, 2023 1:43 pm
by Flag_Hippo
PsychoCheez wrote:I'm trying to create a stat which will involve measuring the following preflop stats:

the pot size won

Pots are not necessarily won preflop so I'm not sure what you are trying to do here by calling it a preflop stat.
PsychoCheez wrote:the amount hero 2bet/3bet/4bet

The size of the players first preflop raise is cash_hand_player_statistics.amt_p_raise_made and if they make a second raise preflop the size of that raise is cash_hand_player_statistics.amt_p_raise_made_2. You would need to combine that with a test for whether the player was 2bet (cash_hand_player_statistics.flg_p_first_raise), 3bet (cash_hand_player_statistics.flg_p_3bet) and/or 4bet (cash_hand_player_statistics.flg_p_4bet). If you need it see this guide for the basics on custom statistics creation and this guide for a deeper walkthrough.