Hi,
I have created a stat but I'm not sure if I'm using the right columns so please tell me if its correct.
I want to get a stat, which tells me the % of folding the hand when facing an allin with a certain bet amount(measured in BB) of the player already invested(preflop, without antes, blinds included)
The stat is: FoldToShove_pct: (cnt_foldtoshove / cnt_faceshove)*100
the columns:
cnt_faceshove:
sum(if[tourney_hand_player_statistics.enum_face_allin = 'P'
AND
((amt_p_raise_made / tourney_blinds.amt_bb)
BETWEEN 0.00 AND 0.00)
, 1, 0])
cnt_foldtoshove:
sum(if[tourney_hand_player_statistics.enum_face_allin = 'P'
AND tourney_hand_player_statistics.enum_face_allin_action = 'F'
AND
((amt_p_raise_made / tourney_blinds.amt_bb)
BETWEEN 0.00 AND 0.00)
, 1, 0])
so here I want to get the % of fold then facing an allin where I haven't invested anything yet(except the antes).
but it seems amt_p_raise_made doesn't include the blinds posted - which i want
I am looking for a column that includes the blinds but excludes the ante - so basically the whole current betamount infront of a player.
I tried with amt_bet_p instead of amt_p_raise_made but the results seem to be too tight.
Help please