Wednesday, May 28, 2008

SNE Quest - May 28: More Upswongs

VPP COUNT: 377152

As long as I don't go on a massive downswing during my last session, today will be my 6th winning day in a row! This brings my total profits for the month way beyond my previous record, and there are still 3 days left.

My hourly rate just continues to go up, and I'm very confident I'll hit my target profit for the year.

Mary and I decided that instead of going to Maui for our honeymoon, we want to go to Ecuador + The Galapagos. We had just assumed we were going to Maui this whole time, but since we had already been there, felt like we should explore our options more. Last night, somehow The Galapagos came up in a conversation, and both of us instantly came to the same conclusion at the same time before a word was spoken. It was definitely a great choice. To prepare, we downloaded the HD Discovery Galapagos series, and will be watching those sporadically over the next months.

Sophys half-birthday is tomorrow. The past 6 months have just flown by.

May, especially, has been an amazing month.

Saturday, May 24, 2008

SNE Quest - May 24: Best month ever.

VPP COUNT: 365106

I've been doing extremely well this past week, and even with 1 week left in the month, May '08 is already the best month I've ever had.

On Thursday, I decided to look over my stats for the year at 400$ buyin and above. I had ~115k hands worth of data, and it was very clear that I am ahead of those games. For whatever reason, I've been playing primarily $200 buyin for the majority of the year. I guess it is just easy to get comfortable when you are at a level you are 100% sure you can beat, and moving up can be a bit more intimidating. Not any more.

So, from Thursday until today, more than 80% of my played hands were at NL400 or above. I still had 20% NL200 because in the mornings you cant always get 24 tables at higher stakes.

I've been on a very nice upswing since I moved up as well, with about 30k hands logged in the past 3 days. Despite quite a few large+disappointing hands, I've just been blowing these tables away. This means more VPPs and more $ per hour of work.

Lately, I've been making more "outside the box" plays as well, and fighting harder in more marginal situations. I've actually been caught bluffing a few times, which rarely used to happen before. This has been helping my image, and helping me get looser calls.

I'm only ~30k VPPs away from being on pace now. Really making progress. By the end of June, I should easily be back ahead of schedule, barring any burnout episodes.


On top of being extra-productive at the tables, Mary and I have fixed up our yard big-time. Thanks to Stars' concierge service for "paying" for the supplies. It has also been much easier for me to balance family with work lately. It is probably easy because I don't have many other distractions at the moment.

I'd like to end this blog post with some words of praise for the PokerStars Concierge Service. They have been extremely flexible and prompt with all of my requests. Having intelligent and helpful customer service has been such a breath of fresh air (compared to -many- other sites), and has made the SNE challenge more enjoyable. Kudos.

Friday, May 23, 2008

24-Tabling Like a Pro: Part III

Autohotkey is a free program that helps you automate tasks on your computer. You can get it at http://www.autohotkey.com/. There is plenty of reference material on the website if you want to tinker around with the programming language. It is pretty simple and easy to learn the basics, and I would suggest any serious online poker player (or anybody who uses their computer for a large portion of their day) to become acquainted with it. A little AHK knowledge can go a long long way.

I'll be discussing some of the pre-made scripts that you can use to speed up your actions. I did not have anything to do with the creation of these scripts, I just mooch them :) The talented guys at overcards.com are the ones who put these together.

BetPot
http://forumserver.twoplustwo.com/showthread.php?t=379
This is a script that you can use to automate all of your table actions - including your bet sizing. There is plenty of how-to explanation in the thread, but the important thing to remember is that you can customize all of your actions to basically anything you want. I've heard of people even using video game controllers. Being the computer nerd that I am, I was most efficient with all of my table actions programmed to my mouse.

MY SETUP
Logitech G9 Mouse
I chose this mouse because it was quick, efficient, customizable (2 "body" choices, and the option to add/remove weight). Betpot works with the mouse very well.
Left Click: Standard
Right Click: Fold
Side Button1: Call
Side Button2: Raise
Scroll Wheel Up/Down: Increase/Decrease bet size
Scroll Wheel Press: Pot size raise

