Is it possible to find out what size individual bets were, e.g. if I raise, get reraised and call, can I find out how much my original raise was? (NL, obviously)
I can see holdem_hand_player_detail.amt_bet_p and holdem_hand_player_statistics.cnt_p_raise so I know the total I bet and how many times I raised, but not what my original raise size was.
Edit: just found holdem_hand_player_detail.amt_p_raise_made which solves the above problem, but what if I 3-bet?
Is holdem_hand_player_detail.amt_p_raise_made the sum of all raises, or just the first raise?
I can also see holdem_hand_player_detail.amt_p_raise_facing which may be useful..
We need to be able to see individual bet sizes as people's behaviour will often be different after open-min-raising than opening for more. What I'd really like is access to each individual bet/raise. I don't know how you'd store this info as there are an unspecified number of bets - can you have an array as a DB field?
Even just a 'amt_p_first_raise' would be a start. If amt_p_raise_made is the first raise, then we need total raise too - e.g. for raise-call-reraise-call (etc).
Related subject: another useful stat would be total amount bet by all players on each street, so that we can work out pot totals at each street, and therefore compare bet sizes to the pot size.
I know we have holdem_hand_player_detail.val_f_raise_made_pct (=% of pot raised on flop), which is pretty-much what I want, but I can't help but feel that the total betting on each street would be useful.
