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

Roulette-focused => Main Roulette Board => Topic started by: jbudd32 on Nov 05, 07:20 AM 2015

Title: How to test a system in millions of spins
Post by: jbudd32 on Nov 05, 07:20 AM 2015
Hi, i have a system i would like to test in around a million of spins. Is there anyone who can help or point me to a website or application that can do this.... I have no clue when it comes to things like that?

Thanks in Advance
Title: Re: How to test a system in millions of spins
Post by: RouletteGhost on Nov 05, 07:27 AM 2015
Good morning

Do you find it necessary to test 1 million spins? I always found that excessive.

A few thousand should do?
Title: Re: How to test a system in millions of spins
Post by: jbudd32 on Nov 05, 07:35 AM 2015
Very True, i had thought that after i posted the question.

So maybe over 2,000-5,000 spins then
Title: Re: How to test a system in millions of spins
Post by: denzie on Nov 05, 07:48 AM 2015
Quote from: jbudd32 on Nov 05, 07:35 AM 2015

So maybe over 2,000-5,000 spins then

That is peanuts . So many systems doing good for 1000-10000spins and then go down faster than the HarI Kira mountainslide. I would suggest millions.
But everyone his opinion.
Title: Re: How to test a system in millions of spins
Post by: RouletteGhost on Nov 05, 07:50 AM 2015
Quote from: jbudd32 on Nov 05, 07:35 AM 2015
Very True, i had thought that after i posted the question.

So maybe over 2,000-5,000 spins then

Sometimes i use testmystrategy.com which i dont usually trust

Rx? I dunno i usually manually test 185 spin sessions from this forum and zumma

Test my strategy is good for monitoring win vs loss streaks
Title: Re: How to test a system in millions of spins
Post by: Azim on Nov 05, 10:38 AM 2015
Are you trying to test this system of yours?

link:://:.rouletteforum.cc/index.php?topic=16120.msg140449#msg140449 (link:://:.rouletteforum.cc/index.php?topic=16120.msg140449#msg140449)
Title: Re: How to test a system in millions of spins
Post by: jbudd32 on Nov 06, 03:37 AM 2015
Possibly this system plus some others i am trying to test
Title: Re: How to test a system in millions of spins
Post by: ego on Nov 06, 08:17 AM 2015
 You can buy Roulette Extreme from UXSoftware - then you can contact Normy2000 to code the system for you - he take around 40 Euro for each system code.
Check out hes website, he make bots and clickers and RX code ... link:://:.norcosoft.com/ (link:://:.norcosoft.com/)

Cheers
Title: Re: How to test a system in millions of spins
Post by: RouletteGhost on Nov 06, 08:46 AM 2015
Quote from: ego on Nov 06, 08:17 AM 2015
You can buy Roulette Extreme from UXSoftware - then you can contact Normy2000 to code the system for you - he take around 40 Euro for each system code.
Check out hes website, he make bots and clickers and RX code ... link:://:.norcosoft.com/ (link:://:.norcosoft.com/)

Cheers

Ego if i wanted to use RX to test 10,000 spins on a particular system can normy code that? I want to test the 1 2 3 dozens with 1 3 9 over 10k spins. Thanks
Title: Re: How to test a system in millions of spins
Post by: ego on Nov 06, 10:04 AM 2015

Yes he can code any system and you can run RX for several million or just 10.000 spins - it up to you.
I got a complex system by Kav and got it coded into RX by Normand.

40 Euro is cheap.

Just email him with instructions and pay him with paypal.

Title: Re: How to test a system in millions of spins
Post by: RouletteGhost on Nov 06, 10:06 AM 2015
Quote from: ego on Nov 06, 10:04 AM 2015
Yes he can code any system and you can run RX for several million or just 10.000 spins - it up to you.
I got a complex system by Kav and got it coded into RX by Normand.

40 Euro is cheap.

Just email him with instructions and pay him with paypal.

