After doing some filtering etc, I have found out that the answer would be 15bb.So is it possible to find out the stacksize of the initial raiser? The issue I'm looking at is when to count a hand as qualifying for a "mini and fold to 4bet" stat. Perhaps I should just look at the size of the 4bet and use that as a determiner for whether the hand will count.
Example to illustrate why:
Btn (7bb) minraises to 2bb
SB (me with >20bb) 3bets to 4.5bb total
BB (20bb)
In this spot, my effective stack is 20bb, and I will call any shove from the btn, but could still fold to the BB. Yet when the button shoves (the far more likely option than BB doing so), it will be counting this as part of my "fold to 4bet stat" if my basis is amt_p_effective_stack, even when it shouldn't. I know this will only affect a tiny number of hands, but I want my stats to be accurate.
Here's my stat for simply making the mini3bet, which I'm modifying to count success of mini3bet, fold to 4bet after mini3bet, etc.
- Code: Select all
cash_hand_player_statistics.flg_p_3bet AND cash_hand_player_statistics.amt_p_raise_made <= (5 * cash_limit.amt_bb) AND (cash_hand_player_statistics.amt_p_effective_stack / cash_limit.amt_bb) <= 17
So for deciding whether to count the hand as valid for "mini 3b, fold to 4bet", I have two options , or possibly a combination of both:
- I want the size of the 4bet to determine whether I count the hand or not - how would I write that?
- I want to look at the size of the stack of the initial opener, is that possible too?