i want to know how often an opponent donks and then folds to my raise on the flop (turn , river).
i have a custom donk/f stat here, but it doesnt seem to do right.
i just checked my last month and it seems that i donked 30 times, got raised 3 times and then foldet 1 time to the raise. so my donk/f stat should be 33% (1/3).
the stat i use shows me 4,54% (1/22)- guess 22 is the amount of my donks in single raised pots overall.
my stat is: (which sould be right)
- Code: Select all
(cnt_f_donk_fold / cnt_f_donk_fold_opp) * 100
so, "cnt_f_donk_fold" should be ok, but "cnt_f_donk_fold_opp" is not ok.
can you please look over the opp column and tell me what i have to change that it works like i want it to?
here is the opp column:
- Code: Select all
sum(if[ holdem_hand_player_statistics.flg_p_face_raise AND holdem_hand_player_detail.flg_f_open_opp and flg_f_face_raise AND NOT holdem_hand_player_statistics.flg_f_cbet_opp
AND (holdem_hand_player_detail.val_p_raise_aggressor_pos < holdem_hand_player_statistics.position AND (holdem_hand_player_detail.val_p_raise_aggressor_pos != (holdem_hand_summary.cnt_players-1))) , 1 , 0])
thanks a lot in advance :)
