npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

holdem-monte-carlo-evaluator

v0.6.5

Published

javascript win/tie/loss evaluator for known Texas Hold'em hands vs unknown opponent hands, using the npm adaptation of 2+2 pascal evaluator (poker-evaluator). Useful input for poker bots' decision-making.

Downloads

66

Readme

holdem-monte-carlo-evaluator

javascript win/tie/loss evaluator for known Texas Hold'em hands vs unknown opponent hands, using the npm adaptation of 2+2 pascal evaluator (poker-evaluator). Useful input for poker bots' decision-making.

Parameters

holdemMonteCarlo(hand,board,numberOpponents,opponentLags,numberRuns)

hand is an array of length two, either strings or integers

board is an array of length 0 to 5, either strings or integers -- but hand/board must match type!

numberOpponents is an integer between 1 and 9 (I think it can handle 10+, but haven't tested)

opponentLags is an array of length 0 to numberOpponents, each a number 0 to 1, specifying each opponent's tendency to be Loose-AGgressive (LAGgy) in this situation. It is like a filter value specifying the opponent's range. For example, pre-flop, a player who plays 80% of hands would have a lag of .8 (80%). Pre-flop "lags" for this function can be thought of as VPIP (Voluntarily-Put-money-In-Pot). A player with a VPIP of .15 has a lag of .15, whereas a player who plays ATC (any two cards) has a lag of 1. Default value for unspecified lags is 1. Loose maniacs have lags close to 1 anyway, so it's a good approximation for unknown players - lol. There's probably a significant error in "chaining" lags together from street to street, plus lots of human players play "ranges" instead of perfectly clear cutoffs. Nonetheless, using a player's VPIP/lag value on a street is quite useful for approximating the odds of one's hand win/lose/tie -ing against certain opponents.

numberRuns is integer number of Monte Carlo simulated hands to run. Adjust this up or down depending on time constraints, processing power, and needed accuracy.

Example 1: (no lags specified, lags default to 1, Aces win a simulated 73% of the time all-in preflop vs 2 loose maniac opponents playing their full ranges, or ATC - any two cards:

holdemMonteCarlo(["As","Ad"],[],2,[],100000)'

Hand: As,Ad
Board: , 2 opponents, 100000 runs
won: 73.31%
tied: 0.56%
lost: 26.13%

(actual odds: 73.6% win, .5% tie, 25.9% lose)

Example 2: Aces' value diminishes all-in against 2 tighter opponents who each only play the top 20% of hands pre-flop

holdemMonteCarlo(["As","Ad"],[],2,[".2",".2"],100000)'

Hand: As,Ad
Board: , 2 opponents, 100000 runs
won: 53.92%
tied: 4.75%
lost: 41.33%

05-26-20: The Monte Carlo simulation assumes that players are perfectly rational in folding their worst X% of their range. In reality, players aren't perfectly rational, and probably fold mostly their worst X%, but also fold some hands above that cutoff, and fail to fold some hands below that cutoff. It may be GTO to play this way, but I'm too lazy to 'fuzz' the cutoff. If it matters to other users, I could make that adjustable.

Example Usage:

holdemMonteCarlo(['As','Ac'],['9h','Ah','Jc'],5,['.2','.2','.2','.2','.2'],1000000);

holdemMonteCarlo([51,52],[9,50,36],5,['.2','.2','.2','.2','.2'],1000000);

(recommend using numbers to represent cards for ~2x speedier lookup)

Return Values

object { results:results handOdds:handOdds }

returnObject.results.wins returnObject.results.ties returnObject.results.losses returnObject.results.runs

returnObject.handOdds is an array where player 0 is the bot, opponents are 1,2,3,4...

returnObject.handOdds[x] is an object with percent likelihood of player x achieving various hands, for example:

returnObject.handOdds[0]= { hicard:0, pair:7, twopair:42, trips:36, straight:10, flush:0), FH:4, quads:1, straightflush:0, }

Example Console Output:

Hand: As,Ac

Board: , 5 opponents, 1000000 runs

won: 48.97%

tied: 0.57%

lost: 50.46%

(actual 49.5% win, .6% tie, 49.9% lose)

This table is helpful for converting cards as strings to numbers for ~2x speedier lookups in poker evaluator:

cards:

"2c": 1,

"2d": 2,

"2h": 3,

"2s": 4,

"3c": 5,

"3d": 6,

"3h": 7,

"3s": 8,

"4c": 9,

"4d": 10,

"4h": 11,

"4s": 12,

"5c": 13,

"5d": 14,

"5h": 15,

"5s": 16,

"6c": 17,

"6d": 18,

"6h": 19,

"6s": 20,

"7c": 21,

"7d": 22,

"7h": 23,

"7s": 24,

"8c": 25,

"8d": 26,

"8h": 27,

"8s": 28,

"9c": 29,

"9d": 30,

"9h": 31,

"9s": 32,

"tc": 33,

"td": 34,

"th": 35,

"ts": 36,

"jc": 37,

"jd": 38,

"jh": 39,

"js": 40,

"qc": 41,

"qd": 42,

"qh": 43,

"qs": 44,

"kc": 45,

"kd": 46,

"kh": 47,

"ks": 48,

"ac": 49,

"ad": 50,

"ah": 51,

"as": 52