by 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.