PDA

View Full Version : Draw Strength Labels



TierTier
11-19-2008, 05:12 PM
Is there a table somewhere that lists how many quanitative outs are associated with the qualitative labels of "weak", "strong" etc that are used on the reports? I'm assuming that the draw strength is simply calculated by the number of outs to a better hand?

Al1
11-19-2008, 10:00 PM
Is there a table somewhere that lists how many quanitative outs are associated with the qualitative labels of "weak", "strong" etc that are used on the reports? I'm assuming that the draw strength is simply calculated by the number of outs to a better hand?

Escalated to Morny, he will answere asap.

Rvg72
11-20-2008, 04:44 AM
In the report definition I declared this:

<Grouping FieldExpression="FLOP.FlushDrawValue*100+FLOP.StraightDrawValue" ColumnName="Draws" ColumnHeader="Draw Strength">
<Ranges>
<Range In="101,102,103,104,201,202,203,204,301,302,303,304,40 1,402,403,404" RangeName="Great Draw" />
<Range In="100,105,200,205,300,305,400,405,501,502,601,602,70 1,702,801,802,901,902,1,2" RangeName="Good Draw" />
</Ranges>
</Grouping>

those #'s correspond to different draws. Here are the integer values of the draws.

//public enum FlushDrawEnum
//{
// 1 TwoCardNutFlushDraw,2 TwoCardHighFlushDraw,3 TwoCardLowFlushDraw,
// 4 OneCardNutFlushDraw,5 OneCardHighFlushDraw,6 OneCardLowFlushDraw,
// 7 TwoCardBackdoorNutFlushDraw,8 TwoCardBackdoorFlushDraw,9 OneCardBackDoorNutFlushDraw,
// 0 NoFlushDraw
//}

//public enum StraightDrawEnum
//{
// 1 TwoCardOpenEndedStraightDraw, 2 TwoCardGutshotStraightDraw,
// 3 OneCardOpenEndedStraightDraw, 4 OneCardGutshotStraightDraw,
// 5 TwoCardBackdoorStraightDraw,
// 0 NoStraightDraw
//}

So, a Two Card Backdoor But Flush Draw + Two Card Gutshot Straight Draw = 702 which in the report definition is classified as a good draw.

Roy