by kroma » Wed Feb 22, 2012 1:51 pm
hi, in configure, select "configure stats" , select in "sections" flange "holdem cash player statistics", move to colums flange and create 3 colums for hands/vpip/PFR and 6 for 3bet Preflop.
3 colums for hands positions:
Hands BTN:(name cnt_hands_btn)
sum(if[holdem_hand_player_statistics.position = 0 AND
holdem_hand_player_statistics.id_hand > 0, 1, 0])
Hands SB:(name cnt_hands_sb)
sum(if[holdem_hand_player_statistics.position = 9 AND
holdem_hand_player_statistics.id_hand > 0, 1, 0])
Hands BB:(name cnt_hands_bb)
sum(if[holdem_hand_player_statistics.position = 8 AND
holdem_hand_player_statistics.id_hand > 0, 1, 0])
3 colums for vpip:
vpip BTN:(name cnt_vpip_btn)
sum( if[holdem_hand_player_statistics.position = 0 AND
holdem_hand_player_statistics.flg_vpip , 1, 0])
vpip SB:(name cnt_vpip_sb)
sum( if[holdem_hand_player_statistics.position = 9 AND
holdem_hand_player_statistics.flg_vpip , 1, 0])
vpip BB:(name cnt_vpip_bb)
sum( if[holdem_hand_player_statistics.position = 8 AND
holdem_hand_player_statistics.flg_vpip , 1, 0])
3 colums for PFR:
PFR BTN:(name cnt_pfr_btn)
sum( if[holdem_hand_player_statistics.position = 0 AND
holdem_hand_player_statistics.cnt_p_raise > 0 , 1, 0])
PFR SB:(name cnt_pfr_sb)
sum( if[holdem_hand_player_statistics.position = 9 AND
holdem_hand_player_statistics.cnt_p_raise > 0 , 1, 0])
PFR BB:(name cnt_pfr_bb)
sum( if[holdem_hand_player_statistics.position = 8 AND
holdem_hand_player_statistics.cnt_p_raise > 0 , 1, 0])
and 6 colums for 3BETPreflop:
3Bet Preflop BTN:(name cnt_p_3bet_btn)
sum(if[holdem_hand_player_statistics.position = 0 AND
holdem_hand_player_statistics.flg_p_3bet, 1, 0])
3Bet Preflop BTN Opp:(name cnt_p_3bet_btn_opp)
sum(if[holdem_hand_player_statistics.position = 0 AND
holdem_hand_player_statistics.flg_p_3bet_opp, 1, 0])
3Bet Preflop SB:(name cnt_p_3bet_sb)
sum(if[holdem_hand_player_statistics.position = 9 AND
holdem_hand_player_statistics.flg_p_3bet, 1, 0])
3Bet Preflop SB Opp:(name cnt_p_3bet_sb_opp)
sum(if[holdem_hand_player_statistics.position = 9 AND
holdem_hand_player_statistics.flg_p_3bet_opp, 1, 0])
3Bet Preflop BB:(name cnt_p_3bet_bb)
sum(if[holdem_hand_player_statistics.position = 8 AND
holdem_hand_player_statistics.flg_p_3bet, 1, 0])
3Bet Preflop BB Opp:(name cnt_p_3bet_bb_opp)
sum(if[holdem_hand_player_statistics.position = 8 AND
holdem_hand_player_statistics.flg_p_3bet_opp, 1, 0])
now go to flange statistics:
duplicate VPIP PFR and 3bet Preflop and change the colums for your create colums.