Open Side Menu Go to the Top
Register
Stats for HU sitngo Stats for HU sitngo

09-17-2009 , 08:54 PM
I would like to know where can I find these stats.
http://www.husng.com/node/909

The stats are: BB Call / SB Open / 3Bet / Cbet / Turn Cbet / Fold to Cbet / Fold to Turn Cbet / Donks flop raised pot / Folds donk to raise / Folds to 3Bet, Check-raises flop / Aggression factor (indiv. streets) / Bets vs Missed Cbet

These would help me a lot, and Im sure I can't make them on my own.

Thanks
09-18-2009 , 04:16 AM
There is a "Fold BB to SB Steal" which shows how often the BB folds to a steal attempt by the SB (and heads up a raise by the SB is always a steal) - this isn't quite "BB Call" but will head you in the right direction. If you want to know about calls explicitly in this situation that can be built.

Heads up "RFI" (Raise First In) is equivalent to SB Open (assuming you mean open-raise?).

"3Bet Preflop" already exists.

"CBet Flop" and Turn already exist.

"Fold to F CBet" (and T) already exists.

I think Kraada may already have the donk flop stats in his Advanced HUD Configuration so I'll let him get back to you about those.

"Fold to F 3Bet" already exists.

"Check Raise Flop" already exists.

"Flop AF" and turn and river already exist.

Again I think Kraada may already have "Bets vs Missed Cbet".
09-18-2009 , 08:35 AM
Thanks a lot
09-18-2009 , 10:05 AM
My donk flop requires a raised pot as it is. Donk and fold I don't have, but you could build that one.

Create two new columns: cnt_f_donk_fold, with definition:
sum(if[holdem_hand_player_statistics.flg_p_face_raise AND NOT(holdem_hand_player_statistics.flg_p_3bet OR holdem_hand_player_statistics.flg_p_4bet) AND holdem_hand_player_statistics.flg_f_bet AND NOT(holdem_hand_player_statistics.flg_f_cbet_opp) AND
((holdem_hand_summary.cnt_players > 2 and holdem_hand_player_detail.val_p_raise_aggressor_po s < holdem_hand_player_statistics.position) or (holdem_hand_summary.cnt_players = 2 and holdem_hand_player_statistics.flg_blind_b)) AND holdem_hand_player_statistics.enum_folded = 'F',1,0])

and

cnt_f_donk_face_raise with definition:

sum(if[holdem_hand_player_statistics.flg_p_face_raise AND NOT(holdem_hand_player_statistics.flg_p_3bet OR holdem_hand_player_statistics.flg_p_4bet) AND holdem_hand_player_statistics.flg_f_bet AND NOT(holdem_hand_player_statistics.flg_f_cbet_opp) AND
((holdem_hand_summary.cnt_players > 2 and holdem_hand_player_detail.val_p_raise_aggressor_po s < holdem_hand_player_statistics.position) or (holdem_hand_summary.cnt_players = 2 and holdem_hand_player_statistics.flg_blind_b)) AND holdem_hand_player_statistics.flg_f_face_raise,1,0])

Create a new statistic putting the former column over the latter column and mulitply by 100. Make sure to fill in the format tab (see any of the other statistics for a guide), and update your cache then you should be all set.

Bets flop vs missed cbet is the same as my Float Flop.

      
m