SimpleICM

So after programming almost exclusively on Unix for the last 10 years, I recently found myself doing some windows desktop development.

And since a significant portion of those years were spent programming in python, I started playing around with IronPython as a way to explore the Windows API. One of the projects I build as a learning exercise is SimpleICM.

SimpleICM is a poker tournament equity calculator. You give it the stack sizes of the players left in a poker tournament, along with the payout structure for that tournament and it calculates each players tournament equity according to the Independent Chip Model.

If you don’t play a lot of poker tournaments and study tournament theory then this probably doesn’t mean much. But professional poker tournament players need to do these calculations daily while reviewing their play and practicing making correct decisions etc. If you’re interested, check out this example of an equity calculation using SimpleICM.

It’s written using IronPython. You can download the application from here and you can get the source from the git repository.