Two Plus Two Older Archives  

Go Back   Two Plus Two Older Archives > Limit Texas Hold'em > Micro-Limits
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 10-07-2005, 03:52 PM
rvg72 rvg72 is offline
Senior Member
 
Join Date: Jun 2005
Posts: 113
Default The Fish Factor - An Analysis

Everybody knows that table selection is important but it is fairly difficult to quantify. The steps that I’ve outlined try to quantify it and the results are very telling and may give you enough reason to be more patient when determining where to sit down. Scroll to the bottom to see my results broken down by “vs player type”

What do you need? Poker Tracker and Microsoft Access

Please note that all of my DB programming experience is with SQL Server so some of the steps may seem odd to anyone that knows Access really well – it does work but I’m sure there is a slicker way to get the data. Also, there are a lot of steps but each one if very quick.

Steps

1) Using Windows Explorer go to the “C:\Program Files\Poker Tracker V2” folder (or wherever you have Poker Tracker installed) and double click on the file named ptrack.mdb. It should be loaded by Microsoft Access. You might get a security warning, just click on Open.
2) Click on “Queries” under the Objects header
3) Double Click on “Create Query In Design View”
4) Click “Close” on the Show Table popup.
5) Right Click on the grey part of the window and select SQL View
6) Copy the following into this window

SELECT Player_ID FROM players WHERE Screen_Name = 'rvg72’

But replace the rvg72 with your screen name.

7) Click on the Red Exclamation point
8) Make note of the number that is returned – this is your player_ID number in the poker tracker database
9) Right click on the grey area again and select SQL View, Delete the code and replace with the following:

SELECT Screen_Name, (SELECT NZ(Sum(Total_Hands),0) from Session WHere player_ID = PLayers.Player_ID) AS TotalHands, (SELECT NZ(Sum(Vol_Saw_Flop),0) from Session WHere player_ID = PLayers.Player_ID) AS VPIP, (SELECT NZ(Sum(WON_FROM),0) FROM PLAYER_WINNINGS WHERE PLAYER_ID =5 AND OPPONENT_ID = Players.player_ID) AS WonFrom, (SELECT NZ(Sum(WON_FROM),0) FROM PLAYER_WINNINGS WHERE OPPONENT_ID =5 AND PLAYER_ID = Players.player_ID) AS LostFrom, WonFrom-LostFrom AS TotalWinnings
FROM Players;

But Replace the 5 (player_ID = 5) in the two locations with whatever your player_ID is.

10) Click on the X to close this window and save it as Opps
11) Double Click on “Create Query In Design View”
12) Click “Close” on the Show Table popup.
13) Right Click on the grey part of the window and select SQL View
14) Copy the following into this window

SELECT (Select Sum(TotalHands) from Opps where (VPIP/TotalHands) < 0.2 and TOtalHands >= 30) AS TightHands, (Select Sum(TotalWinnings) from Opps where (VPIP/TotalHands) < 0.2 and TOtalHands >= 30) AS TightWinnings, (Select Sum(TotalHands) from Opps where (VPIP/TotalHands) between 0.2 and 0.3 and TOtalHands >= 30) AS NormalHands, (Select Sum(TotalWinnings) from Opps where (VPIP/TotalHands) between 0.2 and 0.3 and TOtalHands >= 30) AS NormalWinnings, (Select Sum(TotalHands) from Opps where (VPIP/TotalHands) between 0.3 and 0.5 and TOtalHands >= 30) AS LooseHands, (Select Sum(TotalWinnings) from Opps where (VPIP/TotalHands) between 0.3 and 0.5 and TOtalHands >= 30) AS LooseWinnings, (Select Sum(TotalHands) from Opps where (VPIP/TotalHands) > 0.5 and TOtalHands >= 30) AS FishHands, (Select Sum(TotalWinnings) from Opps where (VPIP/TotalHands) > 0.5 and TOtalHands >= 30) AS FishWinnings, TightWinnings/TightHands*100*8 AS TightDollarsPerHundred, NormalWinnings/NormalHands*100*8 AS NormalDollarsPerHundred, LooseWinnings/LooseHands*100*8 AS LooseDollarsPerHundred, FishWinnings/FishHands*100*8 AS FishDollarsPerHundred
FROM Players
WHERE player_ID = 0;

15) Click on the X to close this window and save it as Winnings
16) Double Click on “Winnings” in your query tab to return the results

Note: The *100*8 in the query is to 1) give you a per 100 hands number and 2) multiply by 8 making the assumption that on average you are playing with 8 opponents. If you play shorthanded then change the 8 to a more appropriate number. I know this is not a completely accurate way of doing this but it is pretty close – close enough to make the point anyways. Also, I’m defining the player types completely by VPIP which also isn’t 100% accurate but again, close enough.

Also note that you can change the definitions of Tight / Loose etc by modifying the ranges in the query above.

One last note is that the result is $/100 not BB/100 so adjust accordingly.

So what are my results over about 10K hands? Overall I’m up about 5.7BB/100 playing mainly $2/$4 but now up to $5/$10 (low sample size I know) but I attribute most of this to finding fish and taking their money before someone else does.

Vs Tight Players -$0.91/100
(16434 Hands -$18.75)

Vs Normal +$18.89/100
(17537 Hands $415.00)

Vs Loose +$46.21/100
(9282 Hands $536.16)

Vs Fishies +$103.18/100
(7954 Hands $1025.91)

So try to find the fishes before I do.

rvg
Reply With Quote
  #2  
Old 10-07-2005, 03:56 PM
POKhER POKhER is offline
Senior Member
 
Join Date: Jun 2005
Location: .50/1 At Stars - LONDON, UK.
Posts: 590
Default Re: The Fish Factor - An Analysis

someone want to put this into software because i lack the effort to do it myself and dont own acess.

Nice findings though it seems, its pt uncapable of this then i assume?

p.s. Nice win rate.
Reply With Quote
  #3  
Old 10-07-2005, 04:45 PM
rvg72 rvg72 is offline
Senior Member
 
Join Date: Jun 2005
Posts: 113
Default Re: The Fish Factor - An Analysis

Well if there is interest, I could build an app that does some deeper analysis of the Poker Tracker DB...

Things like:

* The analysis on this thread
* How often do you win when you are Check Raised / Raise / Called on the Flop / Turn / River (does PT do this?)
* Breakdowns of results when you flop different hand types (over cards, middle pair, flush draw, gutshot draw etc)

I don't know - you guys throw some more ideas at me. If I get enough then I might give it a go.

rvg

[ QUOTE ]
someone want to put this into software because i lack the effort to do it myself and dont own acess.

[/ QUOTE ]
Reply With Quote
  #4  
Old 10-07-2005, 05:01 PM
lautzutao lautzutao is offline
Junior Member
 
Join Date: Apr 2005
Posts: 6
Default Re: The Fish Factor - An Analysis

This is really cool and all, but I go to the PokerTracker website to look for stuff like this.
Reply With Quote
  #5  
Old 10-07-2005, 05:21 PM
Exsubmariner Exsubmariner is offline
Member
 
Join Date: Oct 2004
Location: Now Declassified
Posts: 71
Default Re: The Fish Factor - An Analysis

yes yes make an app. post a link to download it in the software forum. Pretty interesting analysis you did.

X
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 03:03 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.