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

Roulette-focused => Bet selection => Topic started by: ignatus on May 05, 02:14 PM 2019

Title: EC Singles Matrix
Post by: ignatus on May 05, 02:14 PM 2019
Ok, just an idea i tested now,..EC-system.

I had good results from the first test,..

Procedure; Look for two SINGLES in a row (...BRB..BRB..) RED in this example, Next time RED appear, bet RED.....IF LOSS, STOP and wait for a new RED to appear before bet... until HIT (a series RR come).

TEST1. (RNG 25u bets)
Title: Re: EC Singles Matrix
Post by: ignatus on May 05, 02:49 PM 2019
TEST2. (25u bets, LIVE-spins)

Now, played with a simple martingale, 1,2,4,8,16....from both my tests, i didn't go beyond step 5,(16) so far, so good.
Title: Re: EC Singles Matrix
Post by: ignatus on May 06, 03:52 AM 2019
..finished the code now, and it looks good?

i didn't get 1 complete loss in 10 000 spins,..don't know if im lucky or not...

TEST1 RNG (5u bets)

RX-code
system "EC Singles Matrix"
// © ignatus 2019 ©

method "main"
begin
    While Starting a New Session
    begin
        Set List [5,15,35,80,130,210,340,550,890]
        to Record "progression" Data

    end
    Copy List [Red] to Record "R" Layout
    Copy List [Black] to Record "B" Layout


While on Each Spin
begin

IF any outside bet won each
begin
set flag "trigger1" false
set flag "trigger2" false
set flag "triggerRED" false
set flag "triggerBLACK" false
put 1 on on Record "progression" data index
clear record "R" layout
clear record "B" layout
end

if number 0 not hit each
begin

Track last Red-Black patterns for 3 spins to
Record "patterns" layout

If List [Black, Red, Black] has a Pattern Match to
Record "patterns" Layout
Begin


      IF flag "trigger1" true each
      begin
        set flag "triggerRED" true
        set flag "trigger1" false
      end

       set flag "trigger1" true
End
     
If List [Red, Black, Red] has a Pattern Match to
Record "patterns" Layout
Begin

      IF flag "trigger2" true each
      begin
        set flag "triggerBLACK" true
        set flag "trigger2" false
      end

       set flag "trigger2" true
End


Track last Red-Black patterns for 2 spins to
Record "patterns2" layout

If List [Red, Red] has a Pattern Match to
Record "patterns2" Layout
Begin
     set flag "trigger1" false
     set flag "triggerRED" false
end

    IF flag "triggerRED" is true each
    begin
    IF Red has hit each
    begin
    Put 100% of Record "progression" data on Record "R" Layout List
    add 1 on Record "progression" data index
    end
    end

If List [Black, Black] has a Pattern Match to
Record "patterns2" Layout
Begin
     set flag "trigger2" false
     set flag "triggerBLACK" false
end

    IF flag "triggerBLACK" is true each
    begin
    IF Black has hit each
    begin
    Put 100% of Record "progression" data on Record "B" Layout List
    add 1 on Record "progression" data index
    end
    end

    end
    end
End
Title: Re: EC Singles Matrix
Post by: Maui13 on May 06, 04:14 AM 2019
I like the system - however betting opportunities are very scarce?

How often does that trigger shop up?
Title: Re: EC Singles Matrix
Post by: poluvolo on May 06, 08:17 AM 2019
Yes  super triger but very rare betting opportunities
after 180 spins at airball machines only two betting opportunities.
The first trigger won on second step  and second trigger won after first step
CHEERS
Title: Re: EC Singles Matrix
Post by: ignatus on May 06, 08:42 AM 2019
Quote from: poluvolo on May 06, 08:17 AM 2019
Yes  super triger but very rare betting opportunities
after 180 spins at airball machines only two betting opportunities.
The first trigger won on second step  and second trigger won after first step
CHEERS

Alright,
Title: Re: EC Singles Matrix
Post by: sugtips on Jul 17, 08:50 PM 2020
Thanks God and Good Morning All.

Thank you Ignatus for this system.

I humbly request for more testing on this system and any better progression.

Also if any other good matrix systems for EC please post.

Love and Light,
SugTips
Title: Re: EC Singles Matrix
Post by: Richard Meisel on Jul 17, 11:18 PM 2020
Quote from: ignatus on May 05, 02:14 PM 2019Procedure; Look for two SINGLES in a row (...BRB..BRB..) RED in this example, Next time RED appear, bet RED.....IF LOSS, STOP and wait for a new RED to appear before bet... until HIT (a series RR come).
Hi Ig, looks like you are Reading Randomness.