thanks very much
i am still not sure how to put everything together though when creating a custom stat
example:
- preflop aggressor is out of position and does not make a cbet
- player in position (active player?) makes a float bet
- 3 players on the flop
so, this is a float when floater is in position in a 3handed situation:
sum(if[ (lookup_actions_p.action = 'C' OR lookup_actions_p.action = 'CC') AND cash_hand_player_statistics.flg_p_face_raise AND cash_hand_player_statistics.flg_f_bet AND
cash_hand_player_statistics.flg_f_has_position and cash_hand_summary.cnt_players_f = 3, 1, 0])
but how can i insert that the preflop raiser is out of position? when i use "cash_hand_player_statistics.flg_f_first" it conflicts with "cash_hand_player_statistics.flg_f_has_position" i guess and i do not know how to introduce the preflop raiser here. i thought some time about it but i am still missing an
thanks very much for any help