Two Plus Two Newer Archives  

Go Back   Two Plus Two Newer Archives > Internet Gambling > Software
FAQ Community Calendar Today's Posts Search

View Poll Results: What do you think of the game balance?
Heavily favored the Village 3 13.64%
Favored the Village 8 36.36%
Balanced 9 40.91%
Favored the Demons 2 9.09%
Heavily favored the Demons 0 0%
Voters: 22. You may not vote on this poll

Reply
 
Thread Tools Display Modes
  #161  
Old 07-03-2007, 12:14 PM
GSykes GSykes is offline
Senior Member
 
Join Date: Mar 2007
Location: Blogging
Posts: 3,049
Default Re: New Software: Holdem Manager

[ QUOTE ]
3-bet % stat is giving me wood

[/ QUOTE ]

This whole program is giving me a raging hard-on.
Reply With Quote
  #162  
Old 07-03-2007, 12:24 PM
rvg72 rvg72 is offline
Senior Member
 
Join Date: Jun 2005
Location: Canada
Posts: 2,342
Default Re: New Software: Holdem Manager

[ QUOTE ]
I'd like to take this a bit further. I'd like to be able to identify the average VPIP/PFR of a certain value, whether for cash games or SNGs.

[/ QUOTE ]

This is very easy to do from PostgreSQL. Once the software is out I'll post some "neat" queries on my forums and show how to run them.

Edit: Actually, there is a much easier way... Go to the Player Summary tab, check all of the stat groups on the left so that every stat for every player is returned, setup any filters (ie cash or tourney results) and then copy and paste the results into Excel and have fun!

[ QUOTE ]
I'd also like to be able to filter blinds levels in groups. Ex: in Stars, there are distinct periods. The first 2 levels, possibly 3, wouldn't be played the same as when the higher levels are reached. I'd like to be able to group these levels to get an average value of my play on them, with the average number of players too.

[/ QUOTE ]

You can build your own report that does exactly this! I'll put it together today and post in the thread so you can see how simple this is (can't do it now because I'm about to leave for work)

[ QUOTE ]
This last is important, or it skews ones read of the data. When I was still getting a handle of the data presented by PokerOffice, I noticed that my VPIP increased significantly from 50/100 to 100/200+25, and interpreted this as meaning I was getting more aggressive in the later levels. Later I realized that on average there were about 3 players less at the later level, so my increased VPIP might not actually be more aggressive, merely a natural adjustment to the number of players at the table, and I might in fact be simply just as aggressive, proportionately, not more so.

[/ QUOTE ]

You have lots of different options to group results. In fact, I'll make you two reports. One that shows by blind level with various levels grouped together and a second report that breaks down by blind level and by number of players remaining so you can clearly see what you are talking about here.

rvg
Reply With Quote
  #163  
Old 07-03-2007, 04:18 PM
eurythmech eurythmech is offline
Senior Member
 
Join Date: Nov 2004
Location: Relocated East
Posts: 2,626
Default Re: New Software: Holdem Manager

This is cash games only?
Reply With Quote
  #164  
Old 07-03-2007, 04:32 PM
rvg72 rvg72 is offline
Senior Member
 
Join Date: Jun 2005
Location: Canada
Posts: 2,342
Default Re: New Software: Holdem Manager

[ QUOTE ]
You have lots of different options to group results. In fact, I'll make you two reports. One that shows by blind level with various levels grouped together and a second report that breaks down by blind level and by number of players remaining so you can clearly see what you are talking about here.

[/ QUOTE ]

As promised, here are two new reports. You could simply copy and paste (and edit if you like) the text below and put it in your Reports folder and voila, you have the report.

#1) By Big Blind

<Report Name="by Big Blind" >
<Groupings>
<Grouping FieldExpression="BigBlind" ColumnName="Big Blind">
<Ranges>
<Range MinValue="0" MaxValue="99" RangeName="1) Less than 100" />
<Range MinValue="100" MaxValue="249" RangeName="2) 100 to 249" />
<Range MinValue="250" MaxValue="399" RangeName="3) 250 to 399" />
<Range MinValue="400" MaxValue="799" RangeName="4) 400 to 799" />
<Range MinValue="800" MaxValue="*" RangeName="5) 800 or more" />
</Ranges>
</Grouping>
</Groupings>
<DefaultStats>
<DefaultStat FieldName="TotalHands" />
<DefaultStat FieldName="VPIPPct" />
<DefaultStat FieldName="PFRPct" />
<DefaultStat FieldName="LateUOVPIPPct" />
<DefaultStat FieldName="LateUOPFRPct" />
<DefaultStat FieldName="ThreeBetPct" />
<DefaultStat FieldName="ColdCallPct" />
<DefaultStat FieldName="FoldBBToStealPct" />
<DefaultStat FieldName="FlopContinuationBetPct" />
<DefaultStat FieldName="TurnContinuationBetPct" />
<DefaultStat FieldName="FlopFoldedToContinuationBetPct" />
<DefaultStat FieldName="TurnFoldedToContinuationBetPct" />
<DefaultStat FieldName="PostflopAggressionFactor" />
</DefaultStats>
</Report>

