I'm trying to fix the stat in the general stats pop-up of Kraada's Advanced Hud.
The stat 'fold 3bet to 4bet' returns the percentage of the times a player 3bet in respect to the number of times this player 3betted (and not, 'was facing a 4bet').
To get this I've tried to create a column with this definition:
sum(if[holdem_hand_player_statistics.flg_p_4bet_def_opp and holdem_hand_player_statistics.flg_p_3bet
and
((holdem_hand_summary.cnt_players > 2 and holdem_hand_player_statistics.position = 0)
or
(holdem_hand_summary.cnt_players > 4 and holdem_hand_player_statistics.position = 1)), 1, 0])
When I use this (btw this example is only for LP FR) it returns about 6400 opportunities (in 50k hands) and I happen to know I wasn't 4betted 6400 times in the 50k hANDS .
I used the same definition for the blinds and that stats works correct.
Blinds are identified by flg_bb or sb; the def for EP, MP and LP are defined by combo of nr of players and position. Could this (the combo) have something to do with the fact that the same opportunities are counted multiple times?
Would it be possible to let the user define a EP-, MP- or LP-flag in the database (as with the blinds) in PT4? Then I only have to define these positions once in stead of having to define each position in every column that uses table-position?
Thanks.