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 Umut » Mon Jul 04, 2016 4:58 pm

Hi, can i buy a few of those vs hero stats? If anyone already has made some, would be great if he can conntact me. Im really bad in it stuff ;(
Umut
 
Posts: 23
Joined: Thu Jun 24, 2010 7:48 am

Re: 3Bet Preflop vs Hero

Postby 4StarGen » Mon Jul 04, 2016 6:52 pm

ProPokerHUDS has made them and they are also cacheable. I suggest you to take a look at their site
4StarGen
 
Posts: 929
Joined: Sat Mar 08, 2014 6:58 am

Re: 3Bet Preflop vs Hero

Postby Umut » Wed Jul 06, 2016 6:13 pm

got it, but sadly i cant use them in my hud as a stat. Just need like 3 stats. Fold to resteal, fold to 4bet after resteal and resteal. Can pay skrill or stars.
Umut
 
Posts: 23
Joined: Thu Jun 24, 2010 7:48 am

Re: 3Bet Preflop vs Hero

Postby sherrie524 » Wed Nov 30, 2016 10:32 pm

Can someone help me find out how often a particular villain attempts to steal a specific hero's blinds so that I can compare it to that villain's steal attempts vs the general population? I'm not very good at this. ty in advance
sherrie524
 
Posts: 1
Joined: Thu Nov 05, 2015 6:12 pm

Re: 3Bet Preflop vs Hero

Postby 4StarGen » Thu Dec 01, 2016 7:01 am

probably you only have to change this hero.flg_hero into id_player = the id of the player you actually want. I'm not at home so I cannot check but it should work. GL
4StarGen
 
Posts: 929
Joined: Sat Mar 08, 2014 6:58 am

Re: 3Bet Preflop vs Hero

Postby SirDehi » Sun Jan 27, 2019 10:59 am

Code: Select all
sum(if[cash_hand_player_statistics.flg_p_3bet 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_first_raise), 1, 0])


I recently changed my username on a poker site. I have aliased my old username to my new one in PT4.
But now, this vs Hero stat actually corresponds to "vs Old Username + vs New userName".
But my opponents can't possibly know about the new name and link it to my old one.

How could I get the "vs Hero" stat to actually be "vs currentUserName"?

Cheers
SirDehi
 
Posts: 78
Joined: Sun Jun 19, 2016 12:00 pm

Re: 3Bet Preflop vs Hero

Postby Flag_Hippo » Sun Jan 27, 2019 2:45 pm

I don't know about editing that query but you can try this instead:

Code: Select all
sum(CASE WHEN cash_hand_player_statistics.flg_p_3bet and cash_hand_player_statistics.id_hand in (SELECT chps.id_hand from cash_hand_player_statistics chps, player p where chps.id_player = p.id_player and p.player_name = 'SirDehi' and chps.flg_p_first_raise) THEN 1 ELSE 0 END)
Flag_Hippo
Moderator
 
Posts: 14503
Joined: Tue Jan 31, 2012 7:50 am

Re: 3Bet Preflop vs Hero

Postby Antohitch » Tue May 28, 2019 1:06 am

Hi, I was trying to make stat which shows how villain perceives me (like a mirror) and I heard it should be made in similar way as vshero stats. So vshero stats consist of two parts - 1st is defining villain's action and 2nd is subset where is defined hero's action. So in mirror stat it should be the opposite, 1st is defining action hero made and 2nd is subset of villain's action, right? But what field i should use in cause of defining subset with villain's action? (if it's convenient please use code below as an example). Thank you in advance.

(fold vs cbet vs hero and opportunity to fold vs cbet vs hero columns)

Code: Select all
sum(if[tourney_hand_player_statistics.cnt_players = 2
   and  tourney_hand_player_statistics.position = 8
   and tourney_hand_player_statistics.flg_f_cbet_def_opp
   and tourney_hand_player_statistics.enum_f_cbet_action='F'
   and exists
  (select 1
   from tourney_hand_player_statistics hero
   where hero.id_hand = tourney_hand_player_statistics.id_hand
   and hero.position = 9
   and tourney_hand_player_statistics.cnt_players = 2
   and hero.flg_hero
   and hero.flg_f_cbet_opp
   and hero.flg_f_cbet ), 1, 0])


Code: Select all
sum(if[tourney_hand_player_statistics.cnt_players = 2
   and  tourney_hand_player_statistics.position = 8
   and tourney_hand_player_statistics.flg_f_cbet_def_opp
   and exists
  (select 1
   from tourney_hand_player_statistics hero
   where hero.id_hand = tourney_hand_player_statistics.id_hand
   and hero.position = 9
   and tourney_hand_player_statistics.cnt_players = 2
   and hero.flg_hero
   and hero.flg_f_cbet_opp
   and hero.flg_f_cbet ), 1, 0])
Antohitch
 
Posts: 11
Joined: Mon Nov 12, 2018 8:06 am

Re: 3Bet Preflop vs Hero

Postby Antohitch » Sun Jun 02, 2019 11:09 pm

Come on guys, nobody knows?
Antohitch
 
Posts: 11
Joined: Mon Nov 12, 2018 8:06 am

Re: 3Bet Preflop vs Hero

Postby dave2085 » Sun Mar 17, 2024 9:32 am

Hi guys,

I want to create a custom stat;

chipEV BBvSB(Hero)

Why is this not working?

gives me SQL Error;

Code: Select all
sum(if[tourney_hand_summary.cnt_players = 3
AND tourney_hand_summary.str_actors_p LIKE '9%'
AND tourney_hand_player_statistics.position = 8,
tourney_hand_player_statistics.amt_expected_won and exists
(select 1
from tourney_hand_player_statistics hero
where hero.id_hand = tourney_hand_player_statistics.id_hand
and hero.flg_hero and hero.flg_p_open_opp and hero.position = 9), 0])
dave2085
 
Posts: 186
Joined: Mon Jun 02, 2008 10:41 am

PreviousNext

Return to Custom Stats, Reports and HUD Profiles

Who is online

Users browsing this forum: No registered users and 12 guests

cron
highfalutin