multiple player profiles
hello
how can i add a expression to include stats like wwsf, wsd etc. they work differently from stats like 3bet because it's a expression stats?
example:
Value(3Bet [BB]) < 10 and Value(Call Open Raise [BB]) < 31
works
Value(Won When Saw Flop) > 40
no output
thank you
2 Replies
Hello,
Within the parentheses of functions, you can only use the names of plain stats, for example:
Value(VPIP) > X, where the function is Value(), and the plain stat is VPIP.
Plain stats are created using filters, while expression stats are created using formulas.
For this reason, you cannot specify the name of an expression stat within a function, as the expression cannot calculate itself.
To filter by WWSF, you should use the expression itself within the stat:
WonHandCases(Flop Any Action) / Cases(Flop Any Action) * 100 >= 40.
thank you!!