I tried to make a custom stat "Number of times a player 3bet to a size smaller than 2.25 x the open raise Preflop."
The first thing I did was to create a new column that is called "cnt_p_min3bet_vs_btn_open" and i put the following expression inside:
- Code: Select all
sum(if[val_p_3bet_size_x = 1 OR val_p_3bet_size_x = 2, 1, 0])
Here is a picture of how it looks:
The expression validate so I go forward to making my stat "Min3b PreFlop" with the following expression:
- Code: Select all
(cnt_p_min3bet_vs_btn_open / cnt_p_3bet_vs_btn_open) * 100
Here is a picture of how it looks:
This statistic validate as well!
Everything seemed fine but when I go to "Hud Profiles" and try to add the statistic to my HUD I can't find it there so I figure there is some problem.
This is my first stat that I ever created so the possibility that there is some beginner mistake is high Maybe someone here can point it out?