Thanks for the quick reply, you make it sound so simple.. Here my comments & follow up questions. Case A) he has position
A1) Difference between "% float flop" and "% flop probe bet"? Both are flop bets in position after pf aggressor does NOT cbet, but:
% float flop: is counting only situation where one preflop bet is called (no pf 3bet situations)
% flop probe bet: is counting all situations where any preflop bet is called (also pf 3bet situations)
Is that correct?
I'm not sure what you're using as the Flop Probe Bet definition; if you give me the definition you're using, I can tell you if this is accurate. The Turn Probe and River Probe are for bets out of position after the person who could have cbet the previous street was in position and did not cbet. It's also called bet vs missed cbet OOP in some places.Sorry, noticed I didn't explain well enough.
In my mind "probe flop" means pf aggro is not cbetting oop and I bet right away IP on the flop, probing for information...? If that is not probe bet, what is this called?
Now Iam totally confused
Can you check my definitions below for probe and float? Are they both oop?? Not sure what that "val_p_raise_aggressor_pos" means..
Float Flop:
(cnt_f_float / cnt_f_float_opp) * 100
cnt_f_float=
sum(if[ holdem_hand_player_statistics.flg_p_face_raise and
holdem_hand_player_statistics.cnt_p_raise = 0 and
holdem_hand_player_statistics.cnt_p_call = 1 and
holdem_hand_player_detail.flg_f_open_opp and
holdem_hand_player_statistics.flg_f_bet and
holdem_hand_player_detail.val_p_raise_aggressor_pos > holdem_hand_player_statistics.position, 1, 0])
cnt_f_float_opp
sum(if[ holdem_hand_player_statistics.flg_p_face_raise and
holdem_hand_player_statistics.cnt_p_raise = 0 and
holdem_hand_player_statistics.cnt_p_call = 1 and
holdem_hand_player_detail.flg_f_open_opp and
holdem_hand_player_detail.val_p_raise_aggressor_pos > holdem_hand_player_statistics.position, 1, 0])
vs.
Flop Probe Bet:
100 * cnt_f_probe_bet_raised_pot / cnt_f_probe_bet_raised_pot_opp
cnt_f_probe_bet_raised_pot=
sum(if[flg_f_bet and flg_p_face_raise and not(flg_f_cbet_opp) and
holdem_hand_player_detail.val_p_raise_aggressor_pos > holdem_hand_player_statistics.position, 1, 0])
cnt_f_probe_bet_raised_pot_opp=
sum(if[flg_f_open_opp and flg_p_face_raise and not(flg_f_cbet_opp) and
holdem_hand_player_detail.val_p_raise_aggressor_pos > holdem_hand_player_statistics.position, 1, 0])
---------------------------------------
A3) Stat for how often opponent checks flop in position after I did NOT cbet. Can I build this with 100 - "% flop probe bet"?
Same questions for turn..
You can build this column fairly easily: sum(if[holdem_hand_player_statistics.flg_f_cbet_opp and lookup_actions_f.action = 'X' and not(holdem_hand_player_detail.flg_f_has_position), 1, 0]) for the times they checked it through and sum(if[holdem_hand_player_statistics.flg_f_cbet_opp and lookup_actions_f.action LIKE 'X%' and not(holdem_hand_player_detail.flg_f_has_position), 1, 0]) for the opportunities column.Thanks for that, sounds logical. Couldn't test it yet, my cache needs long time to update...
---------------------------------------
A4) pf aggressor checks, opponent bets, pf aggressor check-raises. Stat: how often opponent folds to this check-raise?
If I understood, the check-raise stats which are already in PT3 embedded don't depend on preflop action, right?
Correct, but you could add new columns checking for cbet opportunities (flg_f_cbet_opp) along with the check/raise stuff - just adding that check should be sufficient to get what you want.I put the flag in, test it later---------------------------------------
Case B) he is out of position
B2) He called flop cbet and checks the turn, does this exist already?
No, but you could build it pretty easily by looking for turn donk opportunities and checking the turn.Ok, I created the stat
Check T after calling Flop Cbet oop=
100 * (cnt_t_donk_opp / cnt_t_check_even_having_donk_opp)
with
cnt_t_check_even_having_donk_opp=
sum(if[holdem_hand_player_statistics.flg_t_check and holdem_hand_player_statistics.flg_t_donk_opp, 1, 0])
Damn, just started the cache updating, I think defined the stat the wrong way around, outcome will be always over 100%...---------------------------------------
B3) we both check the flop (I didn't cbet), he leads out on the turn, does this exist already?
That's Probe Turn.
Is there a stat "probe turn" somewhere?? Can you attach it? Is there also "probe river"?Thanks!
Seems probe and float is a mystery to me...---------------------------------------
B4) we both check the flop (I didn't cbet), he
- check-calls the turn
- check-raises the turn
- check-folds the turn
These don't exist, but you should be able to build them using the Probe Turn columns as a starting point.Ok, I'll try once I have the "probe turn" stat.---------------------------------------
I'm aware that I need to edit the stats/colums to be valid for 2 players on the flop, can you give me one example so I know what to put?
These should work for multiway flops too even if they get a little more complicated, but you can also check for holdem_hand_summary.cnt_players_f = 2 if you want to limit to strictly heads up flops.Ok, thanks.