Stats based only on hands played vs hero ?

General discussion of PokerTracker 3.

Moderator: Moderators

Re: Stats based only on hands played vs hero ?

Postby WhiteRider » Mon Oct 24, 2011 3:21 am

The last one.
WhiteRider
Moderator
 
Posts: 54017
Joined: Sat Jan 19, 2008 7:06 pm
Location: UK

Re: Stats based only on hands played vs hero ?

Postby Darvini » Mon Oct 24, 2011 7:29 am

So 4bets screw up stats about to what sized steals people fold to. We can get the right number of folds to certain steal size, but not the right number of opportunities to fold to that size.
Darvini
 
Posts: 182
Joined: Fri Oct 30, 2009 12:15 pm

Re: Stats based only on hands played vs hero ?

Postby Darvini » Mon Oct 24, 2011 7:59 am

Or does it. We can count the size of the steal from blinds 3bet size if there was a 4bet.
Darvini
 
Posts: 182
Joined: Fri Oct 30, 2009 12:15 pm

Re: Stats based only on hands played vs hero ?

Postby kraada » Mon Oct 24, 2011 9:49 am

I'm not sure I understand your suggestion entirely - if people vary their 3bet size independently of raise size, wouldn't that cause problems?
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: Stats based only on hands played vs hero ?

Postby Darvini » Mon Oct 24, 2011 11:43 am

Lets say button steals to amount x and bb 3bets. Now we have:

amt_p_raise_made_pct = amt_p_raise_made / (sb+bb+x)
x = (amt_p_raise_made / amt_p_raise_made_pct) - sb -bb
Darvini
 
Posts: 182
Joined: Fri Oct 30, 2009 12:15 pm

Re: Stats based only on hands played vs hero ?

Postby kraada » Mon Oct 24, 2011 12:05 pm

Ah I see - yes that will work.
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: Stats based only on hands played vs hero ?

Postby Darvini » Mon Oct 24, 2011 1:17 pm

So I made my three columns.

[Edit/Kraada: Removed as they had issues; they're fixed later in this thread]

Now these should count for all actions from the blinds againsta a button or CU steal that is under 2.5 bb right? I made the form such that I can just place the required steal amount in bb:s instead of percentages of pot. So its easier to modify but more difficult to read.

Also shouldnt the permanent sb call to steal column:

cnt_sb_steal_call
sum(if[holdem_hand_player_statistics.flg_blind_def_opp AND holdem_hand_player_statistics.flg_blind_s AND lookup_actions_p.action LIKE 'C', 1, 0])

have lookup_actions_p.action LIKE 'C%' instead? I dont even know what have lookup_actions_p.action LIKE 'C' actually means. Is it the same as = 'C' or LIKE '%C%' or what.
Darvini
 
Posts: 182
Joined: Fri Oct 30, 2009 12:15 pm

Re: Stats based only on hands played vs hero ?

Postby Darvini » Mon Oct 24, 2011 1:34 pm

Oh, I noticed a problem in my cnt_blcall_s column. It should have lookup_actions_p.action = 'C' to disregard squeezes from the bb that would make the steal amount unknowable. Ok, just a little smaller sample size but no affects on the reliability of the stat.
Darvini
 
Posts: 182
Joined: Fri Oct 30, 2009 12:15 pm

Re: Stats based only on hands played vs hero ?

Postby Darvini » Mon Oct 24, 2011 3:13 pm

Found another mistake so Ill repost my columns here corrected. Now they are giving believable results.

cnt_bl3B_s
sum(if[ (holdem_hand_player_statistics.flg_p_3bet and holdem_hand_player_statistics.flg_blind_def_opp and 2.5 > (((holdem_hand_player_detail.val_p_raise_made_pct / 100) / holdem_hand_player_detail.amt_p_raise_made) - (holdem_limit.amt_sb+ holdem_limit.amt_bb + holdem_hand_player_statistics.cnt_players * holdem_hand_player_detail.amt_ante)) / holdem_limit.amt_bb), 1, 0])

cnt_blcall_s
sum(if[ (holdem_hand_player_statistics.flg_blind_b and holdem_hand_player_statistics.flg_blind_def_opp and lookup_actions_p.action = 'C' and ((holdem_hand_player_detail.val_p_raise_facing_pct / 100) * (holdem_limit.amt_sb + holdem_limit.amt_bb + holdem_hand_player_statistics.cnt_players * holdem_hand_player_detail.amt_ante) + holdem_limit.amt_bb) / ((1 - holdem_hand_player_detail.val_p_raise_facing_pct / 100) * holdem_limit.amt_bb) < 2.5) or (holdem_hand_player_statistics.flg_blind_s and holdem_hand_player_statistics.flg_blind_def_opp and lookup_actions_p.action = 'C' and ((holdem_hand_player_detail.val_p_raise_facing_pct / 100) * (holdem_limit.amt_sb + holdem_limit.amt_bb + holdem_hand_player_statistics.cnt_players * holdem_hand_player_detail.amt_ante) + holdem_limit.amt_sb) / ((1 - holdem_hand_player_detail.val_p_raise_facing_pct / 100) * holdem_limit.amt_bb) < 2.5), 1, 0])

cnt_blfold_s
sum(if[ (holdem_hand_player_statistics.flg_bb_steal_fold and ((holdem_hand_player_detail.val_p_raise_facing_pct / 100) * (holdem_limit.amt_sb + holdem_limit.amt_bb + holdem_hand_player_statistics.cnt_players * holdem_hand_player_detail.amt_ante) + holdem_limit.amt_bb) / ((1 - holdem_hand_player_detail.val_p_raise_facing_pct / 100) * holdem_limit.amt_bb) < 2.5) or (holdem_hand_player_statistics.flg_sb_steal_fold and ((holdem_hand_player_detail.val_p_raise_facing_pct / 100) * (holdem_limit.amt_sb + holdem_limit.amt_bb + holdem_hand_player_statistics.cnt_players * holdem_hand_player_detail.amt_ante) + holdem_limit.amt_sb) / ((1 - holdem_hand_player_detail.val_p_raise_facing_pct / 100) * holdem_limit.amt_bb) < 2.5), 1, 0])

Now these should count for all actions from the blinds againsta a button or CU steal that is under 2.5 bb right? I made the form such that I can just place the required steal amount in bb:s instead of percentages of pot. So its easier to modify but more difficult to read.

Shouldnt the permanent sb call to steal column:

cnt_sb_steal_call
sum(if[holdem_hand_player_statistics.flg_blind_def_opp AND holdem_hand_player_statistics.flg_blind_s AND lookup_actions_p.action LIKE 'C', 1, 0])

have lookup_actions_p.action LIKE 'C%' instead? I dont even know what have lookup_actions_p.action LIKE 'C' actually means. Is it the same as = 'C' or LIKE '%C%' or what.
Darvini
 
Posts: 182
Joined: Fri Oct 30, 2009 12:15 pm

Re: Stats based only on hands played vs hero ?

Postby kraada » Mon Oct 24, 2011 3:30 pm

LIKE 'C%' means the first action must be call and there can be any actions after that. LIKE 'C' means the one and only action can be call. Would you like me to edit out your post with definitions earlier in this thread so that other users finding the thread don't get sent in the wrong direction?
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

PreviousNext

Return to General [Read Only]

Who is online

Users browsing this forum: No registered users and 28 guests

cron