delayed bet limped pot and W$SD bet,check,bet

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

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

delayed bet limped pot and W$SD bet,check,bet

Postby Pele08 » Wed Jul 04, 2018 8:37 am

Been trying with these two stats for quite some time but cant figure out how to make them. Dont have a work in progress for them since I have no clue how make these

Both are for HU tables

1. Delayed bet in limped pot

SB limp preflop
BB check preflop
Flop goes check/check
BB check Turn
SB bet Turn

2. WSD when cbet/bet flop, checkback turn, bet river (if its possible to make a stat that is both for limped and raise preflop would be great or is it more easy to just make 2 diffrent ones?)

SB raise or limp preflop
BB calls or check preflop
SB cbet/bets flop
BB calls
Turn goes check/check
BB check river
SB bet river
BB calls river(doesnt matter if the stat include when BB CR river and gets called)
SB win showdown

Would really be thankful for some help with these.
Pele08
 
Posts: 7
Joined: Sun Sep 28, 2014 8:06 pm

Re: delayed bet limped pot and W$SD bet,check,bet

Postby WhiteRider » Thu Jul 05, 2018 2:47 am

1.
SB limp preflop and BB check preflop = cash_hand_player_statistics.position = 9 and lookup_actions_p.action = 'C'
Flop goes check/check = lookup_actions_f.action = 'X'
BB check Turn and SB bet Turn : actions = cash_hand_player_statistics.flg_t_bet ; opportunities = cash_hand_player_statistics.flg_t_open_opp

2. If you don't care whether it's raised or not preflop you just don't test for that.
SB raise or limp preflop - doesn't need any expression
BB calls or check preflop - doesn't need any expression
SB cbet/bets flop and BB calls = cash_hand_player_statistics.position = 9 and lookup_actions_f.action = 'C'
Turn goes check/check = lookup_actions_t.action = 'X'
BB check river and SB bet river = cash_hand_player_statistics.flg_r_bet
BB calls river(doesnt matter if the stat include when BB CR river and gets called) = cash_hand_player_statistics.flg_showdown
SB win showdown = cash_hand_player_statistics.flg_won_hand

If you play tournaments replace "cash_" with "tourney_" throughout.
WhiteRider
Moderator
 
Posts: 53961
Joined: Sat Jan 19, 2008 7:06 pm
Location: UK

Re: delayed bet limped pot and W$SD bet,check,bet

Postby Pele08 » Wed Jul 18, 2018 3:05 am

Second stat: W$SD bet,check,bet

I rarely get any opportunities for this stat. Even in big sample and its a really common line to take in HU.

Made it like this:

(cnt_BXB_won / cnt_BXB_wtsd) * 100

sum(if[cash_hand_player_statistics.position = 9
AND lookup_actions_f.action = 'C'
AND lookup_actions_t.action = 'X'
AND cash_hand_player_statistics.flg_r_bet
AND cash_hand_player_statistics.flg_showdown
AND cash_hand_player_statistics.flg_won_hand, 1, 0])

sum(if[cash_hand_player_statistics.position = 9
AND lookup_actions_f.action = 'C'
AND lookup_actions_t.action = 'X'
AND cash_hand_player_statistics.flg_r_bet
AND cash_hand_player_statistics.flg_showdown, 1, 0])


I also made an extra stat just look how often they did take the line bet,check,bet, Is it correct? or is it wrong to use flg_r_open_oop?

(cnt_BXB / cnt_BXB_opp) * 100

sum(if[cash_hand_player_statistics.position = 9
AND lookup_actions_f.action = 'C'
AND lookup_actions_t.action = 'X'
AND cash_hand_player_statistics.flg_r_bet, 1, 0])

sum(if[cash_hand_player_statistics.position = 9
AND lookup_actions_f.action = 'C'
AND lookup_actions_t.action = 'X'
AND cash_hand_player_statistics.flg_r_open_opp, 1, 0])

Because when I look at the stat it doesnt really make sense:

Session samplesize 2000ish hands

Opponents stats:
Cbet Turn 58(142/245) So 103 times he goes cbet/check
BetxBet 50(3/6)

My Stats:
Probe River 39(40/103)

So it appers to me that he should have hade 63 opportunites (this player don't limp preflop)
Pele08
 
Posts: 7
Joined: Sun Sep 28, 2014 8:06 pm

Re: delayed bet limped pot and W$SD bet,check,bet

Postby Flag_Hippo » Wed Jul 18, 2018 5:03 am

Pele08 wrote:lookup_actions_f.action = 'C'

For both stats you mention a bet/check/bet line but you are testing for a call on the flop in each of them so you would need to use lookup_actions_f.action = 'B' instead.
Flag_Hippo
Moderator
 
Posts: 14440
Joined: Tue Jan 31, 2012 7:50 am


Return to Custom Stats, Reports and HUD Profiles

Who is online

Users browsing this forum: Google [Bot], Ventilatorrr and 23 guests

cron
highfalutin