Fold to 3Bet AI/NAI (SB vs BB, 3H)

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

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

Re: Fold to 3Bet AI/NAI (SB vs BB, 3H)

Postby Doninorrez » Fri Oct 20, 2017 2:00 pm

potamito wrote:The inequation goes outside the brackets and "amt_p_raise_made_2" refers to the last raise made by the active player in comparisson to "amt_p_raise_made" which refers to the first raise made by the active player, i think either expression will work for this situation but try it like this...


Sorry, I meant (tourney_hand_player_statistics.amt_p_raise_made_2 / tourney_blinds.amt_bb) <= X
OK!, so I understand that it should be used in 4Bet stats for the same situation BB vs SB, right?
Is the Value expression ok? the results are bit strange...

potamito wrote:
Code: Select all
(tourney_hand_player_statistics.amt_p_raise_made  / tourney_hand_player_statistics.amt_p_effective_stack) <= X


I dont understand this expression. What do you mean?

potamito wrote:I think i speak for every mod here we welcome active users, cheers.


Ty again! :)
Doninorrez
 
Posts: 44
Joined: Sat Jan 09, 2016 11:25 am

Re: Fold to 3Bet AI/NAI (SB vs BB, 3H)

Postby potamito » Fri Oct 20, 2017 3:00 pm

Sorry, I meant (tourney_hand_player_statistics.amt_p_raise_made_2 / tourney_blinds.amt_bb) <= X

Sorry, i meant this too :D :D :D but without the "_2" but again for the spot you´re trying to isolate i think both are ok.
potamito
 
Posts: 802
Joined: Wed Apr 21, 2010 4:20 pm

Re: Fold to 3Bet AI/NAI (SB vs BB, 3H)

Postby Doninorrez » Fri Oct 20, 2017 3:21 pm

potamito wrote:
Sorry, I meant (tourney_hand_player_statistics.amt_p_raise_made_2 / tourney_blinds.amt_bb) <= X

Sorry, i meant this too :D :D :D but without the "_2" but again for the spot you´re trying to isolate i think both are ok.


:D
Doninorrez
 
Posts: 44
Joined: Sat Jan 09, 2016 11:25 am

Re: Fold to 3Bet AI/NAI (SB vs BB, 3H)

Postby Doninorrez » Sat Oct 21, 2017 8:13 pm

