Buenas, quiero crear algunas estadísticas dependiendo por el stack
Tengo un problema que cuando quiero ver el vpip de un stack que tenga entre 10 y 20bb me carga los eventos de cuando hay un stack de 40, me explico
Stat VPIP para SPR 10-20
Hero 30
Villano 30
Villano entra al bote
Me suma un evento en la stat mencionada anteriormente, cuando el dato que debería figurar seria -
Tengo el siguiente código
sum(if[tourney_hand_player_statistics.flg_vpip AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 10 AND 20, 1, null])
Por otro lado aprovecho la oportunidad y consulto, si además de ver ese dato por stack también lo quiero ver por la cantidad de jugadores, cómo lo debería modificar?
-----------------------------------------------------------------------------------------------
Hello, I want to create some statistics depending on the stack
I have a problem that when I want to see the vpip of a stack that has between 10 and 20bb it loads the events when there is a stack of 40, let me explain.
Stat VPIP for SPR 10-20
Hero 30
Villain 30
Villain enters the boat
An event adds to the stat mentioned above, when the data that should appear would be -
I have the following code
sum(if[tourney_hand_player_statistics.flg_vpip AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 10 AND 20, 1, null])
On the other hand, I take the opportunity and ask, if in addition to seeing that data by stack I also want to see it by the number of players, how should I modify it?