I created the stat coldcall vs position, and filtered it in the HUD profiles again after position. So I would get a popup that shows me coldcall MPvUTG, COvMP etc.
This works partially.
The stat compares the custom columns below against the default cnt_p_3bet_opp_vs_[pos]_open -> (cnt_p_coldcall_vs_[pos]_open / cnt_p_3bet_opp_vs_[pos]_open) * 100
Custom columns:
note: i used the "cash_hand_player_statistics.flg_p_ccall" originally, but it resultet in zeros for all positions where the coldcaller is oop. Now it works for BBvBU and SvBU.
cnt_p_coldcall_vs_btn_open
- Code: Select all
sum(if[cash_hand_summary.str_aggressors_p LIKE '80%' and
cash_hand_summary.str_actors_p LIKE '0%' and
cash_hand_player_statistics.flg_vpip and
not(cash_hand_player_statistics.flg_p_3bet or cash_hand_player_statistics.flg_p_squeeze_opp), 1, 0])
cnt_p_coldcall_vs_co_open
- Code: Select all
sum(if[cash_hand_summary.str_aggressors_p LIKE '81%' and
cash_hand_summary.str_actors_p LIKE '1%' and
cash_hand_player_statistics.flg_vpip and
not(cash_hand_player_statistics.flg_p_3bet or cash_hand_player_statistics.flg_p_squeeze_opp), 1, 0])
cnt_p_coldcall_vs_mp_open
- Code: Select all
sum(if[cash_hand_summary.str_aggressors_p LIKE '82%' and
cash_hand_summary.str_actors_p LIKE '2%' and
cash_hand_player_statistics.flg_vpip and
not(cash_hand_player_statistics.flg_p_3bet or cash_hand_player_statistics.flg_p_squeeze_opp), 1, 0])
cnt_p_coldcall_vs_utg_open
- Code: Select all
sum(if[cash_hand_summary.str_aggressors_p LIKE '83%' and
cash_hand_summary.str_actors_p LIKE '3%' and
cash_hand_player_statistics.flg_vpip and
not(cash_hand_player_statistics.flg_p_3bet or cash_hand_player_statistics.flg_p_squeeze_opp), 1, 0])
What is wrong?
regards,
madsquare