With this configuration, I really only ever need to use my right hand to play all 24 tables. I don't even need to aim. I just need to have my mouse over the table. This leaves your left hand free to take care of other things.

Stars Planner
http://forumserver.twoplustwo.com/showthread.php?t=398
This is a great script that helps you save LOTS of clicks while playing. You can set it to automatically buy in for you, to keep the Stars lobby activated at all times (most multitablers know how much of a pain it is to have to reactivate stars every time you join a table), and quite a few other options. It increases multitabling efficiency dramatically, and I'd suggest giving it a try. I use version 0.4d, which has always been extremely stable for me.

I personally do not like the autoreloader scripts, as they interfere with a stacked table layout. With Stars Planner, all you need to do is click Options...>Add more chips, and the script takes care of the rest. Very easy.


*LEARN AHK*
The possibilities are endless for making poker and other computer related tasks more efficient. A very basic understanding of the language will be all you need to be able to customize other scripts, or make your own.
Here's just a small example of a simple one I use, which has helped very much.

SetTitleMatchMode, 2

Home::
WinGetActiveTitle, Title1
WinMove, %Title1%,, 0, 0
return

End::
WinGetActiveTitle, Title1
WinMove, %Title1%,, 0, 600
return

PgUp::
WinGetActiveTitle, Title1
WinMove, %Title1%,, 800, 0
return

PgDn::
WinGetActiveTitle, Title1
WinMove, %Title1%,, 800, 600
return

You can change the X and Y coordinates to whatever works for you. This is a script that simply moves the active window to 1 of 4 spots on your screen, using the Home, End, PgUp, and PgDn keys.

I use this script constantly. When I have my stack of 24 tables going, and I get a hand where I need to pay more attention, or want to see the results of, I can just hit 1 key and move it to an open area of the screen. 23 tables stay in the normal spot, and the 1 important table is visible without being interrupted. Once the hand is over, 1 keystroke brings it back.

There are tons of other various pre-made scripts in the 2+2 software forums. The ability to customize them, or to use bits and pieces of them with other scripts is a great asset.

Some other suggestions of poker-related scripts one might write:
-A "Startup" script that runs PT and starts an auto-import, PAHud, Poker Lobby, 2+2, etc
-A script to block you from looking at your cashier or PT stats, which is a nasty counter-productive habit we tend to develop.


The specifics of AHK really can't be covered in this article, though. There are hundreds of pages of documentation on autohotkey.com, which are what I used to learn the language. The purpose of this part of the article is more to stress the importance of learning AHK, and show what is possible when it is used correctly. You don't need to be good enough to write all of the scripts yourself - you just need to be good enough to mooch other peoples work and adapt it to fit your own style.

Saturday, May 10, 2008

24-Tabling Like A Pro: Part II

Pretty much everybody who plays online poker seriously is at least aware of HUDs, if not using them already. To get a reasonable read on a high volume of tables, you NEED to be able to make your observations and decisions in a matter of seconds. Setting up an efficient personalized HUD is a key weapon in any multitabler's arsenal. I only use PAHud, but the ideas should be able to be applied to any working HUD.

Most people generally stick with the basic VPIP/PFR/AAF/#Hands default HUD statistics. If I had to pick only 4 stats, I would stick with these as well. For people who are playing ~12 tables or less, you are able to just click on the players name for a more detailed set of statistics. Mega-tablers don't have time for this. We need all of our information to be a glance away.

CHOOSING YOUR STATISTICS
Now, I wouldn't recommend increasing the number of statistics you use too quickly. It is very easy to "information overload" yourself if you are not used to looking at more numbers. When adding statistics, go for 1 or 2 at a time - practice with it - and stick with it if it makes a positive difference in your game.

Valuable non-default statistics:
Each of these categories has a multitude of related statistics that you can use.
Blind Stealing/Defense%- Not only does it let you know how likely the player is to steal, when compared with the players vpip/pfr, you can quickly learn how position-conscious the player is, and size him up accordingly.
Street-by-Street Aggression/Action%- Self-explanatory.
CBetting% - There are quite a few stats involving c-bets that you can use. Both on the offensive and the defensive. Since c-betting is such a large part of holdem, these stats are great to have on hand.
Showdown% - While valuable, showdown statistics do not converge until you have a decent sample size on the individual. Even 5k+ hand samples can be very skewed, as a low % of hands actually go to showdown. This stat, however, can be a big factor in your decision to value-bet that river.

