Donkbet/fold

Discuss how to create custom stats, reports and HUD profiles and share your creations.

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

Donkbet/fold

Postby gennysennin » Wed Dec 12, 2012 4:04 pm

How can I create a stat that tells when a player Donks and fold if raised or Donks and calls or Donks and 3bets?
gennysennin
 
Posts: 146
Joined: Sat Dec 08, 2012 5:31 am

Re: Donkbet/fold

Postby Stratocaster » Wed Dec 12, 2012 6:01 pm

There is a stat for Dbet/fold >>>Fold to Raise After F/T/R Donk flop version looks like this:
Code: Select all
(cnt_f_donk_fold / cnt_f_donk_face_raise) * 100
Now you have to made another 2 columns (numerators) for Dbet/Call and Dbet/Raise. Just duplicate the cnt_f_donk_fold column, change the name (cnt_f_donk_call and cnt_f_donk_raise will be good) and in expression:
Code: Select all
sum(if[cash_hand_player_statistics.flg_p_face_raise AND NOT(cash_hand_player_statistics.flg_p_3bet OR cash_hand_player_statistics.flg_p_4bet) AND lookup_actions_f.action = 'BF' AND
((cash_hand_summary.cnt_players > 2 AND cash_hand_player_statistics.val_p_raise_aggressor_pos < cash_hand_player_statistics.position) OR (cash_hand_summary.cnt_players = 2 AND cash_hand_player_statistics.flg_blind_b)),1,0])
change the BF (Bet/Fold) to BC for donkbet/call and to BR for donkbet/3bet. Then create new stat (or duplicate the donk/fold stat and change name) and change the value expression to: (cnt_f_donk_call / cnt_f_donk_face_raise) * 100 for Db/C stat and (cnt_f_donk_raise / cnt_f_donk_face_raise) * 100 for Db/3b.

GL.
Stratocaster
 
Posts: 41
Joined: Fri Mar 23, 2012 8:43 pm

Re: Donkbet/fold

Postby gennysennin » Thu Dec 13, 2012 4:01 am

I think I've done it, but how can I check if they works good? I take the hands of a random player and put the 3 stats in HUD, but it tells that his stats are:
Donbet/fold 17% (2/12)
Donkbet/call 50% (6/12)
Donbet/3bet 25% (3/12), but 6+3+2=11, 11/12 and the other what can he be? It exists an other Donbet/...?
gennysennin
 
Posts: 146
Joined: Sat Dec 08, 2012 5:31 am

Re: Donkbet/fold

Postby gennysennin » Thu Dec 13, 2012 9:08 am

Siccome devo creare le stats che riguardano donkbet/fold, donkbet/call e donkbet/raise volevo chiedere un paio di cose.
In this example increase donk/call, donk/fold or both?
Hero: donkbet
Oppo1: call
Oppo2: raise
Hero: call
Oppo1: 3bet
2 folds.
gennysennin
 
Posts: 146
Joined: Sat Dec 08, 2012 5:31 am

Re: Donkbet/fold

Postby Stratocaster » Thu Dec 13, 2012 9:14 am

gennysennin wrote:I think I've done it, but how can I check if they works good? I take the hands of a random player and put the 3 stats in HUD, but it tells that his stats are:
Donbet/fold 17% (2/12)
Donkbet/call 50% (6/12)
Donbet/3bet 25% (3/12), but 6+3+2=11, 11/12 and the other what can he be? It exists an other Donbet/...?

Yes the donkbet that is all in, so you cannot face raise after it and ofc then make fold/call/3bet. To fix this you have to make some changes in denominator column cnt_f_donk_face_raise. We need to exclude hands were player goes AI making donkbet, so the number of opportunities will be reduce (in your example from 12 ---> 11). The problem is, I have no idea how to add that condition :oops: You have to w8 until some mod see this thread to get further help.
Stratocaster
 
Posts: 41
Joined: Fri Mar 23, 2012 8:43 pm

Re: Donkbet/fold

Postby kraada » Thu Dec 13, 2012 10:28 am

It should be as simple as making sure that in the opportunities column you're checking that you face a raise on the flop - there are a variety of ways to do it, the simplest is probably to check that cash_hand_player_statistics.flg_f_face_raise is true - if you face a raise you had to do something.
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: Donkbet/fold

Postby Stratocaster » Thu Dec 13, 2012 11:23 am

Damn I'm so stupid :oops: Ofc cnt_f_donk_face_raise doesn't counts hands where there was no raise vs donkbet and it was made with lookup_actions_f.action SIMILAR TO 'B_%'. Sry for this mistake, the problem is not the dominator and donkbet AI but numerator in Donkbet/3bet stat. I told you to use BR (Bet/Raise) and that looks ok, but after 3bet we can face 4bet so the action is back to use and we can fold, call or raise again. To fix this in cnt_f_donk_raise column change lookup_actions_f.action = 'BR' to lookup_actions_f.action LIKE 'BR%'.
Stratocaster
 
Posts: 41
Joined: Fri Mar 23, 2012 8:43 pm

Re: Donkbet/fold

Postby gennysennin » Thu Dec 13, 2012 12:30 pm

Boh, I changed lookup_actions_f.action = 'BR' with lookup_actions_f.action LIKE 'BR%', but there are always 12 hands with 6, 3, 2. Must I do something else?
gennysennin
 
Posts: 146
Joined: Sat Dec 08, 2012 5:31 am

Re: Donkbet/fold

Postby kraada » Thu Dec 13, 2012 1:16 pm

Is Bet/call also = 'BC'? If not you'll want to change that to LIKE 'BC%' - you can do something after you bet and call also if there's another raise (as unlikely as that might be).
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: Donkbet/fold

Postby gennysennin » Thu Dec 13, 2012 1:50 pm

I faced LIKE 'BC%' for call and LIKE 'BR%' for raise, but the number are always them. Maybe is really the donkbet all in the problem? Because there's an hand where hero donkbets all in.
gennysennin
 
Posts: 146
Joined: Sat Dec 08, 2012 5:31 am

Next

Return to Custom Stats, Reports and HUD Profiles

Who is online

Users browsing this forum: No registered users and 30 guests

cron
highfalutin