peridz wrote:While it's true that there isn't an expression that explicitly states that a 3bet is not an all-in, I suppose it would be more appropriate to have a phrase that indicates that a 3bet is at a size smaller than 1/3 of the effective stack. I'm not sure if such a phrase or something similar exists. The idea is to have a stat for playing spin and go, which is why I included the condition of being smaller than 8.
Your expression doesn't do this either. Anything using "tourney_hand_player_statistics" is specific to the player you are writing the statistic for and
tourney_hand_player_statistics.amt_p_raise_made is the size of the first raise made by that player so:
- Code: Select all
tourney_hand_player_statistics.enum_p_3bet_action = 'F' AND tourney_hand_player_statistics.amt_p_raise_made / tourney_blinds.amt_bb < 8
means the player folded to a 3Bet after 2betting with a size less than 8bb. If you want to test the size of the 3Bet
faced by the player
the thread I linked you to has an expression that does this:
- Code: Select all
((tourney_hand_player_statistics.amt_p_raise_made + tourney_hand_player_statistics.amt_p_3bet_facing) < tourney_hand_player_statistics.amt_p_effective_stack)