nevermind the 0s, its working now. Even though it takes very long to load the popup.
The percentages for fold, 3bet and call still dont match up. 2 days into this and a lot of explaining, there is no progress on it. We have to make some.
Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators
madsquare wrote:this custom cc v pos stat and the corrosponding PT-default 3b v pos stat dont add up to the PT-default fold v pos stat [cc + 3b < (1-fold)]; it should be equal.
sum(if[tourney_hand_player_statistics.amt_p_2bet_facing > 0 AND ((NOT(tourney_hand_player_statistics.flg_p_limp) AND lookup_actions_p.action LIKE 'C%') OR lookup_actions_p.action SIMILAR TO '(C|X)C%'), 1, 0])
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])
kraada wrote:I don't think you want flg_vpip in these cases - as the way you've written it, the times you make the 2bet would count (as an open raise is a vpip situation). Instead I think you want: lookup_actions_p.action LIKE 'C%' - that guarantees the player's first action was to call.
Instead of that clause for your opportunities use cash_hand_player_statistics.amt_p_2bet_facing > 0.
sum(if[cash_hand_summary.str_aggressors_p LIKE '80%' and
cash_hand_summary.str_actors_p LIKE '0%'
and lookup_actions_p.action LIKE 'C%'
and not(cash_hand_player_statistics.flg_p_squeeze_opp), 1, 0])
sum(if[cash_hand_summary.str_aggressors_p LIKE '80%' and
cash_hand_summary.str_actors_p LIKE '0%'
and cash_hand_player_statistics.amt_p_2bet_facing > 0
and not(cash_hand_player_statistics.flg_p_squeeze_opp), 1, 0])
Return to Custom Stats, Reports and HUD Profiles
Users browsing this forum: No registered users and 14 guests