kraada wrote:The setup you've built is for when you make a turn float bet having made a 3-bet preflop.
So here's a situation how that could happen:
A raises, you 3-bet, A 4-bets you call. A c-bets the flop, you call. A checks the turn, you make a float bet.
If you're making 3x raises preflop and 60% bets postflop we have:
raise - 3BB, 3-bet - 9BB, 4-bet - 27BB. So the pot on the flop is ~55BBs. A flop cbet is then 33bb - leaving 40bb back, and your turn bet would always be a shove.
I would not expect that chain of events to happen very often. But that's what you're picking out.
LOL. I dont want this. I want: A raises, me 3-bet, A calls, me cbet flop, A calls, me checks, A bets. I dont know why my stat count only the float in 4bet Pots, do you mean that? If it is, i have so many wrong stats.
Look more:
Check raise flop 3B = (cnt_p_3bet_f_check_raise / cnt_p_3bet_f_check_raise_opp) * 100
cnt_p_3bet_f_check_raise= sum(if[holdem_hand_player_statistics.flg_f_check_raise AND
holdem_hand_player_statistics.flg_p_3bet, 1, 0])
cnt_p_3bet_f_check_raise_opp = sum(if[holdem_hand_player_statistics.flg_f_check
AND (holdem_hand_player_statistics.cnt_f_raise > 0
OR holdem_hand_player_statistics.cnt_f_call > 0
OR holdem_hand_player_statistics.flg_f_fold) AND
holdem_hand_player_statistics.flg_p_3bet, 1, 0])
Fold to Check raise flop 3B = (cnt_p_3bet_f_face_xr_fold / cnt_p_3bet_f_face_xr) * 100
cnt_p_3bet_f_face_xr_fold = sum ( if[ lookup_actions_f.action LIKE 'BF' and holdem_hand_player_statistics.flg_f_face_raise AND (holdem_hand_player_detail.val_f_raise_aggressor_pos > holdem_hand_player_statistics.position) AND
holdem_hand_player_statistics.flg_p_3bet, 1, 0 ] )
cnt_p_3bet_f_face_xr = sum ( if[ flg_f_bet AND holdem_hand_player_statistics.flg_f_face_raise
AND (holdem_hand_player_detail.val_f_raise_aggressor_pos > holdem_hand_player_statistics.position)
AND holdem_hand_player_statistics.flg_p_3bet, 1, 0 ] )
These stats look like that they are picking out good.