HUD - Heads_up / MW -Flop

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

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

HUD - Heads_up / MW -Flop

Postby danwan » Mon Apr 17, 2023 2:13 am

This is the definition for the stat CBet Flop - in SR-pots.
((cnt_f_cbet - cnt_f_cbet_3bet_pot) / (cnt_f_cbet_opp - cnt_f_cbet_opp_3bet_pot)) * 100

How do I do to make the stat showing only HU-pots? (2 players seeing the flop)
How do I do to make the stat showing only MW-pots? (3 players+ seeing the flop)

Is it also possible to make the stat only showing IP or oop? Can you give me an example of how that looks like?
danwan
 
Posts: 6
Joined: Fri Apr 20, 2012 4:57 pm

Re: HUD - Heads_up / MW -Flop

Postby Flag_Hippo » Mon Apr 17, 2023 11:07 am

danwan wrote:How do I do to make the stat showing only HU-pots? (2 players seeing the flop)
How do I do to make the stat showing only MW-pots? (3 players+ seeing the flop)

The number of players seeing the flop is cash_hand_summary.cnt_players_f so you would need to add that information to duplicates of the existing column expressions to specify the number of players. See this guide for the basics on custom statistics creation and this post has an example of making a new version of an existing statistic by duplicating it and changing the copy.
danwan wrote:Is it also possible to make the stat only showing IP or oop? Can you give me an example of how that looks like?

If a player is in position on the flop (last to act) then cash_hand_player_statistics.flg_f_has_position will be true. If you want to test if that isn't true then you use the same but just with a NOT in front of it.
Flag_Hippo
Moderator
 
Posts: 17048
Joined: Tue Jan 31, 2012 7:50 am

Re: HUD - Heads_up / MW -Flop

Postby danwan » Wed Apr 19, 2023 2:35 am

Hi.
Now I have tried but I get a little confused.
Can you please help me ?

The definition (value expression) for "CBet Flop in non-3Bet+ Pot HU" will be:

((cnt_f_cbet_hu - cnt_f_cbet_3bet_pot_hu) / (cnt_f_cbet_hu_opp - cnt_f_cbet_hu_3bet_pot_opp)) * 100

Right?

Can you please help me with the columnexpressions for these value expressions?

cnt_f_cbet_hu
cnt_f_cbet_3bet_pot_hu
cnt_f_cbet_hu_opp
cnt_f_cbet_hu_3bet_pot_opp


It´s a bit complicated to get everything right.

Thanks.

/Danwan
danwan
 
Posts: 6
Joined: Fri Apr 20, 2012 4:57 pm

Re: HUD - Heads_up / MW -Flop

Postby Flag_Hippo » Wed Apr 19, 2023 5:14 am

danwan wrote:The definition (value expression) for "CBet Flop in non-3Bet+ Pot HU" will be:

((cnt_f_cbet_hu - cnt_f_cbet_3bet_pot_hu) / (cnt_f_cbet_hu_opp - cnt_f_cbet_hu_3bet_pot_opp)) * 100

Right?

Yes that would work as long as the column expressions are changed also.
danwan wrote:Can you please help me with the columnexpressions for these value expressions?

cnt_f_cbet_hu
cnt_f_cbet_3bet_pot_hu
cnt_f_cbet_hu_opp
cnt_f_cbet_hu_3bet_pot_opp

The expression for cnt_f_cbet is:

sum(if[cash_hand_player_statistics.flg_f_cbet, 1, 0])

to convert that to a column that only counts hands where two players saw the flop you need to add:

cash_hand_summary.cnt_players_f = 2

which would look like this for cnt_f_cbet_hu:

sum(if[cash_hand_player_statistics.flg_f_cbet AND cash_hand_summary.cnt_players_f = 2, 1, 0])

Add the same to the other 3 columns to complete your new stat.
Flag_Hippo
Moderator
 
Posts: 17048
Joined: Tue Jan 31, 2012 7:50 am

Re: HUD - Heads_up / MW -Flop

Postby danwan » Wed Apr 19, 2023 7:24 am

Thanks.

What have I made wrong in this expression?

sum(if[cash_hand_player_statistics.flg_f_cbet AND cash_hand_player_statistics.flg_p_3bet AND cash_hand_summary.cnt_players_f = 2, 1, 0])
Attachments
pthud.jpg
(50.36 KiB) Downloaded 1418 times
danwan
 
Posts: 6
Joined: Fri Apr 20, 2012 4:57 pm

Re: HUD - Heads_up / MW -Flop

Postby danwan » Wed Apr 19, 2023 7:42 am

Answering myself: Think I had an extra "space" in the expression. Now it works.
sum(if[cash_hand_player_statistics.flg_f_cbet AND cash_hand_player_statistics.flg_p_3bet AND cash_hand_summary.cnt_players_f = 2, 1, 0])
danwan
 
Posts: 6
Joined: Fri Apr 20, 2012 4:57 pm


Return to Custom Stats, Reports and HUD Profiles

Who is online

Users browsing this forum: No registered users and 9 guests