I want stat that shows what range villain opens with certain sizings with stack under 50BB
It works when the sizing exact like 2.5bb, 3bb
example:
Open raise 3bb BB<50
Count(DidOpenRaise = yes and OpenRaisePreflopInBBs = 3) / Count(StackInBBs < 50)
It doesn’t when i range it for example from 2.5bb to 3bb
example:
Open raise 3.01-3.5bb BB<50
Count(DidOpenRaise = yes and OpenRaisePreflopInBBs > 3.01 and OpenRaisePreflopInBBs < 3.5) / Count(StackInBBs < 50)
It doesn’t work when i add position to any of these
example:
Open raise 3.5bb BB<50 BTN%
Count(DidOpenRaise = yes and OpenRaisePreflopInBBs = 3.5) / Count(StackInBBs < 50) / Count(Position = BTN )
How it should be done?