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

Roulette-focused => Bet selection => Topic started by: ignatus on Jul 01, 08:22 PM 2019

Title: System with a 90% winrate
Post by: ignatus on Jul 01, 08:22 PM 2019
5 streets bet. Each new street is Bet until 5 Streets bet. (Start progression when 3 streets bet, 2u... )

When 5 Streets bet (Stop betting new streets) those same 5 streets bet, until hit.

Progressionline (simple fibonacci); 1,2,3,5,8,13,21,32,55,89,144,233,377,610,987

RX-code
System "5 STREETS Repeater"
//(copyright) ignatus 2019

method "main"
begin
while starting a new session
begin
   put 0 to Record "Highest Bankroll" Data

   Set List [1,2,3,5,8,13,21,32,55,89,144,233,377,610,987]   to Record "progression" Data
   Set List [1,2,3,4,5,6,7,8,9,10,11,12,13] to Record "Number Bet" Data
end

while on each spin
begin

copy last Number to Record "last1" layout

if flag "betmax" false each
begin

Track last street for 5 spins to
Record "last12" layout

end

if any inside bet won each
begin
       clear Record "last12" layout
       set flag "betmax" false
        put 1 on Record "progression" Data Index
        put 1 to Record "Number Bets" Data Index
end





IF Record "last12" layout count >= 3 each
Begin
add 1 on Record "progression" Data Index
end

IF Record "last12" layout count >= 5 each
Begin
set flag "betmax" true
end

add 1 on Record "Number Bet" Data Index
Put 100% of Record "progression" Data to Record "last12" layout list




If Record "progression" Data Index >
  Record "progression" Data Count
    Begin
     clear Record "last12" layout
     Put 1 on Record "progression" Data Index
     Put 1 on Record "Numbers Bet" Data
    End



{if total bankroll >= 10000 each time
begin
stop session
end
     }
if total bankroll <= -5000 each time
begin
stop session
end

  end
END
Title: Re: System with a 90% winrate
Post by: joiner29 on Jul 02, 01:32 PM 2019
When you say street do you mean 6 numbers
Title: Re: System with a 90% winrate
Post by: LUDOMANIAC on Jul 02, 03:14 PM 2019
Hi Ignatius,
Congrats!! Your streets repeater system plays very well, 90% safe yes, but looses some
oportunities and profits go quite slow. How about some little modifications:
First there must be always bets on six last numbersStreet; that is (even if it won dont just
erase all and start betting one by one new appearence) must just erase the progression betting
and start with last six numbersStreet by one unit, if it match keep the same unit on last six,
if not match erase the seventh last numbersStreet, and add one unit betting to the new and the five last
numbersStreet, next not match the new numberStreet will be 2 units and same for last five numbersStreet,
next keep doubling it till new match then, if match erase progression and start new betting one unit in last five
numbersStreet.(if the progression betting will raise too high I suggest, to keep progression by half,
on next bet, and next so on, I find several matches afterwards,else no match start one unit betting as usual).
You'll find that will be quite profitable, I had been playing for few hours
in RXtreme and today seems quite profitable, on tomorrows will see. hope you can code modifications,
best luck!!
Title: Re: System with a 90% winrate
Post by: ignatus on Jul 02, 03:14 PM 2019
Quote from: joiner29 on Jul 02, 01:32 PM 2019
When you say street do you mean 6 numbers

1 Street (3 numbers) For an example numbers Street (1-3)..you bet each Street that hits, until (5) Streets are bet 1+1+1+1+1 Streets bet. (Then you don´t bet anymore streets, keep the bet, Until hit).