Discuss how to create custom stats, reports and HUD profiles and share your creations.
Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators
by Mike_ » Fri Mar 12, 2021 6:51 am
Hi, I’ve been creating a few stats using val_r_bet_made_pct for my mtts.
How can I incorporate effective stack sizes ie when the pot is 5000 and player1 jams 10000 and player2 has 4000 behind ?
Thanks
-
Mike_
-
- Posts: 193
- Joined: Tue Nov 04, 2008 1:58 pm
by Flag_Hippo » Sat Mar 13, 2021 5:54 am
You can compare the size of the river bet made (amt_r_bet_made) to the players effective stack on the river (amt_r_effective_stack).
-
Flag_Hippo
- Moderator
-
- Posts: 17055
- Joined: Tue Jan 31, 2012 7:50 am
by Mike_ » Sun Oct 03, 2021 11:25 am
I fear this may be above my competency level :oops:
say i have a column for example :
sum(if[ tourney_hand_player_statistics.flg_f_cbet, tourney_hand_player_statistics.val_f_bet_made_pct, 0])
How can I adjust it so that it will allow for a cbet into a shorter stack ?
-
Mike_
-
- Posts: 193
- Joined: Tue Nov 04, 2008 1:58 pm
by Mike_ » Sun Oct 03, 2021 11:55 am
A cbet all in , that is
-
Mike_
-
- Posts: 193
- Joined: Tue Nov 04, 2008 1:58 pm
by Flag_Hippo » Sun Oct 03, 2021 2:03 pm
That column will count those types of hands so I don't understand your question.
-
Flag_Hippo
- Moderator
-
- Posts: 17055
- Joined: Tue Jan 31, 2012 7:50 am
by Mike_ » Sun Oct 03, 2021 5:09 pm
Where the c better is jamming the larger stack , so he’s only betting the effective stack.
tourney_hand_player_statistics.val_f_bet_made_pct Will just be the percentage of his bet
-
Mike_
-
- Posts: 193
- Joined: Tue Nov 04, 2008 1:58 pm
by Flag_Hippo » Mon Oct 04, 2021 12:35 pm
- Code: Select all
sum(if[tourney_hand_player_statistics.flg_f_cbet and (tourney_hand_player_statistics.amt_f_bet_made > tourney_hand_player_statistics.amt_f_effective_stack), (tourney_hand_player_statistics.amt_f_effective_stack / tourney_hand_summary.amt_pot_f) * 100, if[ tourney_hand_player_statistics.flg_f_cbet and (tourney_hand_player_statistics.amt_f_bet_made <= tourney_hand_player_statistics.amt_f_effective_stack), tourney_hand_player_statistics.val_f_bet_made_pct, 0 ] ])
-
Flag_Hippo
- Moderator
-
- Posts: 17055
- Joined: Tue Jan 31, 2012 7:50 am
by Mike_ » Mon Oct 04, 2021 12:50 pm
thanks
-
Mike_
-
- Posts: 193
- Joined: Tue Nov 04, 2008 1:58 pm
by Mike_ » Sat Apr 09, 2022 4:01 pm
Thanks for your advice above.
I have some statistics in the format of sum(case when tourney_hand_player_statistics.flg_f_cbet
How can I amend those so that they will cater for effective stacks ?
-
Mike_
-
- Posts: 193
- Joined: Tue Nov 04, 2008 1:58 pm
by Flag_Hippo » Sun Apr 10, 2022 7:41 am
This post shows how to create a custom statistic by effective stack size.
-
Flag_Hippo
- Moderator
-
- Posts: 17055
- Joined: Tue Jan 31, 2012 7:50 am
Return to Custom Stats, Reports and HUD Profiles
Users browsing this forum: No registered users and 5 guests