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

News:

Test the accuracy of your method to predict the winning number. If it works, then your system works. But tests over a few hundred spins tell you nothing.

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

Easy EC 2

Started by ignatus, Dec 25, 12:22 AM 2019

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

ignatus

This is based on OZOn´s EC system. (not exactly alike, but similar) it bet both H/L and R/B (when a trigger comes) TRIGGER 5 of the same outcomes, THEN bet the opposite EC for the next 10 spins (nonstop, win or lose) with a simple Neg. Martingale. (reset prog after each win) AFTER 10 spins, Reset/Restart.

TEST1

73247 Live spins.

(WG+250/SL-500)

won 39
lost 12

winrate 76%

won 39*250=9750
lost 12*500=6000

TOTAL= +3750

RX-code Easy EC2 (Check Statistics->Data Records for Wins/Losses)
system "Easy EC2"
// © ignatus 2019 ©

method "main"
begin
  while starting a new session
  begin
      put 0 to Record "Highest Bankroll" Data
       Set List [1,2,4,8,16,32,64,128,256,512,1000]
               {  ,26,27,28,29,30,31,32,33,34,35,
                 36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,
                 68,69,70,71,72]
                 ,73,74,75,77,80,82,85,88,90,92,95,100,105,110,115,120,125,135,144,155,165,175,190,
                 215,233,265,300,345,377,400,450,525,610,675,750,850,1000]
       }
       to Record "progression" Data
       
       Set List [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18]
       to Record "count" Data

  end
       Copy List [Black] to Record "B" Layout
       Copy List [Red] to Record "R" Layout
       
       Copy List [High] to Record "H" Layout
       Copy List [Low] to Record "L" Layout


  while on each spin
  begin
 
  if total bankroll >= 250 each time
begin
//stop session
add 1 to record "won sessions" data index
    put 0 on total bankroll
    put 1 on Record "progression" Data Index
    put 1 on Record "count" Data Index
       Reset all flags false

end


if total bankroll <= -500 each time
begin
//stop session
add 1 to record "lost sessions" data index
    put 0 on total bankroll
    put 1 on Record "progression" Data Index
    put 1 on Record "count" Data Index
       Reset all flags false


end
 

  IF any outside bet lost each
  begin
   add 1 on Record "progression" Data Index
  end

  if any outside bet won each
  begin
    put 1 on Record "progression" Data Index

   {  if Bankroll >= Record "Highest Bankroll" Data
    begin
        clear Record "Highest Bankroll" Data
        put 100% Bankroll to Record "Highest Bankroll" Data
        put 1 on Record "progression" Data Index
    end
    }
  end

  if record "count" data index >= 11 each
  begin
  put 1 on Record "count" Data Index
       Reset all flags false
  end

IF Red has hit more 4 time each
begin
if flag "R" false each
begin
set flag "bet" true
set flag "B" true
end
end

IF Black has hit more 4 time each
begin
if flag "B" false each
begin
set flag "bet" true
set flag "R" true
end
end

IF High has hit more 4 time each
begin
if flag "H" false each
begin
set flag "bet" true
set flag "L" true
end
end

IF Low has hit more 4 time each
begin
if flag "L" false each
begin
set flag "bet" true
set flag "H" true
end
end


if Record "count" data index <= 16 each
begin

IF flag "H" true each
begin
Put 100% of Record "progression" Data to Record "H" Layout List
end

IF flag "L" true each
begin
Put 100% of Record "progression" Data to Record "L" Layout List
end

IF flag "R" true each
begin
Put 100% of Record "progression" Data to Record "R" Layout List
end

IF flag "B" true each
begin
Put 100% of Record "progression" Data to Record "B" Layout List
end

end

if flag "bet" true each
begin
add 1 on Record "count" data index
end

If Record "progression" Data Index >
  Record "progression" Data Count
    Begin
      clear Record "R" layout
      clear Record "B" layout
      clear Record "H" layout
      clear Record "L" layout
      Put 1 on Record "progression" Data Index

    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

