Hello,
i'am trying to create some custom stats for 3bet Pots and have to small problems.
For the AF and the AFq i need the stats check, fold, call, raise, bet in 3bet pots.
There is a difference between the fold,check, bet and call and raise.
Example:
cnt_f_fold: sum(if[holdem_hand_player_statistics.flg_f_fold, 1, 0])
cnt_f_check:sum(if[holdem_hand_player_statistics.flg_f_check, 1, 0])
cnt_f_call:sum(holdem_hand_player_statistics.cnt_f_call)
cnt_f_bet:sum(if[holdem_hand_player_statistics.flg_f_bet, 1, 0])
cnt_f_raise:sum(holdem_hand_player_statistics.cnt_f_raise)
For fold, check and call i create the 3betstat as followed and it is working.
3bp_cnt_f_bet: sum(if[holdem_hand_player_statistics.flg_f_bet and (holdem_hand_player_statistics.flg_p_3bet or holdem_hand_player_statistics.flg_p_3bet_def_opp) AND NOT (holdem_hand_player_statistics.flg_p_4bet or holdem_hand_player_statistics.flg_p_4bet_def_opp), 1, 0])
A similar stat for call and raise like
3bp_cnt_f_call: sum(holdem_hand_player_statistics.cnt_f_call) and (holdem_hand_player_statistics.flg_p_3bet or holdem_hand_player_statistics.flg_p_3bet_def_opp) AND NOT (holdem_hand_player_statistics.flg_p_4bet or holdem_hand_player_statistics.flg_p_4bet_def_opp)
isn't working. Could you tell me my mistake in case?
I also wanted to create stats for a donk bet in 3bet pots.
donk flop = cnt_f_donk/cnt_f_donk_opp with
cnt_f_donk: sum(if[holdem_hand_player_statistics.flg_p_face_raise AND NOT(holdem_hand_player_statistics.flg_p_3bet OR holdem_hand_player_statistics.flg_p_4bet) AND holdem_hand_player_statistics.flg_f_bet AND NOT(holdem_hand_player_statistics.flg_f_cbet_opp) AND
((holdem_hand_summary.cnt_players > 2 and holdem_hand_player_detail.val_p_raise_aggressor_pos < holdem_hand_player_statistics.position) or (holdem_hand_summary.cnt_players = 2 and holdem_hand_player_statistics.flg_blind_b)),1,0])
cnt_f_donk_opp:
sum(if[ holdem_hand_player_statistics.flg_p_face_raise AND NOT(holdem_hand_player_statistics.flg_p_3bet OR holdem_hand_player_statistics.flg_p_4bet) AND (holdem_hand_player_detail.flg_f_open_opp) AND NOT(holdem_hand_player_statistics.flg_f_cbet_opp) AND ((holdem_hand_summary.cnt_players > 2 and holdem_hand_player_detail.val_p_raise_aggressor_pos < holdem_hand_player_statistics.position) or (holdem_hand_summary.cnt_players = 2 and holdem_hand_player_statistics.flg_blind_b)) , 1 , 0 ])
In this stat i don't know, there i have to add the constraint " and (holdem_hand_player_statistics.flg_p_3bet or holdem_hand_player_statistics.flg_p_3bet_def_opp) AND NOT (holdem_hand_player_statistics.flg_p_4bet or holdem_hand_player_statistics.flg_p_4bet_def_opp)" to create the stat only for 3betpots.
