here's my stat:
- Code: Select all
(cnt_p_fold_to_4bet_after_3bet / cnt_p_fold_to_4bet_after_3bet_opp) * 100
and I dont know how to add this code to make it for EP:
- Code: Select all
and ((holdem_hand_summary.cnt_players = 4 and holdem_hand_player_statistics.position = 1) or
(holdem_hand_summary.cnt_players = 5 and holdem_hand_player_statistics.position = 2) or
(holdem_hand_summary.cnt_players = 6 and holdem_hand_player_statistics.position = 3) or
(holdem_hand_summary.cnt_players = 7 and holdem_hand_player_statistics.position = 4) or
(holdem_hand_summary.cnt_players = 8 and (holdem_hand_player_statistics.position = 4 or holdem_hand_player_statistics.position = 5)) or
(holdem_hand_summary.cnt_players = 9 and (holdem_hand_player_statistics.position = 5 or holdem_hand_player_statistics.position = 6)) or
(holdem_hand_summary.cnt_players = 10 and (holdem_hand_player_statistics.position = 6 or
holdem_hand_player_statistics.position = 7)))
I've tried a couple different ways, and I cant get the expression to be valid...
I have no idea where parenthesis or commas or any kind of "code" formatting needs to go...