ignatus

Experimenting with different WG/SL now, (WG+200/SL-300), decent results...

56947 Live spins.

(WG+200/SL-300)

won 35
lost 16

winrate 69%

won 35*200=7000
lost 16*300=4800

TOTAL= +2200

RX.code
system "Easy EC2"
// © ignatus 2019 ©

method "main"
begin
  while starting a new session
  begin
      put 0 to Record "Highest Bankroll" Data
       Set List [1,2,4,8,16,32,64,128,256,512,1000]
                      to Record "progression" Data
       
       Set List [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18]
       to Record "count" Data

  end
       Copy List [Black] to Record "B" Layout
       Copy List [Red] to Record "R" Layout
       
       Copy List [High] to Record "H" Layout
       Copy List [Low] to Record "L" Layout


  while on each spin
  begin
 
  if total bankroll >= 200 each time
begin
//stop session
add 1 to record "won sessions" data index
    put 0 on total bankroll
    put 1 on Record "progression" Data Index
    put 1 on Record "count" Data Index
       Reset all flags false

end


if total bankroll <= -300 each time
begin
//stop session
add 1 to record "lost sessions" data index
    put 0 on total bankroll
    put 1 on Record "progression" Data Index
    put 1 on Record "count" Data Index
       Reset all flags false


end
 

  IF any outside bet lost each
  begin
   add 1 on Record "progression" Data Index
  end

  if any outside bet won each
  begin
    put 1 on Record "progression" Data Index

   {  if Bankroll >= Record "Highest Bankroll" Data
    begin
        clear Record "Highest Bankroll" Data
        put 100% Bankroll to Record "Highest Bankroll" Data
        put 1 on Record "progression" Data Index
    end
    }
  end

  if record "count" data index >= 11 each
  begin
  put 1 on Record "count" Data Index
       Reset all flags false
  end

IF Red has hit more 4 time each
begin
if flag "R" false each
begin
set flag "bet" true
set flag "B" true
end
end

IF Black has hit more 4 time each
begin
if flag "B" false each
begin
set flag "bet" true
set flag "R" true
end
end

IF High has hit more 4 time each
begin
if flag "H" false each
begin
set flag "bet" true
set flag "L" true
end
end

IF Low has hit more 4 time each
begin
if flag "L" false each
begin
set flag "bet" true
set flag "H" true
end
end


if Record "count" data index <= 16 each
begin

IF flag "H" true each
begin
Put 100% of Record "progression" Data to Record "H" Layout List
end

IF flag "L" true each
begin
Put 100% of Record "progression" Data to Record "L" Layout List
end

IF flag "R" true each
begin
Put 100% of Record "progression" Data to Record "R" Layout List
end

IF flag "B" true each
begin
Put 100% of Record "progression" Data to Record "B" Layout List
end

end

if flag "bet" true each
begin
add 1 on Record "count" data index
end

If Record "progression" Data Index >
  Record "progression" Data Count
    Begin
      clear Record "R" layout
      clear Record "B" layout
      clear Record "H" layout
      clear Record "L" layout
      Put 1 on Record "progression" Data Index

    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

ignatus

TEST2

53216 Live spins.

(WG+200/SL-300)

won 34
lost 18

winrate 65%

won 34*200=6800
lost 18*300=5400

TOTAL= +1400
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

Tekunda

So basically it's a ten step Martingale, if we play the next 10 spins non stop, win or loose.
Isn't the last spin a rather expensive one, much higher than the stop/loss limit, if you don't happen to have a positive buffer on your account?

ignatus

Quote from: Tekunda on Dec 25, 10:54 AM 2019
So basically it's a ten step Martingale, if we play the next 10 spins non stop, win or loose.
Isn't the last spin a rather expensive one, much higher than the stop/loss limit, if you don't happen to have a positive buffer on your account?

well, yes, but no? Depending of what STOPLOSS you play with, progression never goes that far, now i put a stoploss at 300u, and wingoal at 200u, seems to work (atleast profitable, from my testings...)
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

-