segmentos de sizing

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

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

segmentos de sizing

Postby plukhead » Tue Sep 21, 2021 10:10 pm

hola necesito ayuda para hacer stats que me agrupen las manos según el sizing utilizado en una calle determinada
por ej todas las manos en la que hice OR utilizando sizing entre 2BB y 2.5BB que las agrupe y arroje como resultado solo la leyenda "2-2.5".Dejo a continuación una captura sacada de la web de una escuela de poker con lo que busco lograr, si tan solo me muestran como crear una stats puedo entender como hacer el resto.Gracias
Attachments
333.PNG
plukhead
 
Posts: 116
Joined: Mon Sep 16, 2019 11:16 pm

Re: segmentos de sizing

Postby Flag_Hippo » Wed Sep 22, 2021 4:27 am

Search for 'Size' in 'Configure -> Statistics' and all the results will be grouping stats and you can see how these types of statistics are built based on the examples there.
Flag_Hippo
Moderator
 
Posts: 14441
Joined: Tue Jan 31, 2012 7:50 am

Re: segmentos de sizing

Postby plukhead » Thu Sep 23, 2021 10:02 pm

Gracias eso fue de ayuda.

la expresión que dejo a continuación es para cuando beteamos 50% del pozo

tourney_hand_player_statistics.val_f_bet_made_pct = 50

¿como debo escribirlo cuando enfrentamos una bet del 50%?

lo intente de la siguiente manera pero me da error

tourney_hand_player_statistics.val_f_bet_facing_made_pct = 50
plukhead
 
Posts: 116
Joined: Mon Sep 16, 2019 11:16 pm

Re: segmentos de sizing

Postby Flag_Hippo » Fri Sep 24, 2021 5:05 am

That's not valid as 'made' isn't used in the facing filter:

Code: Select all
tourney_hand_player_statistics.val_f_bet_facing_pct

Also when one player makes a 50% pot bet the other player is facing a bet of 33% since the percentage of the pot faced is how much a player has to call - it's the pot odds and the bet amount is included:

Player A bets $5 into $10 (50%)

Player B has to call $5 and the pot is now $15 (33%)


This will also account for situations where a bet has been called by other players in between or not as that changes the pot odds.
Flag_Hippo
Moderator
 
Posts: 14441
Joined: Tue Jan 31, 2012 7:50 am

Re: segmentos de sizing

Postby plukhead » Fri Sep 24, 2021 11:52 am

OK entiendo gracias...
esta columna me tira un error en algunas manos y no puedo solucionarlo
if[not(tourney_hand_player_statistics.amt_p_2bet_facing >0), 0, if[tourney_hand_player_statistics.amt_p_2bet_facing + tourney_blinds.amt_bb /
tourney_blinds.amt_bb <= 2
AND tourney_hand_player_statistics.amt_p_2bet_facing >0, 1, if[tourney_hand_player_statistics.amt_p_2bet_facing + tourney_blinds.amt_bb /
tourney_blinds.amt_bb <= 2.5
AND tourney_hand_player_statistics.amt_p_2bet_facing >0, 2, if[tourney_hand_player_statistics.amt_p_2bet_facing + tourney_blinds.amt_bb /
tourney_blinds.amt_bb <= 3
AND tourney_hand_player_statistics.amt_p_2bet_facing >0, 3, if[tourney_hand_player_statistics.amt_p_2bet_facing + tourney_blinds.amt_bb /
tourney_blinds.amt_bb > 3 AND tourney_hand_player_statistics.amt_p_2bet_facing + tourney_blinds.amt_bb /
tourney_blinds.amt_bb <= 75
AND tourney_hand_player_statistics.amt_p_2bet_facing >0, 4, 5]]]]]


format type
if(this = 0, format('-'), if(this = 1, format('2X'), if(this = 2, format('2.1-2.5'), if(this = 3, format('2.6-3'), if(this = 4, format('>3') ,format('Error: {1}', this))))))
Attachments
eeeeeee.PNG
plukhead
 
Posts: 116
Joined: Mon Sep 16, 2019 11:16 pm

Re: segmentos de sizing

Postby Flag_Hippo » Fri Sep 24, 2021 1:53 pm

What about:

tourney_hand_player_statistics.amt_p_2bet_facing + tourney_blinds.amt_bb /
tourney_blinds.amt_bb > 3 AND tourney_hand_player_statistics.amt_p_2bet_facing + tourney_blinds.amt_bb /
tourney_blinds.amt_bb > 75
AND tourney_hand_player_statistics.amt_p_2bet_facing >0


That looks like you have hands which meet the above critieria but since that isn't covered by your groups those hands will end up in the undefined/error group.
Flag_Hippo
Moderator
 
Posts: 14441
Joined: Tue Jan 31, 2012 7:50 am

Re: segmentos de sizing

Postby plukhead » Tue Sep 28, 2021 12:03 am

necesito ayuda para escribir una expresión que filtre todas las manos donde enfrentamos un OR de 2BB,lo intente de la siguiente manera

(tourney_hand_player_statistics.amt_p_2bet_facing + tourney_blinds.amt_bb /
tourney_blinds.amt_bb) =2
AND tourney_hand_player_statistics.amt_p_2bet_facing >0

pero no es correcto en algunas situaciones de 3h
¿juego spin and go ,se puede escribir para que sea correcta en todos los spots?.gracias
plukhead
 
Posts: 116
Joined: Mon Sep 16, 2019 11:16 pm

Re: segmentos de sizing

Postby Flag_Hippo » Tue Sep 28, 2021 5:17 am

You need to add tourney_blinds.amt_sb to the size of the bet faced instead of tourney_blinds.amt_bb to calculate things correctly for the small blind position.
Flag_Hippo
Moderator
 
Posts: 14441
Joined: Tue Jan 31, 2012 7:50 am

Re: segmentos de sizing

Postby plukhead » Tue Sep 28, 2021 10:53 am

Gracias,pero no logro hacerlo o entender como se hace ......solo necesito una expresion para spin and go que filtre todas las manos dnd enfrentamos OR de 2BB sin inportar en que posicion estemos o si otro jugador igualo antes que de actue hero.Gracias
plukhead
 
Posts: 116
Joined: Mon Sep 16, 2019 11:16 pm

Re: segmentos de sizing

Postby Flag_Hippo » Tue Sep 28, 2021 1:24 pm

I am not sure what you want. Try this:

Code: Select all
NOT tourney_hand_player_statistics.flg_p_limp AND ((tourney_hand_player_statistics.position < 8 AND (tourney_hand_player_statistics.amt_p_2bet_facing / tourney_blinds.amt_bb) = 2) OR (tourney_hand_player_statistics.position = 9 AND (tourney_hand_player_statistics.amt_p_2bet_facing / tourney_blinds.amt_bb = 1.5)) OR (tourney_hand_player_statistics.position = 8 AND (tourney_hand_player_statistics.amt_p_2bet_facing / tourney_blinds.amt_bb = 1)))
Flag_Hippo
Moderator
 
Posts: 14441
Joined: Tue Jan 31, 2012 7:50 am

Next

Return to Custom Stats, Reports and HUD Profiles

Who is online

Users browsing this forum: No registered users and 15 guests

cron
highfalutin