Lans86 wrote:Probably I did a mistake somewhere in 3bet or call situations. Would you mind checking this please?
A call situation
cnt_steal_def_action_call_BBvsBU =
sum(if[cash_hand_player_statistics.flg_blind_def_opp AND
lookup_actions_p.action = 'C' AND
cash_hand_player_statistics.position = 8 AND
cash_hand_summary.str_aggressors_p LIKE '80' AND
cash_hand_summary.str_actors_p LIKE '0%', 1, 0])
3bet:
cnt_steal_def_action_3bet_BBvsBU =
sum(if[cash_hand_player_statistics.flg_blind_def_opp AND
lookup_actions_p.action = 'R' AND
cash_hand_player_statistics.position = 8 AND
cash_hand_summary.str_aggressors_p LIKE '808%' AND
cash_hand_summary.str_actors_p LIKE '0%', 1, 0])
Hi,
I just tried to rebuild the same custom stats as you did. But I do not get any result in HUD (0/0). So, I am probably doing something wrong...
For example
3bet from BB vs steal from SB
cnt_steal_def_action_3bet_BBvsSB =
sum(if[cash_hand_player_statistics.flg_blind_def_opp AND
lookup_actions_p.action = 'R%' AND
cash_hand_player_statistics.position = 8 AND
cash_hand_summary.str_aggressors_p LIKE '89%' AND
cash_hand_summary.str_actors_p LIKE '0%', 1, 0])
cnt_steal_def_opp_BBvsSB =
sum(if[cash_hand_player_statistics.flg_blind_def_opp AND
cash_hand_player_statistics.position = 8 AND
cash_hand_summary.str_aggressors_p LIKE '89%' AND
cash_hand_summary.str_actors_p LIKE '0%', 1, 0])
Can you help please?
In addition I used your cnt_steal_def_action_fold_BBvsBU
for BB vs BU. The Hud always results in 0% (0/x) for every opponent. What is wrong there. Btw I play PLO SH if that matters.
Thanks for any help