Thanks
Title: Re: How to test a system in millions of spins
Post by: ego on Nov 06, 10:24 AM 2015
 I could see you mention Turbos 4 past system at that topic - here is the RX code for the system.


system "4 Spin Sequence System The original"
{
****************************************
*        System by TurboGenius         *
* link:://:.freewebs.com/turbogenius/ (link:://:.freewebs.com/turbogenius/) *
****************************************
        Rx-ed by St0rm0r
Track Dozens for 4 times
Bet with 5 units that the same pattern will not repeat
}
method "main"
begin
while starting new session
    begin
    call "init"
    exit
    end

if net < 0
    begin
    add 1 to record"pro"data index
    if record"pro"data index > record"pro"data count
        begin
        put 1 in record"pro"data index
        end
    end

if net > 0
begin
put 1 in record"pro"data index
end

track last dozen for 4 times in record"last dozens"layout
if record"last dozens"layout index < 4 and flag "at start" true
    begin
    exit
    end
set flag "at start" false
if record"last dozens"layout index = 4
    begin
    duplicate record"last dozens" to record"dozens to play"
    clear record"last dozens"layout
    put 0 in record"bet sequence"data
    end



//bet
add 1 in record"bet sequence"data
if record"bet sequence"data > 4
    begin
    put 1 in record"bet sequence"data
    end
put 100% of record"bet sequence"data in record"dozens to play"layout index
if record"dozens to play"layout = 1st dozen
    begin
    put 100% of record"pro"data on 2nd dozen
    put 100% of record"pro"data on 3rd dozen
    end
if record"dozens to play"layout = 2nd dozen
    begin
    put 100% of record"pro"data on 1st dozen
    put 100% of record"pro"data on 3rd dozen
    end
if record"dozens to play"layout = 3rd dozen
    begin
    put 100% of record"pro"data on 2nd dozen
    put 100% of record"pro"data on 1st dozen
    end

end

method "init"
begin
set list [5,15,45,135] to record"pro"data
put 1 in record"pro"data index
set flag "at start" true
call "reset"
end

method "reset"
begin
clear record"last dozens"layout
put 0 in record"bet sequence"data
end

Title: Re: How to test a system in millions of spins
Post by: Normy2000 on Nov 06, 11:19 AM 2015
Quote from: ego on Nov 06, 10:04 AM 2015
Yes he can code any system and you can run RX for several million or just 10.000 spins - it up to you.
I got a complex system by Kav and got it coded into RX by Normand.

40 Euro is cheap.

Just email him with instructions and pay him with paypal.
:thumbsup:

Might be less than 40E if the system is simple...  8)
Title: Re: How to test a system in millions of spins
Post by: RouletteGhost on Nov 06, 11:23 AM 2015
Quote from: Normy2000 on Nov 06, 11:19 AM 2015
:thumbsup:

Might be less than 40E if the system is simple...  8)

Normy id like to code one tastes system

I am in the US therfore no online casinos for me but id like to test 10k spins i have.

I will PM u sometimes this weekend
Title: Re: How to test a system in millions of spins
Post by: Normy2000 on Nov 06, 11:45 AM 2015
Can you provide the link for OneTaste's system please?
Title: Re: How to test a system in millions of spins
Post by: RouletteGhost on Nov 06, 11:48 AM 2015
1 mini game is 3 spins

Progression 1. 3. 9

On any win stop and wait until the next 3 spin game. Goal is one unit per 3 spins. So if win at spin 1 wait 3 more spins to bet. If win at spin 2 wait 2 to bet again etc. Easy peasy

Spin 1. Bet dozen 2 and 3
Spin 2. Bet dozen 1 and 3.
Spin 3. Bet dozen 1 and 2.

I tweaked it to dozens and columns but this first

Thanks

link:://:.rouletteforum.cc/index.php?topic=16172.0 (link:://:.rouletteforum.cc/index.php?topic=16172.0)