PDA

View Full Version : Pokertracker Masters with the export note program I forget name


RED_RAIN
05-12-2004, 08:38 PM
You know that VB one that takes your stats from pokertracker and gives stats.

What I'm wondering if you want to know someone's post flop loose/tightness what number matters more and also what does each tell us?

VPIP ? versus WentSD %

And on a side note what makes this stat?

StealBlind?

illunious
05-20-2004, 01:37 AM
I wrote a VB app that exports party and empire notes from the pokertracker DB. The latest version of pokertracker exports stats to many different client notes so the program I made is really outdated.

For advice on how to rate players by their stats, MS Sunshines post is the bestest advice I know of. I don't have the new link (now in the "older archives"), but I'll copy and paste this:

If xSawFlop < 15 Then
xTightLooseRating = "VeryTight"
ElseIf xSawFlop < 22 Then
xTightLooseRating = "Tight"
ElseIf xSawFlop < 27 Then
xTightLooseRating = "MedTight"
ElseIf xSawFlop < 34 Then
xTightLooseRating = "MedLoose"
ElseIf xSawFlop < 50 Then
xTightLooseRating = "Loose"
Else
xTightLooseRating = "VeryLoose(" & xSawFlop & "%)"
End If


If xPFR < 3 Then
xAgPassiveRating = "Passive"
ElseIf xPFR < 7 Then
xAgPassiveRating = "MedAggressive"
ElseIf xPFR < 11 Then
xAgPassiveRating = "Aggressive"
ElseIf xPFR < 16 Then
xAgPassiveRating = "VeryAggressive"
Else
xAgPassiveRating = "Maniac(" & xPFR & "%)"
End If