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

News:

Almost every system has been tested many times before. Start by learning what we already know doesn't work, and why.

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

EC Singles Matrix

Started by ignatus, May 05, 02:14 PM 2019

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

ignatus

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)
If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

ignatus

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.
If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

ignatus

..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
If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

Maui13

I like the system - however betting opportunities are very scarce?

How often does that trigger shop up?
Trust the timing of your life!

poluvolo

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

ignatus

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,
If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

sugtips

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
If you think you can, You can. If you think you can't, you are right.

Richard Meisel

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.

-