Hi again! more question about some postflop custom stats. :(

Same situation, 3H and SB vs BB when BTN Folds.

I want to separate SB vs BB Cbets in Limped Pots and Open Raised Pots.
It seems that in LP I cant use flg_f_cbet command, flg_f_cbet is defined as "If the player cbet'd the flop, this is set to true, otherwise it is false. A cbet (continuation bet) on the flop is when someone that was the last to raise pre-flop then opened the pot on the flop." To isolate the Limped Pots preflop I have to use (tourney_hand_player_statistics.flg_p_limp) and (NOT tourney_hand_player_statistics.flg_p_face_raise)?

So (SB vs BB) CB F (LP):

(A0_SB_vs_BB_CB_F_LP / A0_SB_vs_BB_CB_F_LP_opp) *100

A0_SB_vs_BB_CB_F_LP =

sum(if[tourney_hand_summary.cnt_players = 3
AND tourney_hand_player_statistics.position = 9
AND tourney_hand_summary.str_actors_p NOT LIKE '0%'
AND tourney_hand_player_statistics.flg_p_limp
AND NOT tourney_hand_player_statistics.flg_p_face_raise
AND tourney_hand_player_statistics.flg_f_bet, 1, 0])

A0_SB_vs_BB_CB_F_LP_opp =

sum(if[tourney_hand_summary.cnt_players = 3
AND tourney_hand_player_statistics.position = 9
AND tourney_hand_summary.str_actors_p NOT LIKE '0%'
AND tourney_hand_player_statistics.flg_p_limp
AND NOT tourney_hand_player_statistics.flg_p_face_raise
AND tourney_hand_player_statistics.flg_f_open_opp, 1, 0])

Is this right? And what I have to do to get the same stat in Turn and River? (Cbet Flop, Cbet Turn and Cbet River separated in LP and ORP)

Ty. :|
Doninorrez
 
Posts: 44
Joined: Sat Jan 09, 2016 11:25 am

Re: Fold to 3Bet AI/NAI (SB vs BB, 3H)

Postby Doninorrez » Sat Oct 21, 2017 8:29 pm

I am realy confused with Postflop Stats :?

I also want the Cbet Stat for Open Raised pots in the same situation that I was talking about in the last reply, so I tried to built it as:

(SB vs BB) CB F (ORP):

(A0_SB_vs_BB_CB_F_MRP / A0_SB_vs_BB_CB_F_MRP_opp) *100

A0_SB_vs_BB_CB_F_MRP=

sum(if[tourney_hand_summary.cnt_players = 3
AND tourney_hand_player_statistics.position = 9
AND tourney_hand_summary.str_actors_p NOT LIKE '0%'
AND tourney_hand_player_statistics.flg_p_first_raise
AND (tourney_hand_player_statistics.amt_p_raise_made / tourney_blinds.amt_bb) <= 2.1
AND tourney_hand_player_statistics.flg_f_bet, 1, 0])

A0_SB_vs_BB_CB_F_MRP_opp=

sum(if[tourney_hand_summary.cnt_players = 3
AND tourney_hand_player_statistics.position = 9
AND tourney_hand_summary.str_actors_p NOT LIKE '0%'
AND tourney_hand_player_statistics.flg_p_first_raise
AND (tourney_hand_player_statistics.amt_p_raise_made / tourney_blinds.amt_bb) <= 2.1
AND tourney_hand_player_statistics.flg_f_open_opp, 1, 0])

This should be the same as this?

A0_SB_vs_BB_CB_F_MRP=

sum(if[tourney_hand_summary.cnt_players = 3
AND tourney_hand_player_statistics.position = 9
AND tourney_hand_summary.str_actors_p NOT LIKE '0%'
AND (tourney_hand_player_statistics.amt_p_raise_made / tourney_blinds.amt_bb) <= 2.1
AND tourney_hand_player_statistics.flg_f_cbet, 1, 0])


A0_SB_vs_BB_CB_F_MRP_opp=

sum(if[tourney_hand_summary.cnt_players = 3
AND tourney_hand_player_statistics.position = 9
AND tourney_hand_summary.str_actors_p NOT LIKE '0%'
AND (tourney_hand_player_statistics.amt_p_raise_made / tourney_blinds.amt_bb) <= 2.1
AND tourney_hand_player_statistics.flg_f_cbet_opp, 1, 0])

:?:
Doninorrez
 
Posts: 44
Joined: Sat Jan 09, 2016 11:25 am

Re: Fold to 3Bet AI/NAI (SB vs BB, 3H)

Postby potamito » Sat Oct 21, 2017 9:25 pm

To isolate spots from limped, minraised and 3bet pots you can use...

char_length(tourney_hand_summary.str_aggressors_p) = 1 (for limped pots)
char_length(tourney_hand_summary.str_aggressors_p) = 2 (for minraised pots)
char_length(tourney_hand_summary.str_aggressors_p) = 3 (for 3bet pots)

You can also play with the inequation like...

char_length(tourney_hand_summary.str_aggressors_p) >= 3 (for 3bet+ pots as there can or not be another reraises)
potamito
 
Posts: 802
Joined: Wed Apr 21, 2010 4:20 pm

Re: Fold to 3Bet AI/NAI (SB vs BB, 3H)

Postby Doninorrez » Sun Oct 22, 2017 5:53 am

potamito wrote:To isolate spots from limped, minraised and 3bet pots you can use...

char_length(tourney_hand_summary.str_aggressors_p) = 1 (for limped pots)
char_length(tourney_hand_summary.str_aggressors_p) = 2 (for minraised pots)
char_length(tourney_hand_summary.str_aggressors_p) = 3 (for 3bet pots)

You can also play with the inequation like...

char_length(tourney_hand_summary.str_aggressors_p) >= 3 (for 3bet+ pots as there can or not be another reraises)


Ty again Potamito! I will try it and post results soon again. ;)
Doninorrez
 
Posts: 44
Joined: Sat Jan 09, 2016 11:25 am

Re: Fold to 3Bet AI/NAI (SB vs BB, 3H)

Postby Doninorrez » Sun Oct 22, 2017 1:15 pm

Potamito, ¿podrías escribirme por privado por favor? he intentado contactar contigo pero no puedo mandar mensajes privados. :(

Gracias!
Doninorrez
 
Posts: 44
Joined: Sat Jan 09, 2016 11:25 am

Re: Fold to 3Bet AI/NAI (SB vs BB, 3H)

Postby potamito » Sun Oct 22, 2017 1:26 pm

PM sent
potamito
 
Posts: 802
Joined: Wed Apr 21, 2010 4:20 pm

Previous

Return to Custom Stats, Reports and HUD Profiles

Who is online

Users browsing this forum: No registered users and 27 guests

cron