Open Side Menu Go to the Top
Register
PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread

07-09-2019 , 07:02 AM
Quote:
Originally Posted by EggsMcBluffin
How do we filter for an exact board texture, like Ad3c4s?
You can filter for that board with this expression in a custom report:

(cash_hand_summary.card_1 = 26 OR cash_hand_summary.card_1 = 2 OR cash_hand_summary.card_1 = 42) AND (cash_hand_summary.card_2 = 26 OR cash_hand_summary.card_2 = 2 OR cash_hand_summary.card_2 = 42) AND (cash_hand_summary.card_3 = 26 OR cash_hand_summary.card_3 = 2 OR cash_hand_summary.card_3 = 42)

You can use this expression filter by clicking on the 'Filters' link and selecting 'Add New Expression Filters' and you will need to replace 'cash' with 'tourney' if you are in a tournament report.

cash_hand_summary.card_1 through cash_hand_summary.card_5 are the board cards and the card values are in this order:

2c=1 / 2d=14 / 2h=27 / 2s=40
3c=2 / 3d=15 ...
4c=3
...
Ac=13 / Ad=26 / Ah=39 / As=52

Quote:
Originally Posted by Bozo7
Any word on WPN HUD support on Blitz tables?
This will not be possible until WPN provide us with the necessary information so that we can display a Blitz HUD. If/when that happens the development team can start working on it.

Quote:
Originally Posted by the gonz0
why does this happen to me everytime i play
So we can find out what's causing that please report that to us in a Support Ticket with a log file that's recorded the problem:

Guide: How to Create & Submit a PokerTracker4.log File

- Rob
PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread Quote
07-10-2019 , 01:57 PM
Does anyone know the correct stat in PT4 for the river bet size when a raise occurs?

I would use:
cash_hand_player_statistics.amt_bet_r

However, when there is a river 2bet, that becomes equal to the 2bet size (aka:
cash_hand_player_statistics.amt_r_raise_made).

To be clear:

Pot:0.5
Villain bets: 0.3
I raise: 1.2
Villain folds

How to obtain villain betsize?
PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread Quote
07-11-2019 , 05:12 AM


my DB is too big 76GB i just wanna keep this year hands but dont wanna lose my notes or marked hands, this purge option is ok for that?
PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread Quote
07-11-2019 , 01:16 PM
Quote:
Originally Posted by Poughkeepsie
Does anyone know the correct stat in PT4 for the river bet size when a raise occurs?

I would use:
cash_hand_player_statistics.amt_bet_r

However, when there is a river 2bet, that becomes equal to the 2bet size (aka:
cash_hand_player_statistics.amt_r_raise_made).

To be clear:

Pot:0.5
Villain bets: 0.3
I raise: 1.2
Villain folds

How to obtain villain betsize?
cash_hand_player_statistics.amt_bet_r is the total amount bet by a player on the river so it includes all bets, raises and calls on that street. Also anything using 'cash_hand_player_statistics' is specific to the player the statistic/filter is written for and it's not clear to me from whose perspective you need this. If you are writing the statistic/filter for villain then you can use:

cash_hand_player_statistics.amt_r_bet_made

if it's from heros perspective you can use:

cash_hand_player_statistics.amt_r_bet_facing

Quote:
Originally Posted by g3r4rd0x
my DB is too big 76GB i just wanna keep this year hands but dont wanna lose my notes or marked hands, this purge option is ok for that?
If you purge hands then you will lose marked hands/hand notes that are attached to any hands that are purged. Also if as a result of a purge there are no hands left for a player you would lose the player notes for that player.

Based on the size of your database it would be quicker to reimport the hands you want into a new database as purging a large amount of hands from a database of that size will take some considerable time and you will also need a large amount of free space on your disk for PostgreSQL to complete the necessary database maintenance afterwards.

Unfortunately there isn't a way to transfer marked hands when reimporting hands although you can export/import manual player/hand notes via the 'Database -> Notes' menu option. The only alternative I can suggest is to export your marked hands from a custom report and you can then import and mark them in another database (before importing the remainder of hands you want to transfer).

- Rob
PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread Quote
07-11-2019 , 03:35 PM
Thank you! That works like a charm. One more question:

River
pot=20bb
villain bets 20bb
Hero raises 90bb and is all-in
villain calls 2bb [yes, this happened]

Now, I want to get:
original river pot (20) + villain bet 20 + raise that villain called or could call. This is to calculate the Return on investment on my river raise if I win showdown (separate tables for lost). Problem is, my investment (raise) is counted as 90bb here, while it's only 2bb.

It would work with:
2*cash_hand_player_statistics.amt_won - cash_hand_player_statistics.amt_r_call_made
but does the latter stat exist in some form?

