Online Casinos - Casinomeister Logo Online Casinos - Casinomeister
Results 1 to 10 of 10

Thread: Any games with players edge left?

  1. #1
    YuraK is offline Webmaster
    Join Date
    Jun 2004
    Location
    Russia
    Posts
    127
    Thanks
    2
    Thanked 6 Times in 6 Posts
    Rep Power
    33
    Reputation Points: 40

    Any games with players edge left?

    I remember one-deck BJ at Boss Media with +0,13% EV. At Wizard of Odds I found "As far as I know, the only Boss Media casino to offer this game is the Two Sixes casino."
    Crypto had All American VP with 99,95% plus 0,1% comp points made it positive, but payout was reduced. I think RTG had some +EV VP too.

    So anything like this now?
    All the best: casinos, bonuses, poker-rooms .

  2. #2
    Grey is offline Full Member
    Join Date
    Mar 2008
    Location
    France
    Posts
    53
    Thanks
    15
    Thanked 10 Times in 8 Posts
    Rep Power
    17
    Reputation Points: 60
    Quote Originally Posted by YuraK View Post
    I remember one-deck BJ at Boss Media with +0,13% EV. At Wizard of Odds I found "As far as I know, the only Boss Media casino to offer this game is the Two Sixes casino."
    Crypto had All American VP with 99,95% plus 0,1% comp points made it positive, but payout was reduced. I think RTG had some +EV VP too.

    So anything like this now?
    As I know, Betfair has a No house edge Blackjack with small table limits and Betvoyager has a some unique Blackjack games with equal odds.

  3. #3
    Markus is offline Banned User - Violation of forum rule 1.10 - player fraud
    Join Date
    Aug 2008
    Location
    Berlin
    Posts
    140
    Thanks
    52
    Thanked 77 Times in 44 Posts
    Rep Power
    0
    Reputation Points: 515
    If you use The Double Up feature in Video Poker excessively you have a small player edge (around 0.5%) because of the Comp Points. This works at least in Playtech casinos. The drawback is you have an extreme high variance therefore it is not very practical. Here is a simulation:
    Code:
    import java.util.*;
    
    public class VideoPokerDouble
    {
    	public static void main(String [] args)
    	{
    		double dblBalance = 0.0;
    		double dblBet = 0.0;
    		double dblWagered = 0.0;
    		double dblDouble = 0.0;
    		double dblComp = 0.0;
    		Random rndZufall = new Random();
    		
    		final int GAMES = 500000000 /* 0 */;
    		for(double i = 0; i < GAMES; i++)
    		{
    			dblBet = 1.0;
    			dblWagered += dblBet;
    			dblBalance -= dblBet;
    			
    			int intJacksOrBetter = rndZufall.nextInt(100000001);
    			if(intJacksOrBetter < 2476)
    				dblDouble = 800.0;
    			if(intJacksOrBetter >= 2476 && intJacksOrBetter < 13407)
    				dblDouble = 50.0;
    			if(intJacksOrBetter >= 13407 && intJacksOrBetter < 249662)
    				dblDouble = 25.0;
    			if(intJacksOrBetter >= 249662 && intJacksOrBetter < 1400883)
    				dblDouble = 9.0;
    			if(intJacksOrBetter >= 1400883 && intJacksOrBetter < 2502334)
    				dblDouble = 6.0;
    			if(intJacksOrBetter >= 2502334 && intJacksOrBetter < 3625271)
    				dblDouble = 4.0;
    			if(intJacksOrBetter >= 3625271 && intJacksOrBetter < 11070141)
    				dblDouble = 3.0;
    			if(intJacksOrBetter >= 11070141 && intJacksOrBetter < 23998031)
    				dblDouble = 2.0;
    			if(intJacksOrBetter >= 23998031 && intJacksOrBetter < 45456534)
    				dblDouble = 1.0;
    			if(intJacksOrBetter >= 45456534)
    				dblDouble = 0.0;
    			
    			dblComp = 1.0;
    			
    			if(dblDouble > 0.0)
    			{
    				for(double j = 0; j < 20; j++)
    				{
    					dblComp += dblDouble;
    					int intKarte1 = rndZufall.nextInt(13);
    					int intKarte2 = rndZufall.nextInt(13);
    					if(intKarte1 == intKarte2)
    					{
    					}
    					else if(intKarte1 > intKarte2)
    					{
    						dblDouble *= 2.0;
    					}
    					else
    					{
    						dblDouble = 0.0;
    						break;
    					}
    					if(dblDouble > 1500.0)
    					{
    						break;
    					}
    				}
    			}
    			
    			dblBalance += dblDouble;
    			dblBalance += (dblComp / 1000.0);
    		}
    		
    		System.out.println("Player Edge: " + (100.0 / (dblWagered / dblBalance)) + " %");
    	}	
    }
    Output is (it varies if you run it several times):
    Code:
    Player Edge: 0.6928962522347478 %
    And of course some progressive games has a player edge, too.

  4. #4
    aka23's Avatar
    aka23 is offline Meister Member Achievements:
    Meister ReferrerVeteran10000 Experience PointsReferral Meister Second ClassFriends R Us
    Join Date
    Jun 2006
    Location
    Planet Earth
    Posts
    1,234
    Thanks
    27
    Thanked 435 Times in 294 Posts
    Rep Power
    42
    Reputation Points: 2322
    Quote Originally Posted by YuraK View Post
    I remember one-deck BJ at Boss Media with +0,13% EV. At Wizard of Odds I found "As far as I know, the only Boss Media casino to offer this game is the Two Sixes casino."
    Crypto had All American VP with 99,95% plus 0,1% comp points made it positive, but payout was reduced. I think RTG had some +EV VP too.

    So anything like this now?
    There are a few options, but most games have such a slim edge that variance would be ridiculous:

    -As you mentioned, full pay Boss Media BJ at 2 Sixes

    -Vuetec BJ also has a small edge

    -5Dimes has some VP games that payout slightly above 100%. However full pay DW, is only available for limited periods (new policy, as I understand it). A few of the non-VP games also have an edge.

    -Many RTG casinos offer Joker Poker with a payout of slightly above 100%.

    -Some solitaire games have an edge with expert strategy. Unfortunately, optimal strategy is not known. Kismet/Cantor Gaming software was the one with the largest edge, and that game is no longer available.

    If you start adding in comp points or bonuses, then there are more options. There are also some other options, if you are creative about it.

  5. The Following User Says Thank You to aka23 For This Useful Post:

    YuraK (8th April 2009)

  6. #5
    winbig's Avatar
    winbig is offline mmmm, Foxy.
    Achievements:
    VeteranCreated Album picturesCreated Blog entry50000 Experience PointsPeople Likes You
    Join Date
    Mar 2005
    Location
    Pennsylvania
    Posts
    8,229
    Blog Entries
    4
    Thanks
    1,371
    Thanked 3,608 Times in 2,120 Posts
    Rep Power
    166
    Reputation Points: 19093
    It's been awhile since I checked, but didn't MG's classic single deck BJ have a +EV as well? I remember that it couldn't have been too much, maybe .1x%.

    If so, is it still that way?

    edit: It'd almost have to, considering the fact that MG's clearpay bonus system weights BJ as 5%.
    Operators: If you don't know what Transparency means, then here you go.....now how about practicing it?

    Transparency, as used in the humanities and in a social context more generally, implies openness, communication, and accountability. It is a metaphorical extension of the meaning a "transparent" object is one that can be seen through. ...

  7. #6
    aka23's Avatar
    aka23 is offline Meister Member Achievements:
    Meister ReferrerVeteran10000 Experience PointsReferral Meister Second ClassFriends R Us
    Join Date
    Jun 2006
    Location
    Planet Earth
    Posts
    1,234
    Thanks
    27
    Thanked 435 Times in 294 Posts
    Rep Power
    42
    Reputation Points: 2322
    Quote Originally Posted by winbig View Post
    It's been awhile since I checked, but didn't MG's classic single deck BJ have a +EV as well? I remember that it couldn't have been too much, maybe .1x%..
    Yes, about 0.1% (exact value depends on CD exceptions strategy)

  8. #7
    vinylweatherman's Avatar
    vinylweatherman is offline Typus Infinitus Achievements:
    Veteran50000 Experience PointsOverdrivePeople Likes You
    Awards:
    Frequent PosterCommunity AwardMost Popular
    Join Date
    Oct 2004
    Location
    United Kingdom
    Posts
    10,795
    Thanks
    414
    Thanked 6,844 Times in 3,671 Posts
    Rep Power
    271
    Reputation Points: 37443
    Quote Originally Posted by aka23 View Post
    Yes, about 0.1% (exact value depends on CD exceptions strategy)
    I thought it had a VERY low edge, but still to the house.

    Interestingly, there are a few MGS casinos that do NOT weight games for comp point purposes, and give 0.1% across the board. If any game, or any strategy for any game, can be found to give a house edge less than this, then it is a long term winner.

    MGS do NOT have Autoplay for either All Aces or Classic BJ, the only two games where a player edge might exist.

    I checked some while back on the Wizard's site, and did not see mention of MGS Classic BJ having a PLAYER edge, even WITH the exceptions in play. The problem is that in MGS there is a MISPRINT in the rules, they say one thing, but the game does another. This misprint DOES result in a slight player edge when run through the calculator, but the game itself does NOT play this way. From memory, the misprint is about splits and doubling, and the printed rules allow a wider range of choice than is actually the case when in play.

    The MGS VP games do NOT as far as I know count the doubling feature as "wagering" either for playthrough or comp point generation, so the simulated Playtech strategy would not work. All Aces is probably the best a player will get to a game with a Player edge, assuming comps at 0.1% are added, AND there is some kind of extra promo running.


    If you consider the entire package, there are occasions where net +EV situations occur. JF are running one at the moment I'll tell you all how it's done when it's over JF have done this in the past, but you DO need considerable brain power to figure some of them out, and once they see that a few players have, they change the goal posts

    The March - April one is a throwback to something they used to run a fair bit over 2 years ago, till I sussed it and won more than half of them. They changed the formats frequently after then, and I didn't win again

    A simple example of such a situation is where you can play a low house edge game, AND get 0.1% comp points, AND have your wagering count towards a score in some kind of wagering challenge competition. Provided the prizes are high enough, these events can occasionally become +EV some weeks. Easter, or other big holidays, are the best times to study these, since if more players are on holiday, there will be fewer players in any tournaments.

    I do not expect casinos will go back to offering games with a player edge unless the perfect strategy required is so complex even the Wizard can't work it out to post for all to see (and use).
    Empty Fruities Astern Capt'n
    Back to port for unloading.
    Full Sails - before we get raided ourselves.

  9. #8
    Markus is offline Banned User - Violation of forum rule 1.10 - player fraud
    Join Date
    Aug 2008
    Location
    Berlin
    Posts
    140
    Thanks
    52
    Thanked 77 Times in 44 Posts
    Rep Power
    0
    Reputation Points: 515
    Quote Originally Posted by aka23 View Post
    Yes, about 0.1% (exact value depends on CD exceptions strategy)
    Can you tell me what is the composition dependent strategy where the player has a edge at Microgaming Classic Blackjack? The Wizard of Odds says there is a 0,09% house edge with this composition dependent strategy:
    http://wizardofodds.com/software/bossmedia-apx1.html

  10. #9
    aka23's Avatar
    aka23 is offline Meister Member Achievements:
    Meister ReferrerVeteran10000 Experience PointsReferral Meister Second ClassFriends R Us
    Join Date
    Jun 2006
    Location
    Planet Earth
    Posts
    1,234
    Thanks
    27
    Thanked 435 Times in 294 Posts
    Rep Power
    42
    Reputation Points: 2322
    Quote Originally Posted by Markus View Post
    Can you tell me what is the composition dependent strategy where the player has a edge at Microgaming Classic Blackjack? The Wizard of Odds says there is a 0,09% house edge with this composition dependent strategy:
    http://wizardofodds.com/software/bossmedia-apx1.html
    I meant a house edge of ~0.1%, not a player edge. Sorry for the confusion.

  11. #10
    Jufo's Avatar
    Jufo is offline A sloth
    Join Date
    Sep 2007
    Location
    Finland
    Posts
    588
    Thanks
    117
    Thanked 300 Times in 166 Posts
    Rep Power
    29
    Reputation Points: 1522
    Quote Originally Posted by vinylweatherman View Post
    Interestingly, there are a few MGS casinos that do NOT weight games for comp point purposes, and give 0.1% across the board. If any game, or any strategy for any game, can be found to give a house edge less than this, then it is a long term winner.
    Doesn't Jackpot Factory Vip Lounge give 0.2% in comps across all games by the way? Which would make classic BJ 0.11% +EV with comps.

Similar Threads

  1. Wow the fun factor has left me
    By lauram in forum Online Casinos
    Replies: 19
    Last Post: 29th July 2008, 09:48 AM
  2. Betfair 0% house edge games
    By gfkostas in forum Online Casinos
    Replies: 27
    Last Post: 16th January 2008, 03:18 AM
  3. More Addictive Games at Leading Edge
    By Casinomeister in forum Online Casinos
    Replies: 5
    Last Post: 7th December 2005, 09:17 PM
  4. Are there any left??
    By jinnia in forum Ask the Meister
    Replies: 4
    Last Post: 6th November 2003, 12:26 AM

Bookmarks

Posting Permissions

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

Legal Statements and Privacy Policy
Casinomeister.com does not intend for any of the information contained on this website to be used for illegal purposes. You must ensure you meet all age and other regulatory requirements before entering a casino or placing a wager. Online gambling is illegal in many jurisdictions and users should consult legal counsel regarding the legal status of online gambling and gaming in their jurisdictions. The information in this site is for news and entertainment purposes only. Casinomeister.com is an independent directory and information service free of any gaming operator's control. Links to third party websites on Casinomeister.com are provided solely for informative/educational purposes. If you use these links, you leave this Website.