Of course there are plenty of other statistics to choose from, and quite frankly, MOST of them can be valuable. There is no "best" HUD setup, it is a tool that you need to completely customize to fit your personal play style.


COLORS:
This is not nearly as important as the statistics you choose, but it is a very important factor in speeding up your player-reading. The 2 seconds it takes you to process a players data can very easily be reduced to 1 second or less with a good intuitive color scheme. I'm not going into very much detail about this, because it needs to be personalized to fit your play. I will say, however, that the standard Red=LAG Green=NIT with shades in between worked very well for me.


DATABASE:
For those of us who have been doing this a long time, some of us have millions of hands worth of data on our opponents. And as valuable as this data is, how many of your opponents do you think have been playing the exact same way for the last 6 months? The last year? Maybe some of the nitty regulars will keep the same style for this long, but most players constantly change their game. Starting a new database every 1/2year or more helps your stats to reflect your opponents more current style.


GENERAL TIPS:
- The more stats you use, the more CPU it takes to load them. Combined with PT imports, 24 stars tables, music, and whatever else you are running, this is definitely something you want to keep in mind while playing. Alt+Ctrl+Del gives you a pretty decent idea of how bad of a resource hog it is.
- When PAHud first loads the stats of a table, it activates the table, popping it up. This can be a pain in the ass when stacking - especially when loading new tables. Be ready for some table-hunting if your HUD ever crashes.
- Generally be aware of how long it takes for stats to converge. Preflop stats converge quickly, gradually requiring more and more hands as you get to river statistics. You can't make a decision based on a player whose river AF is 0 when you only have a few hundred hands on him.


It's all about efficiency. Every stat you add contributes to your ability to read an opponent, but takes a bit more time to process. Find yourself a happy medium. Before long, your screen will look like The Matrix, but all you'll really see is "Blonde"..."Brunette"..."Red Head"... Ok I'm a nerd.

Next Section: AHK

Thursday, May 08, 2008

24-Tabling Like A Pro: Part I

I've been multi-tabling since the beginning of my poker career, ~4 years ago. It really has been a gradual progress from 1 - 4 - 12 - 18 - 24. I remember how mind-boggling it seemed when I watched RainKhan's YouTube video where he was playing 32 tables or whatever. If you aren't used to making decisions that quickly, it really can seem impossible - but it is a learned skill.

There are a few very important tools necessary to maximize your efficiency and play that many tables. I'll be covering Table Layout, PAHud, and AutoHotkey Scripts.


TABLE LAYOUT
There are 3 general ways to set up your tables. Tiled, Cascaded, or Stacked. Pokerstars has automatic Tile/Cascade settings, but I suggest fully personalizing your setup. Keep in mind, these layout options are all assuming that you play on PokerStars, where they have an efficient way of popping up tables that require action.

TILE
Benefits:
- Table Action is constantly available to see.
- Less tables = better table selection.
- Better reads and player dependant plays.

Drawbacks:
- More time spent moving/aiming mouse
- Significantly more head/neck/eye movement
- Generally need 2+ good monitors

Ideal for 2-8 tables. Now that table-resizing is a normal feature, you can usually fit 9 tables on a good 1600x1200 monitor. I was tiling 18 tables at one point. This layout works until your tables just start to take up too much room and the head/neck movement gets to be a problem. 18 tables was the most I could tile.

CASCADE
Benefits:
- Can fit 24 tables on a single 1600x1200 monitor

- Reduced mouse movement time

