My Reports: Downloadable Examples

Questions and discussion about PokerTracker 4 for Windows

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

Re: My Reports: Downloadable Examples

Postby Star6464 » Thu Mar 29, 2012 1:08 am

I would like to make a custom statistics "River Bet Bluff Frequency" and"River Raise Bluff Frequency".
For example (Made Hand - High Card On River) AND (Bet River Any River Bet) / (Bet River Any River Bet) percentage, and see it in my HUD.
Is that possible? Any help much appreciated.
Star6464
 
Posts: 5
Joined: Fri Jan 25, 2008 6:20 am

Re: My Reports: Downloadable Examples

Postby kraada » Thu Mar 29, 2012 12:43 pm

Yes that is possible.

We're defining a bluff as a bet on the river with a high card - note that the hand must go to showdown in order to count (as otherwise we don't know his cards).

To build that you need to build two new columns defined as follows:

cnt_r_bet_bluff: sum(if[cash_hand_player_combinations.flg_r_highcard and cash_hand_player_statistics.flg_r_bet, 1, 0])

cnt_r_bet_wtsd: sum(if[cash_hand_player_statistics.flg_showdown and cash_hand_player_statistics.flg_r_bet, 1, 0])

Put the former over the latter in the value expression of your stat and multiply by 100 to make it a percentage.

To change it to a raise change flg_r_bet to cnt_r_raise > 0.
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: My Reports: Downloadable Examples

Postby Furo » Fri Mar 30, 2012 6:31 am

I extract the custom report the file is broken or incorrect
Furo
 
Posts: 127
Joined: Thu Jul 24, 2008 8:04 am

Re: My Reports: Downloadable Examples

Postby kraada » Fri Mar 30, 2012 8:14 am

Is that from an exported PT3 report or PT4 report?
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: My Reports: Downloadable Examples

Postby Furo » Fri Mar 30, 2012 12:48 pm

kraada wrote:Is that from an exported PT3 report or PT4 report?



the one in post 2 of this thread...


and can you please check this thread?
https://www.pokertracker.com/forums/vie ... 58&t=39611

dont work for me even after update every cache, doing housekeeping, reinstall the beta etc.
Furo
 
Posts: 127
Joined: Thu Jul 24, 2008 8:04 am

Re: My Reports: Downloadable Examples

Postby kraada » Fri Mar 30, 2012 5:47 pm

I just tested and I can extract and import that file without any problems in our latest alpha. Are you using the most recent beta? What program are you using to extract the file?
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: My Reports: Downloadable Examples

Postby Furo » Fri Mar 30, 2012 7:06 pm

WinRar
Furo
 
Posts: 127
Joined: Thu Jul 24, 2008 8:04 am

Re: My Reports: Downloadable Examples

Postby Star6464 » Sat Mar 31, 2012 7:01 am

by kraada » Thu Mar 29, 2012 10:43 pm

Yes that is possible.

We're defining a bluff as a bet on the river with a high card - note that the hand must go to showdown in order to count (as otherwise we don't know his cards).


Yes, it works fine, but the stat is incorrect, is ignored a bluff on the board paired.
For example, board 7h Td 5c Tc 2d , SB shows Jd 9c (One Pair, Tens)
Any help please.
Star6464
 
Posts: 5
Joined: Fri Jan 25, 2008 6:20 am

Re: My Reports: Downloadable Examples

Postby WhiteRider » Sat Mar 31, 2012 11:23 am

I think if you add in a check for using zero hole cards when you don't have a high card (i.e. when you have more than a high card) then it should ignore those situations.

For example, include:

OR (cash_hand_player_combinations.val_r_hole_cards_used = 0 AND NOT cash_hand_player_combinations.flg_r_highcard)

..in the expressions.

e.g.

cnt_r_bet_bluff =
sum(if[(cash_hand_player_combinations.flg_r_highcard OR (cash_hand_player_combinations.val_r_hole_cards_used = 0 AND NOT cash_hand_player_combinations.flg_r_highcard)) and cash_hand_player_statistics.flg_r_bet, 1, 0])

This says that you either had a high card, or had something else but didn't use any of your hole cards to make the hand.
WhiteRider
Moderator
 
Posts: 54017
Joined: Sat Jan 19, 2008 7:06 pm
Location: UK

Re: My Reports: Downloadable Examples

Postby kuafas » Sat Apr 07, 2012 8:33 am

WhiteRider wrote:cnt_r_bet_bluff =
sum(if[(cash_hand_player_combinations.flg_r_highcard OR (cash_hand_player_combinations.val_r_hole_cards_used = 0 AND NOT cash_hand_player_combinations.flg_r_highcard)) and cash_hand_player_statistics.flg_r_bet, 1, 0])

This says that you either had a high card, or had something else but didn't use any of your hole cards to make the hand.


I believe you even don't need that part. It doesn't change the result if you have it, but it is unnecessary.
kuafas
 
Posts: 10
Joined: Wed Jul 21, 2010 11:54 am

PreviousNext

Return to PokerTracker 4

Who is online

Users browsing this forum: Amazonbot, Slimpanne and 59 guests

cron