Page 1 of 2
Fold to Flop CB after called attempt to steal Stat
Posted:
Fri Apr 24, 2015 1:11 pm
by sp00ky
Hi,
I just wanted to know if it should look like this: (call_steal / Fold_Flop_Cbet)*100 ?
and can I use it for ip and oop?
Re: Fold to Flop CB after called attempt to steal Stat
Posted:
Fri Apr 24, 2015 3:22 pm
by kraada
You'd need to build custom columns for this stat. 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.
Re: Fold to Flop CB after called attempt to steal Stat
Posted:
Sat Apr 25, 2015 6:31 am
by sp00ky
I know this guide, but my english is not that good to really understand what to do.
can you please help me a little?
Re: Fold to Flop CB after called attempt to steal Stat
Posted:
Sat Apr 25, 2015 9:44 am
by kraada
Sure - where are you getting stuck?
Re: Fold to Flop CB after called attempt to steal Stat
Posted:
Sat Apr 25, 2015 1:33 pm
by sp00ky
i donĀ“t understand how to start and which columns to build and why?I tried with google translator but i dont get it.
Re: Fold to Flop CB after called attempt to steal Stat
Posted:
Sun Apr 26, 2015 9:49 am
by kraada
The way we do things, a Statistic is built out of Columns. You can think of Columns as a way to represent a very specific piece of data. A Column might tell you how often a player bet the river -- or how often he bet the river after checking back the turn having bet the flop in a pot that was 3bet preflop -- it is specific to each Column what data it gets from the database. The Columns are the only things that actually interface with the database itself - Statistics just take the values in the Columns and do some basic math with them.
There are a lot of Columns built into PT4 by default - most stats require two - and you can look at the Value Expression for a Statistic and see the Columns used to calculate it. For example, PFR is (cnt_pfr / cnt_pfr_opp) * 100 -- there are two Columns there, cnt_pfr and cnt_pfr_opp - and if you switched to the Columns section you could see exactly how those are defined.
In order to build the Statistic you are talking about you're going to want to build two Columns, one for how often someone called a steal preflop and then folded to a continuation bet, and the other for how often he called a steal preflop then faced a continuation bet. So looking at the Column definitions for Call Steal and Fold to F CBet should help you start to get together the pieces you need.
Re: Fold to Flop CB after called attempt to steal Stat
Posted:
Mon Apr 27, 2015 9:53 pm
by sp00ky
Ok, I found this, but what to do now? what do I put together?
call steal = (cnt_steal_def_action_call / cnt_steal_def_opp) * 100
fold to flop cbet= (cnt_f_cbet_def_action_fold / cnt_f_cbet_def_opp) * 100
cnt_steal_def_action_call = Number of times player called a steal attempt.
sum(if[cash_hand_player_statistics.flg_blind_def_opp AND lookup_actions_p.action LIKE 'C%', 1, 0])
cnt_steal_def_opp = Number of times a player faced a steal attempt.
sum(if[cash_hand_player_statistics.flg_blind_def_opp, 1, 0])
cnt_f_cbet_def_action_fold = Number of times player folded to a flop continuation bet.
sum(if[cash_hand_player_statistics.enum_f_cbet_action='F', 1, 0])
cnt_f_cbet_def_opp = Number of times the player faced a continuation bet on the flop.
sum(if[cash_hand_player_statistics.flg_f_cbet_def_opp, 1, 0])
Re: Fold to Flop CB after called attempt to steal Stat
Posted:
Tue Apr 28, 2015 3:00 am
by WhiteRider
You need to make two new columns - one "action" column and one "opportunity" column, like the ones you found, but combining the expressions.
The parts in bold here are the bits you need to combine.
sp00ky wrote:cnt_steal_def_action_call = Number of times player called a steal attempt.
sum(if[cash_hand_player_statistics.flg_blind_def_opp AND lookup_actions_p.action LIKE 'C%', 1, 0])
cnt_steal_def_opp = Number of times a player faced a steal attempt.
sum(if[cash_hand_player_statistics.flg_blind_def_opp, 1, 0])
cnt_f_cbet_def_action_fold = Number of times player folded to a flop continuation bet.
sum(if[cash_hand_player_statistics.enum_f_cbet_action='F', 1, 0])
cnt_f_cbet_def_opp = Number of times the player faced a continuation bet on the flop.
sum(if[cash_hand_player_statistics.flg_f_cbet_def_opp, 1, 0])
So for example the action column for folding to a flop CBet after calling a steal would be:
sum(if[
cash_hand_player_statistics.flg_blind_def_opp AND lookup_actions_p.action LIKE 'C%' AND cash_hand_player_statistics.enum_f_cbet_action='F', 1, 0])
You would do the same type of thing for the new opportunities column.
This guide - the second which kraada linked above - has examples of how to do this too, if you want more examples or information.
Re: Fold to Flop CB after called attempt to steal Stat
Posted:
Tue Apr 28, 2015 7:19 am
by sp00ky
I put together:
sum(if[cash_hand_player_statistics.flg_blind_def_opp AND lookup_actions_p.action LIKE 'C%', 1, 0])
sum(if[cash_hand_player_statistics.enum_f_cbet_action='F', 1, 0])
I get this:
sum(if[cash_hand_player_statistics.flg_blind_def_opp AND lookup_actions_p.action LIKE 'C%' AND cash_hand_player_statistics.enum_f_cbet_action='F', 1, 0])
named cnt_p_call_steal__f_fold_cbet
I put together:
sum(if[cash_hand_player_statistics.flg_blind_def_opp, 1, 0])
sum(if[cash_hand_player_statistics.flg_f_cbet_def_opp, 1, 0])
I get this:
sum(if[cash_hand_player_statistics.flg_blind_def_opp AND cash_hand_player_statistics.flg_f_cbet_def_opp, 1, 0])
named: cnt_p_call_steal_f_fold_cbet_opp
then I put these 2 together to get the stat
(cnt_p_call_steal_f_fold_cbet / cnt_p_call_steal_f_fold_cbet_opp) * 100
is this right?
Re: Fold to Flop CB after called attempt to steal Stat
Posted:
Tue Apr 28, 2015 7:42 am
by kraada
You got it