Page 1 of 1
how to get to statistics a betting limit
Posted:
Sat Aug 23, 2014 6:53 am
by jarvan
Hello,
need advice on how the statistics define terms for the betting limit.
This is me on the resolution / fixed limit holdem 6max 0.10 - 0.20 USD / fixed limit holdem 6max 0.25 - 0.50 USD /...../ on Pokerstars
What field do I have to use it and how to define the appropriate limit
Thanks
Re: how to get to statistics a betting limit
Posted:
Sat Aug 23, 2014 7:14 am
by 4StarGen
Open pgAdmin, then do a simple SQL query
- Code: Select all
SELECT * FROM cash_limit
You will get a table with all the info you require, after you see the whole table you can decide which column you would like to use
Re: how to get to statistics a betting limit
Posted:
Sat Aug 23, 2014 4:32 pm
by jarvan
Thanks for your reply.
No, no, my point is, learn how to work in custom HUD stats with game limits. Add to some of my stats / HUD / condition of a limit game (eg number of hands played in the limit / fixed limit holdem 6max from 0.10 to 0.20 USD /).
Re: how to get to statistics a betting limit
Posted:
Sun Aug 24, 2014 10:25 am
by kraada
See
this guide for the basics on custom statistics creation and
this guide for a deeper walkthrough. The latter was written for PT3 but the techniques all apply to PT4, the interface is just slightly different. You can also test the big blind size with cash_limit.amt_bb
Re: how to get to statistics a betting limit
Posted:
Tue Aug 26, 2014 4:02 am
by WhiteRider
Just to make sure you're aware; you can configure the Hud to show stats for the current cash game limit only by enabling the 'Stats from current cash stake only' option in Hud > Edit Hud Options > General Settings.
Re: how to get to statistics a betting limit
Posted:
Tue Aug 26, 2014 10:39 am
by jarvan
Problem solved.
Thanks for your time.
- Code: Select all
AVG FL stakes played
( handplayed_FL04*0.04 + handplayed_FL10*0.1 + handplayed_FL100 + handplayed_FL1000*10 + handplayed_FL100000*100 + handplayed_FL20*0.2 + handplayed_FL200*2 + handplayed_FL2000*20 + handplayed_FL3000*30 +
handplayed_FL400*4 + handplayed_FL50*0.5 + handplayed_FL600*6 + handplayed_FL6000*60 ) / ( handplayed_FL04 + handplayed_FL10 + handplayed_FL100 + handplayed_FL1000 + handplayed_FL100000 + handplayed_FL20 + handplayed_FL200 + handplayed_FL2000 + handplayed_FL3000 + handplayed_FL400 + handplayed_FL50 + handplayed_FL600 + handplayed_FL6000 )
.....
sum( if[ cash_limit.limit_name LIKE '$0.25/$0.50 (6 max)' and cash_hand_player_statistics.id_hand > 0, 1, 0 ])
.
.
.