Holdem Manager 2 API - Page 10
Page 10 of 31 FirstFirst ... 8910111220 ... LastLast
Results 91 to 100 of 308
  1. #91
    Junior Member
    Join Date
    Sep 2013
    Posts
    7

    Default

    Hi,

    I didn't find how to select only hands played at Speed Poker. I tried using GameTypeDescription by giving it the result of StatGameTypeDescription (for example "€0.10/€0.20 NL Fast Holdem") but it doesn't work. A similar problem would be to select only NL hands or FL hands, mixing the two wouldn't be good...
    Could you please give me some example to select all "NL Fast Holdem" hands or only "€0.10/€0.20 NL Fast Holdem" hands?

  2. #92
    *** HM3! *** fozzy71's Avatar
    Join Date
    Jun 2005
    Location
    HM Support
    Posts
    33,115

    Default

    Quote Originally Posted by Xyton View Post
    Hi,

    I didn't find how to select only hands played at Speed Poker. I tried using GameTypeDescription by giving it the result of StatGameTypeDescription (for example "€0.10/€0.20 NL Fast Holdem") but it doesn't work. A similar problem would be to select only NL hands or FL hands, mixing the two wouldn't be good...
    Could you please give me some example to select all "NL Fast Holdem" hands or only "€0.10/€0.20 NL Fast Holdem" hands?
    Please try this:

    Code:
    select * from hands where GameType=GameType.Value
    
    where Value is one of the GameType enums listed below.
    
        public enum GameType
        {
            AllGames = -1,
            HoldemNL=0, HoldemPL=1, HoldemFL=2, OmahaNL=3, OmahaPL=4, OmahaFL=5,
            HoldemNLRush=6, HoldemPLRush=7, HoldemFLRush=8, OmahaNLRush=9, OmahaPLRush=10, OmahaFLRush=11,
            HoldemNLCAP=12,
            OmahaHiLoNL=13, OmahaHiLoPL=14, OmahaHiLoFL=15, OmahaHiLoNLRush=16, OmahaHiLoPLRush=17, OmahaHiLoFLRush=18,OmahaPLCAP=19, 
            AllHoldem=20, AllOmaha=21,
            HoldemNLZoom = 22, HoldemPLZoom = 23, HoldemFLZoom = 24, OmahaNLZoom = 25, OmahaPLZoom = 26, OmahaFLZoom = 27, OmahaHiLowPLZoom = 28, OmahaHiLoFLZoom = 29, OmahaHiLoNLZoom = 30,
    
        };

  3. #93
    Junior Member
    Join Date
    Sep 2013
    Posts
    7

    Default

    Hi,

    Thank you for the reply, it works! Using value 22 returns Speed Holdem (iPoker) hands.

    Btw, I noticed that with value 0 (i.e. HoldemNL) I get Cash and Tournaments hands. To get only Cash hands, I have to add the condition IsTourney=false. It didn't seem really natural at first...

  4. #94
    You're out! udbrky's Avatar
    Join Date
    Jul 2008
    Posts
    20,872

    Default

    Thank you for the information.

  5. #95
    Junior Member
    Join Date
    Jul 2012
    Posts
    27

    Default

    HMQL consider hands played for fun.

    Is there a way to purge hand played for fun or to filter this hands?

    Thanks

  6. #96
    *** HM3! *** fozzy71's Avatar
    Join Date
    Jun 2005
    Location
    HM Support
    Posts
    33,115

    Default

    We do not support/import play money hands. If some were imported please email them to us so we can prevent them from being imported in the future. You can manually delete them from the reports with the right click menu or if they are all one specific/odd stake they can be purged from the Database menu.

  7. #97
    Junior Member
    Join Date
    Jul 2012
    Posts
    27

    Default

    Sorry,

    can I filter only hand played in cashgame?



    with this query
    HTML Code:
    select StatPlayerNameAndSite,StatNetAmountWon,StatNetAmountWonEUR,StatTotalHands,StatRakeAmount,StatEURRake from stats 
    group by 
    statgametypedescription
    The last row consider hand played in tourney, but the problem is that net won tourney will beadded to won win in cash. (chip won or lost in tourney will considered maoney win or lost in cash, so 1000 chip il 1000 €)

    with this query

    HTML Code:
    select StatPlayerNameAndSite,StatNetAmountWon,StatNetAmountWonEUR,StatTotalHands,StatRakeAmount,StatEURRake from stats
    i will obtain aresults that consider fake win in tourney.

    can I filter only hand played in cashgame?

    Thanks

  8. #98
    You're out! udbrky's Avatar
    Join Date
    Jul 2008
    Posts
    20,872

    Default

    Quote Originally Posted by marino11 View Post
    Sorry,

    can I filter only hand played in cashgame?



    with this query
    HTML Code:
    select StatPlayerNameAndSite,StatNetAmountWon,StatNetAmountWonEUR,StatTotalHands,StatRakeAmount,StatEURRake from stats 
    group by 
    statgametypedescription
    The last row consider hand played in tourney, but the problem is that net won tourney will beadded to won win in cash. (chip won or lost in tourney will considered maoney win or lost in cash, so 1000 chip il 1000 €)

    with this query

    HTML Code:
    select StatPlayerNameAndSite,StatNetAmountWon,StatNetAmountWonEUR,StatTotalHands,StatRakeAmount,StatEURRake from stats
    i will obtain aresults that consider fake win in tourney.

    can I filter only hand played in cashgame?

    Thanks
    Quote Originally Posted by Xyton View Post
    Hi,

    Thank you for the reply, it works! Using value 22 returns Speed Holdem (iPoker) hands.

    Btw, I noticed that with value 0 (i.e. HoldemNL) I get Cash and Tournaments hands. To get only Cash hands, I have to add the condition IsTourney=false. It didn't seem really natural at first...
    Check this out, try adding the condition to filter out the Tournament hands.

  9. #99
    Junior Member
    Join Date
    Jul 2012
    Posts
    27

    Default

    Quote Originally Posted by udbrky View Post
    Check this out, try adding the condition to filter out the Tournament hands.
    IsTourney=false

    It works. Thanks

  10. #100
    You're out! udbrky's Avatar
    Join Date
    Jul 2008
    Posts
    20,872

    Default

    Thank you for letting us know this is resolved.

    Good luck at the tables,

    Please let us know if we can help with anything else.

Similar Threads

  1. Replies: 3
    Last Post: 12-02-2018, 05:29 PM
  2. How Do I Import hands from holdem manager 1 to holdem manager 2?
    By rockstarhobbo in forum General Support
    Replies: 5
    Last Post: 11-11-2011, 09:20 AM
  3. Replies: 1
    Last Post: 11-08-2011, 08:06 PM
  4. Replies: 1
    Last Post: 08-30-2011, 09:58 PM
  5. Latest version of Holdem Manager killed Holdem Manager
    By TLXLM in forum Manager General
    Replies: 2
    Last Post: 09-06-2008, 11:09 AM

Tags for this Thread

Posting Permissions

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