and the result is (note, this was back in the day when Party's blinds were much lower which explains why the # hands in each level seem off):



Here is the second report which breaks down both blinds and players remaining. You don't need to group results but I find it makes results much neater and easier to digest.

<Report Name="by Big Blind and Players" >
<Groupings>
<Grouping FieldExpression="BigBlind" ColumnName="Big Blind">
<Ranges>
<Range MinValue="0" MaxValue="99" RangeName="1) Less than 100" />
<Range MinValue="100" MaxValue="249" RangeName="2) 100 to 249" />
<Range MinValue="250" MaxValue="399" RangeName="3) 250 to 399" />
<Range MinValue="400" MaxValue="799" RangeName="4) 400 to 799" />
<Range MinValue="800" MaxValue="*" RangeName="5) 800 or more" />
</Ranges>
</Grouping>
<Grouping FieldExpression="NumberOfPlayers" ColumnName="# Players">
<Ranges>
<Range MinValue="2" MaxValue="2" RangeName="1) Heads Up" />
<Range MinValue="3" MaxValue="3" RangeName="2) 3 Handed" />
<Range MinValue="4" MaxValue="5" RangeName="3) Bubble (4-5 players)" />
<Range MinValue="6" MaxValue="8" RangeName="4) Mid Game (6-8 players)" />
<Range MinValue="9" MaxValue="10" RangeName="5) Early Game (9-10 players)" />
</Ranges>
</Grouping>
</Groupings>
<DefaultStats>
<DefaultStat FieldName="TotalHands" />
<DefaultStat FieldName="VPIPPct" />
<DefaultStat FieldName="PFRPct" />
<DefaultStat FieldName="LateUOVPIPPct" />
<DefaultStat FieldName="LateUOPFRPct" />
<DefaultStat FieldName="ThreeBetPct" />
<DefaultStat FieldName="ColdCallPct" />
<DefaultStat FieldName="FoldBBToStealPct" />
<DefaultStat FieldName="FlopContinuationBetPct" />
<DefaultStat FieldName="TurnContinuationBetPct" />
<DefaultStat FieldName="FlopFoldedToContinuationBetPct" />
<DefaultStat FieldName="TurnFoldedToContinuationBetPct" />
<DefaultStat FieldName="PostflopAggressionFactor" />
</DefaultStats>
</Report>



rvg
Reply With Quote
  #165  
Old 07-03-2007, 04:34 PM
joco joco is offline
Junior Member
 
Join Date: Jun 2005
Posts: 4
Default Re: New Software: Holdem Manager

Really looking forward to this. I hope you will add Prima and iPoker support.
Reply With Quote
  #166  
Old 07-03-2007, 05:02 PM
Unabridged Unabridged is offline
Senior Member
 
Join Date: Jun 2005
Posts: 968
Default Re: New Software: Holdem Manager

when you release the beta, if it has a expiration date make sure it gives plenty of overlap. there is nothing worse than a program you are addicted to dying and the full version is not for sale yet or you are waiting for a regcode.
Reply With Quote
  #167  
Old 07-03-2007, 05:19 PM
garvin garvin is offline
Junior Member
 
Join Date: Feb 2006
Posts: 23
Default Re: New Software: Holdem Manager

Maybe everyone should cool down. Lets gets this into beta, and then hopefully into release. In software, talk is easy - delivery is everything (or at least much).

rvg, dont promise too much to too many, but get a stable product delivering much of what has been talked about to the basic sites and you will have a winner.

With all due respect, PT and PAHUD has been stable, updated and delivered for a long time, and until proven differently they remain the prominent products in this field.
Reply With Quote
  #168  
Old 07-03-2007, 05:52 PM
K䲰䮥n K䲰䮥n is offline
Senior Member
 
Join Date: May 2006
Posts: 3,616
Default Re: New Software: Holdem Manager

[ QUOTE ]
Maybe everyone should cool down. Lets gets this into beta, and then hopefully into release.

[/ QUOTE ]

Reply With Quote
  #169  
Old 07-03-2007, 11:07 PM
czGLoRy czGLoRy is offline
Senior Member
 
Join Date: Aug 2006
Location: Flagstaff az
Posts: 276
Default Re: New Software: Holdem Manager

wow, this looks awesome. Im not sure if I missed something, but is there a link for a website/download for the public beta or is that not released yet? I would like to try it out.
Reply With Quote
  #170  
Old 07-04-2007, 05:12 AM
Sigurd Sigurd is offline
Senior Member
 
Join Date: Jul 2005
Location: Denmark
Posts: 1,012
Default Re: New Software: Holdem Manager

Somewhere RVG wrote that the public beta is planned for 15th july. I'm sure that he will post a link in this thread, and that it will grow dramatically in size when he does..
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 01:07 AM.


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