3Bet Preflop vs Hero

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

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

Re: 3Bet Preflop vs Hero

Postby kraada » Fri Nov 07, 2014 8:50 am

The comment bruzi quotes above on this page gives you the columns you need to build the stat you want.
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: 3Bet Preflop vs Hero

Postby ZeDawning » Fri Nov 07, 2014 9:01 am

Could you please have a look at this?

cnt_p_face_3bet_vs_hero / cnt_p_face_3bet_opp_vs_hero * 100

cnt_p_face_3bet_vs_hero
sum(if[cash_hand_player_statistics.flg_p_3bet_def and exists
(select 1
from cash_hand_player_statistics hero
where hero.id_hand = cash_hand_player_statistics.id_hand
and hero.flg_hero
and hero.flg_p_3bet), 1, 0])

cnt_p_face_3bet_opp_vs_hero
sum(if[cash_hand_player_statistics.flg_p_3bet_def_opp and exists
(select 1
from cash_hand_player_statistics hero
where hero.id_hand = cash_hand_player_statistics.id_hand
and hero.flg_hero
and hero.flg_p_3bet), 1, 0])
ZeDawning
 
Posts: 47
Joined: Thu Apr 10, 2014 4:07 am

Re: 3Bet Preflop vs Hero

Postby kraada » Fri Nov 07, 2014 10:36 am

Your naming is a little odd - to make it how often someone folds when hero 3bets you want to replace cash_hand_player_statistics.flg_p_3bet_def in the first column with cash_hand_player_statistics.enum_p_3bet_action = 'F' - the column names don't really matter they just threw me for a moment.
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: 3Bet Preflop vs Hero

Postby ZeDawning » Fri Nov 07, 2014 4:09 pm

Im kinda confused. I want to know how much each villain has been 3bet by me.

So it should be something like:
No. of times Hero 3bets villain / No. of times Hero had opportunity to 3bet villain
right?

So the 'fold' action you suggested isnt needed right?

Though when i tried out the code I entered, it says not valid SQL func.

Thoughts?
ZeDawning
 
Posts: 47
Joined: Thu Apr 10, 2014 4:07 am

Re: 3Bet Preflop vs Hero

Postby kraada » Fri Nov 07, 2014 4:33 pm

That's not what you've built (and not what I thought you were asking for). What you've built is how often someone folds when hero 3bets them. Before I go into it further: Do you want to restrict it to times the villain made the first raise, or not?
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: 3Bet Preflop vs Hero

Postby ZeDawning » Fri Nov 07, 2014 5:48 pm

Yep, when the villain made first raise.
ZeDawning
 
Posts: 47
Joined: Thu Apr 10, 2014 4:07 am

Re: 3Bet Preflop vs Hero

Postby kraada » Fri Nov 07, 2014 5:50 pm

Numerator: cnt_p_first_raise_hero_3bet_def_opp
sum(if[cash_hand_player_statistics.flg_p_3bet_def_opp and cash_hand_player_statistics.flg_p_first_raise and exists
(select 1
from cash_hand_player_statistics hero
where hero.id_hand = cash_hand_player_statistics.id_hand
and hero.flg_hero
and hero.flg_p_3bet), 1, 0])

Denominator: cnt_p_first_raise_hero_3bet_opp
sum(if[cash_hand_player_statistics.flg_p_first_raise and exists
(select 1
from cash_hand_player_statistics hero
where hero.id_hand = cash_hand_player_statistics.id_hand
and hero.flg_hero
and hero.flg_p_3bet_opp), 1, 0])
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: 3Bet Preflop vs Hero

Postby ZeDawning » Sat Nov 08, 2014 6:43 am

Ty Kraada <3

Btw, is there some kind of PT4 guide towards coding?
ZeDawning
 
Posts: 47
Joined: Thu Apr 10, 2014 4:07 am

Re: 3Bet Preflop vs Hero

Postby WhiteRider » Sat Nov 08, 2014 6:50 am

We don't include vs Hero stats in our guides because we don't recommend them, but the Tutorial: Custom Reports and Statistics has quite a few examples of how to make stats. It was written for PT3 but the principals still apply in PT4.
WhiteRider
Moderator
 
Posts: 54017
Joined: Sat Jan 19, 2008 7:06 pm
Location: UK

Re: 3Bet Preflop vs Hero

Postby ZeDawning » Sun Nov 09, 2014 10:50 pm

Not sure if this is possible, but can I build a stat to my hud to see how much villain perceives my overall 3bet in his HUD (not only vs him)?
ZeDawning
 
Posts: 47
Joined: Thu Apr 10, 2014 4:07 am

PreviousNext

Return to Custom Stats, Reports and HUD Profiles

Who is online

Users browsing this forum: No registered users and 37 guests

cron