Page 1 of 1

3Bet non-all-in

PostPosted: Mon May 24, 2021 5:36 pm
by Mightyork
Hey! I want to create a stat for non-all-in 3bets with effective stack sizes between 25bb and 200bb. Is this expression going to work for that stat?

Code: Select all
sum(if[tourney_hand_player_statistics.flg_p_3bet AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 25.1 and 200 AND tourney_hand_player_statistics.amt_p_raise_made < tourney_hand_player_statistics.amt_p_effective_stack, 1, 0])


I am not sure whether
tourney_hand_player_statistics.amt_p_raise_made
considers the preflop 2bet made by villain or 3bet made by hero in this case.

I'm asking because there is no
tourney_hand_player_statistics.amt_p_3bet_made
to specify the size of the 3bet.

Thanks a lot! :D

Re: 3Bet non-all-in

PostPosted: Tue May 25, 2021 6:48 am
by Flag_Hippo
That's fine. amt_p_raise_made is the size of the first raise made by the player you are writing the statistic for (the 3Bettor).

highfalutin