Also, if villain folds (can be a separate table) it's even more difficult, since villains remaining stack (if smaller) should be taken instead of the raise.
PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread Quote
07-11-2019 , 09:31 PM
Quote:
Originally Posted by PokerTracker
Unfortunately there isn't a way to transfer marked hands when reimporting hands although you can export/import manual player/hand notes via the 'Database -> Notes' menu option. The only alternative I can suggest is to export your marked hands from a custom report and you can then import and mark them in another database (before importing the remainder of hands you want to transfer).

- Rob
what about the notes i have on players in different sites
what way i can export those from this year?
PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread Quote
07-12-2019 , 12:39 PM
Quote:
Originally Posted by Poughkeepsie
Thank you! That works like a charm. One more question:

River
pot=20bb
villain bets 20bb
Hero raises 90bb and is all-in
villain calls 2bb [yes, this happened]

Now, I want to get:
original river pot (20) + villain bet 20 + raise that villain called or could call. This is to calculate the Return on investment on my river raise if I win showdown (separate tables for lost). Problem is, my investment (raise) is counted as 90bb here, while it's only 2bb.

It would work with:
2*cash_hand_player_statistics.amt_won - cash_hand_player_statistics.amt_r_call_made
but does the latter stat exist in some form?

Also, if villain folds (can be a separate table) it's even more difficult, since villains remaining stack (if smaller) should be taken instead of the raise.
The effective size of your raise in these cases would be equal to your river effective stack minus the bet faced:

cash_hand_player_statistics.amt_r_effective_stack - cash_hand_player_statistics.amt_r_bet_facing

Quote:
Originally Posted by g3r4rd0x
what about the notes i have on players in different sites
what way i can export those from this year?
Notes will be exported for all players and sites but it's not possible to export notes for a specific period of time.

- Rob
PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread Quote
07-14-2019 , 03:34 PM
Trying to filter for spots where I RFI in LP and get flatted by SB.




What do I need to add to get the BB out of the hands?
TY
PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread Quote
07-15-2019 , 06:29 AM
Quote:
Originally Posted by Scott7x
Trying to filter for spots where I RFI in LP and get flatted by SB.




What do I need to add to get the BB out of the hands?
There isn't a built-in filter for the position of caller(s) however you can use a custom filter expression in 'My Reports' to ensure a small blind call:

Code:
cash_hand_summary.str_actors_p LIKE '_9' AND cash_hand_summary.str_aggressors_p LIKE '8_' AND cash_hand_summary.str_aggressors_p NOT LIKE '89'
See this post for more information on how the actors and aggressors strings work. You can use this expression filter by clicking on the filters link and selecting 'Add New Expression Filters'. Substitute 'cash' with 'tourney' if you are in a tournament report.

- Rob
PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread Quote
07-16-2019 , 12:44 PM
Hi, have been trying numerous things to get my HUD working, the HUD just simply locks up randomly on the wrong spots and wont update.

Any ideas?
Yes I have the latest version and I have also tried re-installing. I have also run setup assistant and de-fragged. No joy.
I have about 10m hands and I want to keep all of them.
PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread Quote
07-17-2019 , 04:58 AM
Quote:
Originally Posted by Darsolation
Hi, have been trying numerous things to get my HUD working, the HUD just simply locks up randomly on the wrong spots and wont update.

Any ideas?
Yes I have the latest version and I have also tried re-installing. I have also run setup assistant and de-fragged. No joy.
I have about 10m hands and I want to keep all of them.
So we can find out what's causing that please enable logging, reproduce this issue and send us your PokerTracker4.log file in a Support Ticket:

Guide: How to Create & Submit a PokerTracker4.log File

- Rob
PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread Quote
07-17-2019 , 12:24 PM
Quote:
Originally Posted by PokerTracker
So we can find out what's causing that please enable logging, reproduce this issue and send us your PokerTracker4.log file in a Support Ticket:

Guide: How to Create & Submit a PokerTracker4.log File

- Rob
thank you

Ticket #419166
PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread Quote
07-18-2019 , 10:17 AM
Hi,

1. Could you please add 8 max and 7 max seats to the replayer? Do note that looking at 888 histories, I see they have seat 9 and seat 10 even at 8 max tables.

2. I tried logging at the pokertracker forum to report this, but after my first failed attempt to use my password, I was told I needed to fill in a CAPTCHA code. Problem is I can't see no CAPTCA code. Also, is it normal to ask for this after one failed attempt?

Last edited by leviathan74; 07-18-2019 at 10:31 AM.
PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread Quote
07-18-2019 , 04:48 PM
Question... I'm importing hands using the configure sites option and I have to cancel mid import. Is there a way of recovering the hands I lost by cancelling the import before it finished?
PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread Quote
07-19-2019 , 06:11 AM
How do I disable this little pop up that comes up when I hover my mouse above a player's name? It's annoying because it also leaves a little shadow afterwards.


See picture for reference: (First arrow shows the actual pop up, Second arrow shows the shadow after the pop up goes away)

PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread Quote
07-19-2019 , 06:44 AM
Quote:
Originally Posted by leviathan74
1. Could you please add 8 max and 7 max seats to the replayer? Do note that looking at 888 histories, I see they have seat 9 and seat 10 even at 8 max tables.

