There isn't a built-in you can use for the position of limpers/callers but you can do this in a custom report with an expression filter: tourney_hand_summary.str_actors_p LIKE '9%' and tourney_hand_summary.str_aggressors_p NOT LIKE '89%' You can use this expression filter by clicking on the 'Filters...
You need to specify the position of the player the statistic is written for ( tourney_hand_player_statistics.position ) otherwise the columns may count other positions too. In this example you want this for the BB but your column can also count 3bet opportunities for the SB: sum(if[tourney_hand_play...
That sounds like you are trying to import hands using 'File -> Import Statistic' which is for only importing custom statistics. To manually import hands from hand history files you need to use 'Play Poker -> Get Hands From Disk' instead.
PokerTracker 4 only supports English so if you have the 888 client installed in another language you will need to uninstall it and then reinstall it using English.
Let's see, in the 3bet-jam I should remove from the opportunities tourney_hand_player_statistics.amt_p_raise_made < tourney_hand_player_statistics.amt_p_effective_stack So they should be right, right? will be calculated the Stack eff? The players effective stack size is being tested for separately ...
I am having trouble with getting HUD to work on PokerStars. It is working fine when I play zoom but regular tables seem random when they work and when they don't. Most of the time I don't see a hud running on regular tables. Under import status it is showing one table that is importing while I play...
I itried exactly that -> Coin support mailed me a hand_log.txt file. I followed your description but it exclusively produces those errors, e.g.: ---------------------- 05:05:47 pm: Error: Yatahay Network: Unrecognized game type: Hand #206176918: Hold'em No Limit (0.02/0.05 ) 2025/02/19 00:04:08 GMT...
Using a comparison like tourney_hand_player_statistics.amt_p_raise_made < tourney_hand_player_statistics.amt_p_effective_stack is not sufficient to say that the player raised - it will just plugin a value of 0 if the player made no raise and had a 3bet opportunity and you also haven't specified the ...