Custom Stat: Won SD when raise River
Results 1 to 6 of 6
  1. #1
    Junior Member
    Join Date
    Jul 2009
    Posts
    2

    Default Custom Stat: Won SD when raise River

    Hey, I have not been able to find information about the "Won SD when raise River" yet. As far as I know there are only "Won SD when saw Flop", "Won $ at SD ([when] raise Flop/raise Turn/checkraise Flop/checkraise Turn). So I have tried to create the custom stat giving me information on how often a player won the showdown when he he had raised the river, but am not able to find the correct commands (especially for the "raise river"-value).
    Could you please help me? I guess that I only need to add the condition of "when raise River true" or something like that the the following category:

    Stat GroupName="Default" ColumnName="Won at SD" ValueExpressions="Sum(case when ph.MaxStreetSeen < 4 then 0 else ph.netamountwon end)/100. as TotalWonatSD" Evaluate="TotalWonatSD" ColumnHeader="W$atSD" ColumnFormat="$0.00" ColumnWidth="*" Tooltip="$ won at showdown"
    Thanks a lot in advance
    Last edited by storge; 07-02-2009 at 10:42 AM.

  2. #2
    *** HM3! *** fozzy71's Avatar
    Join Date
    Jun 2005
    Location
    HM Support
    Posts
    32,814

    Default

    I will forward this to the developer, but he may not be able to reply promptly as he is working to get a new beta update out today.

  3. #3
    Former HM Support
    Join Date
    Sep 2008
    Posts
    132

    Default

    Raise on river: ph.riverplayeractiontype_ID between 67 and 88.
    Won Hand: ph.netamountwon > 0.
    Went to Showdown: ph.maxstreetseen = 4

    If u want % hands won when raised river: NUM hands won/NUM hands raised - u need 2 sums. If u DONT want $ in result, use "else 1 then 0 end) as ....... but id u do want $, use ph.netamountwon else 0 end)/100.

    The ph.maxstreetseen < 4 is NOT Won at SD stat - it is actually W$woSD stat. Its unusual in that its one of the few stats that are exclusionary in nature and reads "then 0 else 1" instead of "then 1 else 0". Learned that the hard way.

    Hope that helps.

  4. #4
    Junior Member
    Join Date
    Jul 2009
    Posts
    2

    Default

    hmm i also tried but didn't work =(
    anyone knows how to do it?

  5. #5
    Former HM Support
    Join Date
    Sep 2008
    Posts
    132

    Default

    This should work:

    GroupName="River" ColumnName="RV RAISE WONatSD%" ValueExpressions="sum(case when ph.riverplayeractiontype_id between 67 and 88 and ph.maxstreetseen = 4 and ph.netamountwon >= 0 then 1 else 0 end) as xRivrRSWonSDx;
    sum(case when ph.riverplayeractiontype_id between 67 and 88 and ph.maxstreetseen = 4 then 1 else 0 end) as xRivrRSSawSDx;" Evaluate="xRivrRSWonSDx/xRivrRSSawSDx/1.0" ColumnHeader="River RS\nWonSD%" ColumnFormat="0.0%" ColumnWidth="61"

  6. #6
    Junior Member
    Join Date
    Jun 2010
    Posts
    4

    Default

    Quote Originally Posted by TheZepper View Post
    This should work:

    GroupName="River" ColumnName="RV RAISE WONatSD%" ValueExpressions="sum(case when ph.riverplayeractiontype_id between 67 and 88 and ph.maxstreetseen = 4 and ph.netamountwon >= 0 then 1 else 0 end) as xRivrRSWonSDx;
    sum(case when ph.riverplayeractiontype_id between 67 and 88 and ph.maxstreetseen = 4 then 1 else 0 end) as xRivrRSSawSDx;" Evaluate="xRivrRSWonSDx/xRivrRSSawSDx/1.0" ColumnHeader="River RS\nWonSD%" ColumnFormat="0.0%" ColumnWidth="61"
    Hi,
    where I have to add this lines?

Similar Threads

  1. Replies: 5
    Last Post: 11-22-2011, 12:58 AM
  2. Where are "raise flop," "raise turn," "raise river" stats?
    By negtv capability in forum Manager General
    Replies: 3
    Last Post: 10-16-2010, 12:35 AM
  3. BTN Preflop raise stat. Am I using the wrong stat?
    By betatester in forum Manager General
    Replies: 3
    Last Post: 03-30-2009, 01:35 PM
  4. Favorite on the turn but lost on river stat?
    By langejan in forum Manager General
    Replies: 3
    Last Post: 03-20-2009, 09:20 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •