PDA

View Full Version : How is Turn cbet defined? / how do I make a "single barrel and give up" stat?



bfc
08-07-2009, 03:36 AM
I'm a complete noob (been using hem a couple of weeks) but would like to make a stat showing how often villain fires a flop cbet OOP but then gives up. Specifically, in non 3bet bots, villain cbets flop OOP, is called, then checks turn and folds to a raise.


<Stat GroupName="Turn" ColumnName="TurnCBet" ValueExpressions="sum(case when ph.Turncbetpossible = true then 1 else 0 end) as TurnCbetPossible;sum(case when ph.Turncbetmade = true then 1 else 0 end) as TurnCbetMade;" Evaluate="TurnCBetMade*100.0/TurnCBetPossible" ColumnHeader="Turn CBet%" ColumnFormat="0.0" ColumnWidth="61" Tooltip="% of time player bets the Turn after being the preTurn raiser and CBetting the Flop" />

How is ph.Turncbetpossible defined? Specifically, in order for it to be true does the flop have to be cbet?

tiratrocos
08-27-2009, 10:57 PM
I would be very interested on this one.

Anyone?