- Much less head/neck/eye movement
- A small cure for results-oriented thinking!
Drawbacks:
- Difficult to impossible to follow action on tables where you are not in a hand.
- Even in the hands where you are involved, you often do not see the action until it is your turn to act.
I had to switch to cascaded mode simply because my 2 monitors could not fit more than 18 tables. A cascade is where the tables are lined up diagonally across your desktop. 24 is basically the maximum I could fit in 1 cascade, but there is plenty of blank space left on the monitor. The thing you really need to get used to, though, is the fact that you will often not see the results of your hands. It really only took me a day to get used to that drawback, but in the long run I think it could actually be helpful. You no-longer have the option of spending 5-10 seconds watching for the results of a hand. And by the time that table pops up, whatever emotion you would have wasted on that beat/win will be very diminished.

STACK
Benefits:
- Nearly no mouse movement or aiming required

- All decisions and information is within the same small square

Drawbacks:
- In addition to the drawbacks of the cascade, the stack is just a bit more difficult to review and follow previous hands.
In my opinion, the stack is the most efficient table layout you can have. All of your tables are stacked on the same position, and the table with the most urgent action is always on top. You barely need to move your mouse or your eyes at all. All of your energy and attention is focused on making the correct decisions.

An important change that I make when I stack is moving my start bar to the left side of the screen. This allows all 24+ tables to be listed, instead of grouping them all together into "Pokerstars (24)" or whatever. In addition, I believe Windows Vista users have the feature where you can hold your mouse over each table name in the start bar, and get a small preview of that table. I use XP though, and do not use this feature.

With the start bar on the left, and all of your tables stacked in one spot - it is easier to make quick accurate decisions with minor mouse movement. When you do happen to miss some action or need to hop to a different table, it is just 1 click away on your start bar.

RESULTS
I would say that for most people, a Tiled layout is the most efficient if you are planning on playing 12 tables or less.

If you want to learn to play more than 12 tables, I highly suggest finding a stack layout that will work for you. It does not take long to get used to, and it can really increase your hands/hr.


Check back soon for parts II and III, where I will explain:
-How to optimize your HUD for quicker, more detailed reads.
-How to use AHK to immensely speed up your clicking process, and make all of your actions and bet sizing with your mouse alone (I do all of my 24 tabling with 1 hand).

Wednesday, May 07, 2008

SNE QUEST - May 7: 300k VPP Milestone!

VPP COUNT: 300031

I hit this milestone about a month late, but it's all good.

For the past 10 days or so, I have been back to my usual routine, and have averaged about 5h/day. After the 6th full day of May, I've put in 30 hours, and that is including a day-off.

The results for May have been pretty solid so far as well. My "Kelisitaan Style" (which mostly just consists of open min-raising and stealing more) had proven to be pretty effective so far. I'm seeing about a 30% increase in my win rate. This is even after the fact that I have been running bad at the 400+ buyin games, but good at the 200$ games. I also only have a 43k sample size - which is maybe half of what I'd like to have a comfortable estimate.

24-tabling has already become the norm for me, and quite frankly, I feel like I could play more tables. 24 is a good number though, because to make another significant increase in vpps/hr would require enough tables that I would not be able to concentrate nearly as well. So the ~750vpps/hr range is a great place to stay for a while.

Friday, May 02, 2008

SNE Quest - May 2: I wanna be like Kelisitaan

VPP COUNT: 283998

I have been playing a very solid amount of poker these past 4 days. Still 24 tabling, still pulling in a nice pile of green, still pulling in about 750vpps per hour.

"Kelisitaan" is a player who arguably has one of the highest sustainable $/hr win rates of any online poker player. This guy posts his graphs at the end of the month in the Stars Regulars thread on 2+2, and has proved that he can break 100k$ 5 months in a row. He will also more than likely be a SNE by the end of the year.

The interesting thing is, Keli uses a style that was pretty much considered bad play until a few months ago. He min-raises a lot preflop, which allows him to be more aggressive when stealing blinds, and gives him more maneuverability because the initial pot size starts much smaller. I decided to "adopt" his strategy, and mix it in with my own. I'll probably be using this hybrid min-raising strategy for at least the first week of May, and comparing results.

If May 1st was an indicator of how effective this strategy will be - I may make it a permanent piece of my game.

Thank you, Kelisitaan! By coming out and showing us your success, you've undoubtedly inspired dozens of future copycats :).