Page 2 of 2

Re: PokerStars: Prohibit use of custom stats?

PostPosted: Wed Feb 24, 2021 7:45 am
by Flag_Hippo
IA06 wrote:I did rebuild the database and then it worked fine. Until no when it´s back to values above 100. Tried to do it all over again from the beginning, restarted everything but now nothing seems to help.

Can you please detail where you are seeing these numbers over 100. For what players? On what poker site? Bear in mind that where hole cards are known regardless of showdown (for example Hero hands or downloaded Ignition hands) then due to how these custom columns have been defined above you can potentially see numbers over 100 since hands where these players bet with a bluff and win without going to showdown would get counted. If you don't want that then you would need to edit the expressions to account for that.

Re: PokerStars: Prohibit use of custom stats?

PostPosted: Fri Apr 16, 2021 2:56 pm
by 44twiglet
Flag_Hippo wrote:cnt_r_bet_known
Code: Select all
sum(if[cash_hand_player_statistics.flg_r_bet AND cash_hand_player_statistics.flg_showdown, 1, 0])

cnt_r_raise_known
Code: Select all
sum(if[(cash_hand_player_statistics.cnt_r_raise > 0) AND (cash_hand_player_statistics.flg_showdown), 1, 0])


These stats are now coming up as prohibited on Pokerstars, is there a workaround?

Re: PokerStars: Prohibit use of custom stats?

PostPosted: Sat Apr 17, 2021 6:11 am
by Flag_Hippo
44twiglet wrote:
Flag_Hippo wrote:cnt_r_bet_known
Code: Select all
sum(if[cash_hand_player_statistics.flg_r_bet AND cash_hand_player_statistics.flg_showdown, 1, 0])

cnt_r_raise_known
Code: Select all
sum(if[(cash_hand_player_statistics.cnt_r_raise > 0) AND (cash_hand_player_statistics.flg_showdown), 1, 0])


These stats are now coming up as prohibited on Pokerstars, is there a workaround?

What you have quoted isn't prohibited but PokerStars do not allow statistics derived from player hole cards or board cards. PokerTracker 4 complies with their terms of service so there is no workaround.