I have created similar Stats for 3bet AI and 3bet NAI.
3bet AI:- Code: Select all
sum(if[(tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) between 7 and 1000
AND tourney_hand_player_statistics.cnt_players = 3 AND NOT tourney_hand_player_statistics.flg_p_limp
AND tourney_hand_player_statistics.flg_p_face_raise AND NOT tourney_hand_player_statistics.enum_face_allin='p'
AND (amt_p_2bet_facing / tourney_blinds.amt_bb) < 4
AND tourney_hand_player_statistics.flg_p_3bet
AND tourney_hand_player_statistics.amt_p_raise_made >= tourney_hand_player_statistics.amt_p_effective_stack , 1, 0])
I tested the Stat and there is one situation which is not filtered in. BU(14bb) 2bb OR, SB(1.7bb) "callAI", Hero BB(16bb) 3betAI. Such a Situation is filtered out because of this expression:
- Code: Select all
NOT tourney_hand_player_statistics.enum_face_allin='p'
If I dont use this expression, another Situation (2) occurs which i dont want to have showing up in this stat: BU(2bb) OR "AI", Hero SB(15bb) "3-betAI", BB(20bb) folds.
I am stuck
.
As you can see I use a 7bb+ effective stack filter, why is this filter "not working" in Situation (2) were BU has only 2bb.
How can i presize this stat?
3bet NAI:- Code: Select all
sum(if[(tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) between 7 and 1000
AND tourney_hand_player_statistics.cnt_players = 3 AND NOT tourney_hand_player_statistics.flg_p_limp
AND tourney_hand_player_statistics.flg_p_face_raise AND NOT tourney_hand_player_statistics.enum_face_allin='p'
AND (amt_p_2bet_facing / tourney_blinds.amt_bb) < 4
AND tourney_hand_player_statistics.flg_p_3bet
AND tourney_hand_player_statistics.amt_p_raise_made < tourney_hand_player_statistics.amt_p_effective_stack * .5 , 1, 0])
Same here:
- Code: Select all
NOT tourney_hand_player_statistics.enum_face_allin='p'
This expression works to filter the openraiser is NOTAI (openshove), but also filters Hands were a 4bet all-in occured (like: BU(23bb) OR, SB(25bb) 3betNAI, BB(27bb) fold, BU 4betAI)
In the end...
- is there an expression which excludes only that the first raiser (openraiser) is NOT All-In.
- And also why is the effective Stacksizefilter not working in Situation (2)?