2. I tried logging at the pokertracker forum to report this, but after my first failed attempt to use my password, I was told I needed to fill in a CAPTCHA code. Problem is I can't see no CAPTCA code. Also, is it normal to ask for this after one failed attempt?
1. To register your interest in this request and to get notified if these replayer layouts are added in a future update then please open a Support Ticket and quote reference #6381.

2. Please try again, take a screenshot of your entire browser (showing the URL bar) and then send that to us in a Support Ticket along with your IP address as displayed here so we can investigate this issue.

Quote:
Originally Posted by UnnaturalDisaster
Question... I'm importing hands using the configure sites option and I have to cancel mid import. Is there a way of recovering the hands I lost by cancelling the import before it finished?
You can manually import from those files again via 'Play Poker -> Get Hands From Disk'.

Quote:
Originally Posted by iluvbubees
How do I disable this little pop up that comes up when I hover my mouse above a player's name? It's annoying because it also leaves a little shadow afterwards.
That isn't a popup - it's a part of your actual HUD that has the 'Lower Opacity Until Mouseover' option enabled. To remove it you need to select your custom HUD Profile in 'HUD -> Edit HUD Profiles' and delete that particular HUD group from your profile:

Guide: Configuring HUD Groups

- Rob
PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread Quote
07-20-2019 , 03:07 PM
Hey Rob,

Hope all is well.

On the graphs page, there is the little box with winrate in bb/100 overall. Is there anyway I can also get it to show my winrate (lossrate) in bb/100 for my redline?

I want to see how my NSD winnings or losings change overtime.
PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread Quote
07-21-2019 , 08:07 AM
Quote:
Originally Posted by mrfunnywobbl
On the graphs page, there is the little box with winrate in bb/100 overall. Is there anyway I can also get it to show my winrate (lossrate) in bb/100 for my redline?
If you want that you'd need to create a custom stat for bb/100 without showdown and then add it to the information box.

Quote:
Originally Posted by mrfunnywobbl
I want to see how my NSD winnings or losings change overtime.
You can do that directly in the 'Graphs' section:

Graph For: Hands Played
Winnings In: BB
[x] Showdown/Non SD Winnings

- Rob
PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread Quote
07-21-2019 , 07:39 PM
Forgive if this isn't the right place for this post. I've just started playing ACR again and I guess they have new software. I'm trying to figure out how to get my PT4 to work with the new ACR software. As far as I can tell the hands aren't being recorded. Could someone point me in the right direction, or give some advice? Thanks.
PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread Quote
07-22-2019 , 04:05 AM


have this problem often with WPN, also when moved into new table hud doesnt update correctly and shows players from the previous table
PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread Quote
07-22-2019 , 06:51 AM
Quote:
Originally Posted by srmjr23
Forgive if this isn't the right place for this post. I've just started playing ACR again and I guess they have new software. I'm trying to figure out how to get my PT4 to work with the new ACR software. As far as I can tell the hands aren't being recorded. Could someone point me in the right direction, or give some advice? Thanks.
Make sure you are using the latest version of PokerTracker 4

Download PokerTracker 4

and that you have everything setup correctly

Winning Poker Network Configuration Guide (WPN)

otherwise please report your problem to us with your log file where a support technician can assist:

Guide: How to Create & Submit a PokerTracker4.log File

Quote:
Originally Posted by g3r4rd0x
have this problem often with WPN, also when moved into new table hud doesnt update correctly and shows players from the previous table
If the HUD isn't updating with the new players after you have played your first hand at the new table then please report that to us in a Support Ticket with your log file:

Tutorial: Reporting A Problem

- Rob
PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread Quote
07-22-2019 , 10:33 AM
If I buy a license, will it be valid on both Windows and Mac?
PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread Quote
07-22-2019 , 06:50 PM
Quote:
Originally Posted by mojo6911
If I buy a license, will it be valid on both Windows and Mac?
Yes however please note that if you are planning to use PokerTracker on a Mac and then install it on a Windows virtual machine on the same computer this would count as the two allowed usages of the registration code even though it's on the same physical computer.

- Rob
PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread Quote
07-23-2019 , 05:01 PM
Currently my HUD isn't adjusting to my preferred seat on ACR. I have PT4 and ACR preferred seats set to the bottom middle seat for 6max, which is all I play, but my HUD has the stats for the opposite seats, so that my stats are up top and top seat is on the bottom seat, as well as diagonal seats, etc. Anyone have any ideas?
PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread Quote
07-23-2019 , 06:10 PM
Is there some reason that PT4 should randomly not record hands? Certain hands are not showing up in my win history and they seem to be my largest wins. I even went through the HH file and at least one hand I played, and won, isn't listed. So basically when I go to view session stats the hand doesn't even appear. Anyone have this issue with ACR?
PokerTracker 4 for Windows & Mac OS X - 2+2 Support Thread Quote

      
m