• Welcome to #1 Roulette Forum & Message Board | www.RouletteForum.cc.

News:

The only way to beat roulette is by increasing accuracy of predictions (changing the odds). This is possible on many real wheels.

Main Menu
Popular pages:

Roulette System

The Roulette Systems That Really Work

Roulette Computers

Hidden Electronics That Predict Spins

Roulette Strategy

Why Roulette Betting Strategies Lose

Roulette System

The Honest Live Online Roulette Casinos

Need someone to test a simple Dozens System.

Started by RP501, Dec 05, 09:08 PM 2018

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

RP501

I'm looking for anyone to test a very simple Dozens System.  Preferably using Roulette Xtreme 2.0 software (:.uxsoftware.com).  But other testing methods is fine.

System:  Simply follow and bet on the current Dozen.
Progression:  Keep adding 1 unit, win or lose, until Balance reaches a new high, then re-set back to 1 unit, each time.
European Roulette - NO Limits Table
Test: 100,000 spins

I just need to know the largest Draw-down at any given point.  And the largest Bet units reached.  I am thinking that a 100,000 unit Bankroll should cover the largest draw-down period.

I am willing to pay a minimal small fee to compensate you for your time & efforts (PayPal or Bitcoin).  Or if anyone can give me a resource where I can hire someone who would know coding language for the Roulette Xtreme 2.0 software.

Thanks!   8)
If you believe it is IMPOSSIBLE to win at Roulette long-term, then you will never win. ... But, if you believe anything is possible, then you will find the way.

RP501

FYI -- I've begun manually testing a different version of this, where you just stick with 1 particular Dozen (easier, faster to test, compared to "following" a Dozen).  There will be long periods where it looks really good, but then out of the blue you will hit very large draw-down period of over 2,000 spins (-70,000 units) which obviously will make you hit any & all Table Limits.

So this will only work if you are going to bet Penny units, and maybe a $1,000 Bankroll might be enough.  Obviously this won't be worth it to most if not all players, BUT to a Day Trader it looks very tempting on a NO Limit Table.  📈   ;)
If you believe it is IMPOSSIBLE to win at Roulette long-term, then you will never win. ... But, if you believe anything is possible, then you will find the way.

foreverBOB

Can be coded easily. I can do it in excel tomorrow. Pm me your emailaddress, there is no need to pay for this.

Bigbroben

I did too this morning with Excel.  File was too large to share if 100k spins are to be tested.  I guess a file with a few hundred spins  couls be shared.  You'd have to drag down for 2 minutes until 100k.

I saw once in a 100k spin test a drawdown of 590 000 units and came back with 70k units on the doz.  Normally, past 10k it does not come back.

You'd get normally a few thiusand new highs then it would fail down a million at spin 100k. You indeed could play a long time.

But for sure a br of 100k units gets wiped out soon or later.

Foreverbob, i'd be curious to see how you code it with excel.  Share!
Life is hard, and then you die.
Mes pensées sont le dernier retranchement de ma liberté.

RP501

Quote from: Bigbroben on Dec 06, 05:58 PM 2018I saw once in a 100k spin test a drawdown of 590 000 units and came back with 70k units on the doz.  Normally, past 10k it does not come back.

Is this test with Excel, or with an actual Roulette testing software like Roulette Xtreme 2.0 (:.uxsoftware.com)?
If you believe it is IMPOSSIBLE to win at Roulette long-term, then you will never win. ... But, if you believe anything is possible, then you will find the way.

Normy2000

I will post the Rx code tomorrow morning for free (5 minutes code), sorry, no time tonight.  O0
nOrMy2o0o  ‹(•¿•)›
"Learn from yesterday, live for today, hope for tomorrow. The important thing is not to stop questioning."  Albert Einstein

RP501

Quote from: Normy2000 on Dec 06, 06:27 PM 2018I will post the Rx code tomorrow morning for free (5 minutes code), sorry, no time tonight.

Cool, thanks!   8)
If you believe it is IMPOSSIBLE to win at Roulette long-term, then you will never win. ... But, if you believe anything is possible, then you will find the way.

Normy2000

Here my friend:

[reveal]
system "Hottest Dozen"
// Coded by Normy2000
method "main"
begin
    While starting a new session
    begin
        put 0 on record "Prev Bankroll" data
        put 1 on record "Bet Unit" data
        clear record "Target Dozen" Layout
    end
    copy last dozen to record "Target Dozen" Layout
    Call "Bet"
