Poker-AI.org
http://poker-ai.org/phpbb/

HUNL SNG Antes
http://poker-ai.org/phpbb/viewtopic.php?f=26&t=2617
Page 1 of 1

Author:  cantina [ Sat Oct 19, 2013 5:32 pm ]
Post subject:  HUNL SNG Antes

I was wondering what the typical ante levels were for HUNL Super/Hyper Turbo SNGs across different casinos? I was also wondering how some of you handle them in the context of your strategy use/development, as they're sometimes there and sometimes not, given any particular effective stack size.

Author:  Nose [ Tue Nov 05, 2013 7:57 am ]
Post subject:  Re: HUNL SNG Antes

Nasher wrote:
I was wondering what the typical ante levels were for HUNL Super/Hyper Turbo SNGs across different casinos? I was also wondering how some of you handle them in the context of your strategy use/development, as they're sometimes there and sometimes not, given any particular effective stack size.


I haven't really though about it in depth but when looking at the two naïve approaches 1) and 2) [...]

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

1) Lower bound (Ignoring ANTE): In this case your bot will play too tight since your bot is assuming the pot being too small
2) Upper bound (Distributing ANTE):

Let A be ante, S_old be the small blind and B_old be the big blind, so at the beginning of each hand let the pot be: (LaTeX-Plugin for the forum pleaseeee)

Code:
P = 2*A + S_old + B_old,

A := Ante
S_old := Small blind
B_old := Big blind


You can now let

Code:
P' = S_new + B_new,

S_new := S_old + 2 * (1/3) * A
B_new := B_old + 2 * (2/3) * A


resulting in the new effective stack size E_new (in BB)

Code:
E_new := E_old * (B_old / B_new)

for each player


which would lead to your bot being too loose since it is assuming the pot being too large

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

[...] it turns out that the truth lies somewhere between these two approaches. Two quick fixes for approximating the truth could be:

1) Modifying effective BB-Size: B_new = f(A) * B_old (with a somewhat smart function 1 <= f(A) <= 2 * (2/3) * A)
2) Playing preflop according to your \sigma_i and manipulate the size of the modeled pot on later streets to match the actual pot size (i.e. bet slighly larger portions of the pot than your model would suggest such that the pot size of your model P_mod == P_real (the actual pot size) when being all-in)

Ya ... something like that ... :)

Page 1 of 1 All times are UTC
Powered by phpBB® Forum Software © phpBB Group
http://www.phpbb.com/