Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators
caribbean93 wrote:Hi, I’m trying to create some statistics for my HUD. I’d like to know how to create a Heads-Up stat showing when the opponent donk bet and then continues betting on the next street — both cases: when they donk bet on the flop and bet again on the turn, and when they donk bet on the turn and bet again on the river.
caribbean93 wrote:I’d also like to divide the cases into limped pots and raised pots.
char_length(cash_hand_summary.str_aggressors_p) = 1char_length(cash_hand_summary.str_aggressors_p) >= 2caribbean93 wrote:Thanks for your help. I've built this for limped pot, heads-up, tournaments. Let me know if anything is incorrect please
sum(if[tourney_hand_player_statistics.flg_f_open_opp AND tourney_hand_player_statistics.flg_f_bet AND char_length(tourney_hand_summary.str_aggressors_p) = 1, 1, 0])caribbean93 wrote:I’d like to know how to create a Heads-Up stat showing when the opponent donk bet and then continues betting on the next street — both cases: when they donk bet on the flop and bet again on the turn
caribbean93 wrote:- Number of times villain donk Flop
- Number of times villain donk Flop and continue betting Turn
- Number of times villain donk Flop and Fold vs Raise
- Number of times villain donk Turn
- Number of times villain donk Turn and continue betting River
- Number of times villain donk Turn and Fold vs Raise
- Number of times villain donk River
- Number of times villain donk River and Fold vs Raise
caribbean93 wrote:I've made changes for the donk Flop LP column:
sum(if[ tourney_hand_player_statistics.flg_blind_b = TRUE AND tourney_hand_summary.cnt_players = 2 AND tourney_hand_player_statistics.flg_f_open_opp AND tourney_hand_player_statistics.flg_f_bet AND char_length(tourney_hand_summary.str_aggressors_p) = 1, 1, 0])
So the column of the donk opportunity wolud be:
sum(if[ tourney_hand_player_statistics.flg_blind_b = TRUE AND tourney_hand_summary.cnt_players = 2 AND tourney_hand_player_statistics.flg_f_open_opp AND char_length(tourney_hand_summary.str_aggressors_p) = 1, 1, 0])
caribbean93 wrote:They are not on Configure > Statistics. How Could I accede to them to make a copy and make my own stats?
caribbean93 wrote:I use "char_length(tourney_hand_summary.str_aggressors_p) = 1" because you said that was how to reference a limped pot.
caribbean93 wrote:How could I define it different then to indicate is a limped pot?
Donk Flop wrote:Percentage of the time that a player bet the flop out of position before the preflop raiser had a chance to act.
caribbean93 wrote:would this stats count what I try to build? That a player bets Flop first in a limped pot being the big blind in HU?
caribbean93 wrote:I've made this stat. A player no check in Turn and Bet in Turn after donk in Flop RP divided by the times it saw Turn. Does it make sense with what I'm trying to build "Number of times villain donk Flop and continue betting Turn in Raised Pots"?
sum(if[tourney_hand_player_statistics.flg_f_donk and tourney_hand_player_statistics.flg_t_bet and tourney_hand_summary.cnt_players = 2, 1, 0])sum(if[tourney_hand_player_statistics.flg_f_donk and tourney_hand_player_statistics.flg_t_open_opp and tourney_hand_summary.cnt_players = 2, 1, 0])Donk Turn wrote:Percentage of the time that a player bet the turn out of position before the flop aggressor had a chance to act.
Return to Custom Stats, Reports and HUD Profiles
Users browsing this forum: No registered users and 12 guests