Preflop open limp fold Sb NOAI

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

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

Preflop open limp fold Sb NOAI

Postby G1PoQ » Fri Oct 30, 2020 10:17 am

Hello guys i'm trying to build Preflop open limp fold Sb NOAI

so here is my stat:

(LDB_cnt_p_limp_fold_3w_SB_NAI / LDB_cnt_p_limp_faceraise_3w_SB_NAI ) * 100

LDB_cnt_p_limp_fold_3w_SB_NAI:

sum(if[tourney_hand_player_statistics.flg_p_limp
AND tourney_hand_player_statistics.flg_p_open_opp
AND lookup_actions_p.action = 'CF'
AND tourney_hand_player_statistics.amt_p_raise_facing < tourney_hand_player_statistics.amt_p_effective_stack
AND tourney_hand_player_statistics.position = 9 , 1, 0])

LDB_cnt_p_limp_faceraise_3w_SB_NAI:

sum(if[tourney_hand_player_statistics.flg_p_limp
AND tourney_hand_player_statistics.flg_p_open_opp
AND tourney_hand_player_statistics.flg_p_face_raise
AND tourney_hand_player_statistics.amt_p_raise_facing < tourney_hand_player_statistics.amt_p_effective_stack
AND tourney_hand_player_statistics.position = 9 , 1, 0])

This stat show AI and NOAI situation i dont understand why this line is not working: tourney_hand_player_statistics.amt_p_raise_facing < tourney_hand_player_statistics.amt_p_effective_stack.

Can you help me?

Thank you
G1PoQ
 
Posts: 12
Joined: Sat Sep 12, 2020 9:42 am

Re: Preflop open limp fold Sb NOAI

Postby Flag_Hippo » Fri Oct 30, 2020 1:21 pm

That's the same issue as your other thread so use tourney_hand_player_statistics.amt_p_2bet_facing instead of tourney_hand_player_statistics.amt_p_raise_facing and add tourney_hand_player_statistics.amt_blind to that.
Flag_Hippo
Moderator
 
Posts: 14510
Joined: Tue Jan 31, 2012 7:50 am

Re: Preflop open limp fold Sb NOAI

Postby G1PoQ » Fri Oct 30, 2020 7:23 pm

Hello again, i forgot to mentionned it but i tried this and not working too, so to be more specific:

i have this stat with AI and NOAI:

Preflop limp fold SB:

(LDB_cnt_p_limp_fold_3w_SB / LDB_cnt_p_limp_faceraise_3w_SB ) * 100

LDB_cnt_p_limp_fold_3w_SB:
sum(if[tourney_hand_player_statistics.flg_p_open_opp
AND tourney_hand_player_statistics.flg_p_limp
AND tourney_hand_player_statistics.position = 9
AND lookup_actions_p.action = 'CF', 1, 0])

LDB_cnt_p_limp_faceraise_3w_SB:
sum(if[tourney_hand_player_statistics.flg_p_open_opp
AND tourney_hand_player_statistics.flg_p_limp
AND tourney_hand_player_statistics.position = 9
AND tourney_hand_player_statistics.flg_p_face_raise, 1, 0])

With this stat i have 911/1236=73.71%

So i try this to say its a NOAI situation:
(LDB_cnt_p_limp_fold_3w_SB_NAI / LDB_cnt_p_limp_faceraise_3w_SB_NAI ) * 100

LDB_cnt_p_limp_fold_3w_SB_NAI:
sum(if[tourney_hand_player_statistics.flg_p_limp
AND tourney_hand_player_statistics.flg_p_open_opp
AND lookup_actions_p.action = 'CF'
AND (tourney_hand_player_statistics.amt_p_2bet_facing + tourney_hand_player_statistics.amt_blind) < tourney_hand_player_statistics.amt_p_effective_stack
AND tourney_hand_player_statistics.position = 9 , 1, 0])

LDB_cnt_p_limp_faceraise_3w_SB_NAI:
sum(if[tourney_hand_player_statistics.flg_p_limp
AND tourney_hand_player_statistics.flg_p_open_opp
AND tourney_hand_player_statistics.flg_p_face_raise
AND (tourney_hand_player_statistics.amt_p_2bet_facing + tourney_hand_player_statistics.amt_blind) < tourney_hand_player_statistics.amt_p_effective_stack
AND tourney_hand_player_statistics.position = 9 , 1, 0])

and i have exactly the same number of occurence: 911/1236=73.71%

to finish for the AI situation i replace this:
AND (tourney_hand_player_statistics.amt_p_2bet_facing + tourney_hand_player_statistics.amt_blind) < tourney_hand_player_statistics.amt_p_effective_stack
by:
AND (tourney_hand_player_statistics.amt_p_2bet_facing + tourney_hand_player_statistics.amt_blind) >= tourney_hand_player_statistics.amt_p_effective_stack

and i have 0/0

and im sure thats this result is not good.

Can you see where the problem is?

I tried to rebuild cache but its not working

Thanks
G1PoQ
 
Posts: 12
Joined: Sat Sep 12, 2020 9:42 am

Re: Preflop open limp fold Sb NOAI

Postby Flag_Hippo » Sat Oct 31, 2020 5:46 am

As the player is limping use tourney_blinds.amt_bb (the value of the BB) instead of tourney_hand_player_statistics.amt_blind (the amount posted by the player) and that should correct it.
Flag_Hippo
Moderator
 
Posts: 14510
Joined: Tue Jan 31, 2012 7:50 am

Re: Preflop open limp fold Sb NOAI

Postby G1PoQ » Sat Oct 31, 2020 9:26 am

omg thank you its working now i knew it was something specific like that.

:D :D :D :D :D :D
G1PoQ
 
Posts: 12
Joined: Sat Sep 12, 2020 9:42 am

Re: Preflop open limp fold Sb NOAI

Postby Flag_Hippo » Sat Oct 31, 2020 2:41 pm

Yes I didn't realise that change was also necessary originally but thanks for confirming that fixed it.
Flag_Hippo
Moderator
 
Posts: 14510
Joined: Tue Jan 31, 2012 7:50 am


Return to Custom Stats, Reports and HUD Profiles

Who is online

Users browsing this forum: No registered users and 29 guests

cron