Situation is : I rfi then I'm facing a 3bet. I'm trying to get rid of all situations where I'm facing a 3bet all in.
I'm using this :
((lookup_actions_p.action ~ '^RR$' OR lookup_actions_p.action ~ '^RC$' OR lookup_actions_p.action ~ '^RF$') AND not ( cash_hand_player_statistics.enum_face_allin SIMILAR TO '(P|p)') OR lookup_actions_p.action LIKE 'RRR%' OR lookup_actions_p.action LIKE 'RRC%' OR lookup_actions_p.action LIKE 'RRF%'
and
cash_hand_player_statistics.flg_p_4bet_opp
Problem with this is I'm seeying some hands like RCF being filtered by this. RCF is not RC so I'm lost. Why this is filtering RCF?
SB posts SB 0.5 BB, BB posts BB 1 BB
UTG raises to 3 BB, fold, fold, fold, SB calls 2.5 BB, BB raises to 11 BB, UTG calls 8 BB, SB raises to 112.44 BB and is all-in, BB raises to 139.1 BB and is all-in, fold
Flop : (235.88 BB, 2 players) 6s Th Qc
Turn : (235.88 BB, 2 players) 8h
River : (235.88 BB, 2 players) Tc
Players agreed to run it twice.
Flop #2: (235.88 BB, 2 players) 3h 3d Qd
Turn #2: (235.88 BB, 2 players) 4d
River #2: (235.88 BB, 2 players) Kd
Here I'm clearly not facing a 3bet all in so I'm lost. I need help here. If you can think of a more effective way to exclude all 3bets all ins I'm facing I would be happy to hear your idea.