by WhiteRider » Sun Feb 15, 2009 12:02 pm
There are a set of database fields like "holdem_hand_player_detail.val_f_bet_made_pct" which show the bet size as a percentage of the pot.
IF you want to find out how much you bet for a c-bet for instance you need to do something like:
if[holdem_hand_player_statistics.flg_f_cbet, holdem_hand_player_detail.val_f_bet_made_pct, 0]
(if the player c-bet, use the pot_bet%, otherwise use 0)
e.g. if you want to find out the average c-bet size, create a column to sum the above, and another to count c-bets, and divide one by the other.