Page 1 of 2

segmentos de sizing

PostPosted: Tue Sep 21, 2021 10:10 pm
by plukhead
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

Re: segmentos de sizing

PostPosted: Wed Sep 22, 2021 4:27 am
by Flag_Hippo
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.

Re: segmentos de sizing

PostPosted: Thu Sep 23, 2021 10:02 pm
by plukhead
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

Re: segmentos de sizing

PostPosted: Fri Sep 24, 2021 5:05 am
by Flag_Hippo
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.

Re: segmentos de sizing

PostPosted: Fri Sep 24, 2021 11:52 am
by plukhead
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))))))

Re: segmentos de sizing

PostPosted: Fri Sep 24, 2021 1:53 pm
by Flag_Hippo
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.

Re: segmentos de sizing

PostPosted: Tue Sep 28, 2021 12:03 am
by plukhead
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

Re: segmentos de sizing

PostPosted: Tue Sep 28, 2021 5:17 am
by Flag_Hippo
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.

Re: segmentos de sizing

PostPosted: Tue Sep 28, 2021 10:53 am
by plukhead
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

Re: segmentos de sizing

PostPosted: Tue Sep 28, 2021 1:24 pm
by Flag_Hippo
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)))