Page 1 of 1

2Bet Size Filter

PostPosted: Tue Aug 02, 2022 7:19 am
by Level1Genius
I'm trying to figure out how to filter by CO 2Bet size in a situation where CO 2Bets, BU 3Bets and Hero is in the blinds. I don't think this is possible using the built in filter system. Can this be done using expression filters?

Thanks in advance!

Re: 2Bet Size Filter

PostPosted: Tue Aug 02, 2022 11:58 am
by Flag_Hippo
Hero is not facing a 2Bet so the built-in filter for specifying the size of the 2Bet faced isn't going to be suitable and something like that that will require an expression filter with a subquery:

Code: Select all
cash_hand_player_statistics.id_hand in (SELECT chps.id_hand from cash_hand_player_statistics chps, cash_limit cl where chps.id_limit = cl.id_limit and chps.flg_first_raise AND (chps.amt_p_raise_made / cl.amt_bb ) between x and y)