I coded a stat to retrieve Ignition raked pots and now I'd like to find the cbet size, not any other bet, only the cbet size.
amt_f_bet has any bets in it, so how can I filter it out?
Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators
cash_hand_player_statistics.amt_bet_f
cash_hand_player_statistics.amt_f_bet_made
cash_hand_player_statistics.flg_f_cbet
sum(if[cash_hand_player_statistics.flg_f_cbet and (cash_hand_player_statistics.amt_f_bet_made / (cash_hand_summary.amt_pot_f * .95)) = 0.5), 1, 0])
(cash_hand_summary.amt_pot_f * .95)
CASE
WHEN cash_hand_summary.cnt_players = 2 AND cash_hand_summary.amt_pot_f < 20
THEN 0.95 * cash_hand_summary.amt_pot_f
WHEN cash_hand_summary.cnt_players = 2 AND cash_hand_summary.amt_pot_f >= 20
THEN cash_hand_summary.amt_pot_f - 1
WHEN cash_hand_summary.cnt_players = 3 AND cash_hand_summary.amt_pot_f < 40
THEN 0.95 * cash_hand_summary.amt_pot_f
WHEN cash_hand_summary.cnt_players = 3 AND cash_hand_summary.amt_pot_f >= 40
THEN cash_hand_summary.amt_pot_f - 2
WHEN cash_hand_summary.cnt_players = 4 AND cash_hand_summary.amt_pot_f < 60
THEN 0.95 * cash_hand_summary.amt_pot_f
WHEN cash_hand_summary.cnt_players = 4 AND cash_hand_summary.amt_pot_f >= 60
THEN cash_hand_summary.amt_pot_f - 3
WHEN cash_hand_summary.cnt_players = 5 AND cash_hand_summary.amt_pot_f < 60
THEN 0.95 * cash_hand_summary.amt_pot_f
WHEN cash_hand_summary.cnt_players = 5 AND cash_hand_summary.amt_pot_f >= 60
THEN cash_hand_summary.amt_pot_f - 3
WHEN cash_hand_summary.cnt_players = 6 AND cash_hand_summary.amt_pot_f < 80
THEN 0.95 * cash_hand_summary.amt_pot_f
WHEN cash_hand_summary.cnt_players = 5 AND cash_hand_summary.amt_pot_f >= 80
THEN cash_hand_summary.amt_pot_f - 4 END
(cash_hand_player_statistics.flg_f_cbet and cash_hand_summary.cnt_players = 2 and ((cash_hand_summary.amt_pot_f < 20 and (cash_hand_player_statistics.amt_f_bet_made / (cash_hand_summary.amt_pot_f * .95)) between 1 and 0) or (cash_hand_summary.amt_pot_f >= 20 and (cash_hand_player_statistics.amt_f_bet_made / (cash_hand_summary.amt_pot_f - 1)) between 1 and 0)))
cash_hand_player_statistics.flg_f_cbet and cash_hand_summary.cnt_players = 2 and
Return to Custom Stats, Reports and HUD Profiles
Users browsing this forum: No registered users and 60 guests