end

// ****************************************************************************
Method "Bet"
begin
    if Bankroll >= record "Prev Bankroll" data
    begin
        put 1 on record "Bet Unit" data
        put 100% Bankroll on record "Prev Bankroll" data
    end

    if Bankroll < record "Prev Bankroll" data
    begin
        Add 1 to record "Bet Unit" data
    end

    put 100% record "Bet Unit" data on record "Target Dozen" layout
end
[/reveal]
nOrMy2o0o  ‹(•¿•)›
"Learn from yesterday, live for today, hope for tomorrow. The important thing is not to stop questioning."  Albert Einstein

Bigbroben

Quote from: RP501 on Dec 06, 06:23 PM 2018
Is this test with Excel, or with an actual Roulette testing software like Roulette Xtreme 2.0 (:.uxsoftware.com)?
Yes,Excel.  She is my mistress.
Life is hard, and then you die.
Mes pensées sont le dernier retranchement de ma liberté.

RP501

Quote from: Normy2000 on Dec 06, 06:45 PM 2018Here my friend:

REVEAL: SHOW

WOW!!!  The RX Code worked!!  My first time seeing the RX software work in automated mode - like MAGIC!!!  Thanks a MILLION NORMY2000!!!   :thumbsup:
If you believe it is IMPOSSIBLE to win at Roulette long-term, then you will never win. ... But, if you believe anything is possible, then you will find the way.

Normy2000

nOrMy2o0o  ‹(•¿•)›
"Learn from yesterday, live for today, hope for tomorrow. The important thing is not to stop questioning."  Albert Einstein

RP501

Quote from: Normy2000 on Dec 06, 06:45 PM 2018system "Hottest Dozen"
// Coded by Normy2000
method "main"
begin
    While starting a new session
    begin
        put 0 on record "Prev Bankroll" data
        put 1 on record "Bet Unit" data
        clear record "Target Dozen" Layout
    end
    copy last dozen to record "Target Dozen" Layout
    Call "Bet"
end

// ****************************************************************************
Method "Bet"
begin
    if Bankroll >= record "Prev Bankroll" data
    begin
        put 1 on record "Bet Unit" data
        put 100% Bankroll on record "Prev Bankroll" data
    end

    if Bankroll < record "Prev Bankroll" data
    begin
        Add 1 to record "Bet Unit" data
    end

    put 100% record "Bet Unit" data on record "Target Dozen" layout
end

It doesn't look like it's adding 1 Unit, win or lose, and that it's not going by the "previous highest" bankroll, not just the previous high.  And it's betting 2 units on the 1st Dozen, in addition to the 2nd or 3rd Dozen.  Although the way it is currently, seems to be working still.   ;D

<img src="link:://:.pichost.org/images/2018/12/06/RXCapture.png" alt="RXCapture.png" border="0" />
If you believe it is IMPOSSIBLE to win at Roulette long-term, then you will never win. ... But, if you believe anything is possible, then you will find the way.

RP501

Quote from: RP501 on Dec 06, 08:20 PM 2018It doesn't look like it's adding 1 Unit, win or lose, and that it's not going by the "previous highest" bankroll, not just the previous high.  And it's betting 2 units on the 1st Dozen, in addition to the 2nd or 3rd Dozen.

I think there was a glitch, now it's working.  I did a couple of 25,000 spins, and it eventually tanks every time.  :o

<img src="link:://:.pichost.org/images/2018/12/07/RXGraph-ChasingDozensFitzroyMethod.png" alt="RXGraph-ChasingDozensFitzroyMethod.png" border="0" />
If you believe it is IMPOSSIBLE to win at Roulette long-term, then you will never win. ... But, if you believe anything is possible, then you will find the way.

Let Me Win

Yeah, this was already known over 100 years ago by the shareholders of Monte Carlo.

RouletteGhost

Quote from: Let Me Win on Dec 06, 10:40 PM 2018
Yeah, this was already known over 100 years ago by the shareholders of Monte Carlo.

Do you have any contributions to make in the game?
the key to winning with systems : play for a statistically irrelevant number of spins

link:[url="s://m.youtube.com/watch?v=nmJKY59NX8o"]s://m.youtube.com/watch?v=nmJKY59NX8o[/url]

-