Hi people, a lot of time without making a question.
I have tried with Zandry adapt Turbo Scan Table to work with Fold to PF 3bet after raise for making the filter more accurate. These are the current default stats in PT3.
Fold to PF 3bet is (cnt_p_3bet_def_action_fold / cnt_p_3bet_def_opp) * 100
-1 sum(if[holdem_hand_player_statistics.enum_p_3bet_action='F', 1, 0])
-2 sum(if[holdem_hand_player_statistics.flg_p_3bet_def_opp, 1, 0])
Fold to PF 3bet When Raised is (cnt_p_3bet_def_action_fold_when_open_raised / cnt_p_3bet_def_opp_when_open_raised) * 100
-1 sum(if[holdem_hand_player_statistics.enum_p_3bet_action='F' and holdem_hand_player_statistics.flg_p_first_raise and not(holdem_hand_player_statistics.flg_steal_att), 1, 0])
-2 sum(if[holdem_hand_player_statistics.flg_p_3bet_def_opp and holdem_hand_player_statistics.flg_p_first_raise and not(holdem_hand_player_statistics.flg_steal_att), 1, 0])
In the first one we have Player 1 raises, Player 2 3bets, Player 3 folds. Player3 sums a Fold 3bet case, i dont want this.
In the second one we have Player 1 raises at button, Player 2 3bets, Player 1 folds. Player 1 doesnt sum a Fold 3bet case, I dont want this.
So, i need these second columns but without the condition and not(holdem_hand_player_statistics.flg_steal_att)
The problem is that this stat doesnt exist by default and if Zandry adds it to his software all of the users would have to have this new stat Fold 3bet After Raise (With or without steal) and it would be a total mess.
So, it would be easier if i can replace my default columns into:
cnt_p_3bet_def_action_fold = sum(if[holdem_hand_player_statistics.enum_p_3bet_action='F' and holdem_hand_player_statistics.flg_p_first_raise), 1, 0])
cnt_p_3bet_def_opp = sum(if[holdem_hand_player_statistics.flg_p_3bet_def_opp and holdem_hand_player_statistics.flg_p_first_raise), 1, 0])
Is this possible? Any alternative suggestion?
