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

News:

Progression bets are nothing more than different size bets on different spins. You could get lucky and win big, or unlucky and lose even more.

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

SplitMaestro

Started by ignatus, Mar 29, 12:08 PM 2020

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

ignatus

OK, This is was something i did for fun/experiement....it about an 80% winrate from my testings. i had 1 9/10, 2 8/10 win etc...

so, as always, Use your own moneymanagement and progression (if you don´t like mine).

Its 2+2 splits bet 8 numbers total bet. First 2 LINES hit,--BET the 2 Unhit SPLITS within that particular LINE hit.

... i put a WG+500 and a SL -1500. THAT means it *should* be profitable then-- 2 Losses in average from 10 games  2*1500= -3000 and then? Profits 8*500= +4000. That means from each 10 games you SHOULD make +1000u profits, (with this moneymanagement) well? you could use a lower wingoal and Bankroll, this you have to test yourself and see, i cannot help you with that....

progressionline (Neg 8 numbers) 1,1,1,1,2,2,3,4,5,6,8,10,13,17,22,28,36,46,59,76,98,126,162,208,268,344,443,569,732,941

RX-code
system "Splitmaestro"
// © ignatus 2020 ©

method "main"
begin
while starting a new session
begin
        Set List[1,1,1,1,2,2,3,4,5,6,8,10,13,17,22,28,36,46,59,76,98,126,162,208,268,344,443,569,732,941]
               to Record "progression" Data

       Set List[1,2,3,4,5,6,7] to Record "bets" Data
end

        Copy List [Split(2-5),split(3-6)] to Record "s1" Layout
        Copy List [Split(1-4),split(3-6)] to Record "s2" Layout
        Copy List [Split(1-4),split(2-5)] to Record "s3" Layout
       
        Copy List [Split(8-11),split(9-12)] to Record "s4" Layout
        Copy List [Split(7-10),split(9-12)] to Record "s5" Layout
        Copy List [Split(7-10),split(8-11)] to Record "s6" Layout
       
        Copy List [Split(14-17),split(15-18)] to Record "s7" Layout
        Copy List [Split(13-16),split(15-18)] to Record "s8" Layout
        Copy List [Split(13-16),split(14-17)] to Record "s9" Layout
       
        Copy List [Split(20-23),split(21-24)] to Record "s10" Layout
        Copy List [Split(19-22),split(21-24)] to Record "s11" Layout
        Copy List [Split(19-22),split(20-23)] to Record "s12" Layout
       
        Copy List [Split(26-29),split(27-30)] to Record "s13" Layout
        Copy List [Split(25-28),split(27-30)] to Record "s14" Layout
        Copy List [Split(25-28),split(26-29)] to Record "s15" Layout
       
        Copy List [Split(32-35),split(33-36)] to Record "s16" Layout
        Copy List [Split(31-34),split(33-36)] to Record "s17" Layout
        Copy List [Split(31-34),split(32-35)] to Record "s18" Layout
       

        Copy List [Line(1-6),Line(7-12)]
        to Record "d1" Layout
       
        Copy List [Line(13-18),Line(19-24)]
        to Record "d2" Layout
       
        Copy List [Line(25-30),Line(31-36)]
        to Record "d3" Layout
       
         Copy List [High]
        to Record "H" Layout
       
         Copy List [Low]
        to Record "L" Layout



  while on each spin
  begin
 
   Track last Number for 1 spins to
Record "last1" layout
 

   If Any split bet won each
begin
  reset all flags false
  put 1 to Record "progression" Data Index
  Put 1 to Record "bets" Data Index
  clear Record "d1" layout
  clear Record "d2" layout
  clear Record "d3" layout
  set flag "d1" false
  set flag "d2" false
  set flag "d3" false
  set flag "d1bet" false
  set flag "d2bet" false
  set flag "d3bet" false
end




if total bankroll >= 500 each time
begin
  stop session
end


if total bankroll <= -1500 each time
begin
  stop session
end

{if total spin count >= 250 each time
begin
  stop session
end
}

if total inside bets count > 0 each
begin

if any Line bet won each
begin
set flag "prog" true
end

If flag "prog" false each
begin
  add 1 on Record "progression" Data Index
end

set flag "prog" false

end



if total split bets count <= 3 each
begin

set flag "bet" true



IF Line(1-6) hit each
begin
set flag "d1" true
set flag "L1" true



IF split(1-4) hit each
begin

set flag "s1" true
set flag "L" true

end

IF split(2-5) hit each
begin

set flag "s2" true
set flag "L" true

end

IF split(3-6) hit each
begin

set flag "s3" true
set flag "L" true

end

end


IF Line(7-12) hit each
begin

set flag "d1" true
set flag "L2" true


IF split(7-10) hit each
begin

set flag "s4" true
set flag "L" true
end

IF split(8-11) hit each
begin

set flag "s5" true
set flag "L" true

end

IF split(9-12) hit each
begin

set flag "s6" true
set flag "L" true

end

end




IF Line(13-18) hit each
begin

set flag "d2" true
set flag "L3" true


IF split(13-16) hit each
begin

set flag "s7" true
set flag "L" true

end

IF split(14-17) hit each
begin

set flag "s8" true
set flag "L" true

end

IF split(15-18) hit each
begin

set flag "s9" true
set flag "L" true

end

end



IF Line(19-24) hit each
begin

set flag "d2" true
set flag "L4" true


IF split(19-22) hit each
begin

set flag "s10" true
set flag "H" true


end

IF split(20-23) hit each
begin

set flag "s11" true
set flag "H" true


end

IF split(21-24) hit each
begin

set flag "s12" true
set flag "H" true


end

end


IF Line(25-30) hit each
begin
set flag "d3" true
set flag "L5" true
set flag "H" true


IF split(25-28) hit each
begin

set flag "s13" true
set flag "H" true

end

IF split(26-29) hit each
begin

set flag "s14" true
set flag "H" true

end

IF split(27-30) hit each
begin

set flag "s15" true
set flag "H" true

end

end



IF Line(31-36) hit each
begin

set flag "d3" true
set flag "L6" true
set flag "H" true


IF split(31-34) hit each
begin

set flag "s16" true
set flag "H" true

end

IF split(32-35) hit each
begin

set flag "s17" true
set flag "H" true

end

IF split(33-36) hit each
begin

set flag "s18" true
set flag "H" true

end


end

end





If flag "s1" true each
begin
put 100% of Record "progression" Data on Record "s1" Layout list
end




If flag "s2" true each
begin
put 100% of Record "progression" Data on Record "s2" Layout list
end


If flag "s3" true each
begin
put 100% of Record "progression" Data on Record "s3" Layout list
end


If flag "s4" true each
begin
put 100% of Record "progression" Data on Record "s4" Layout list
end


If flag "s5" true each
begin
put 100% of Record "progression" Data on Record "s5" Layout list
end


If flag "s6" true each
begin
put 100% of Record "progression" Data on Record "s6" Layout list
end


If flag "s7" true each
begin
put 100% of Record "progression" Data on Record "s7" Layout list
end


If flag "s8" true each
begin
put 100% of Record "progression" Data on Record "s8" Layout list
end


If flag "s9" true each
begin
put 100% of Record "progression" Data on Record "s9" Layout list
end






If flag "s10" true each
begin
put 100% of Record "progression" Data on Record "s10" Layout list
end


If flag "s11" true each
begin
put 100% of Record "progression" Data on Record "s11" Layout list
end


If flag "s12" true each
begin
put 100% of Record "progression" Data on Record "s12" Layout list
end

If flag "s13" true each
begin
put 100% of Record "progression" Data on Record "s13" Layout list
end


If flag "s14" true each
begin
put 100% of Record "progression" Data on Record "s14" Layout list
end


If flag "s15" true each
begin
put 100% of Record "progression" Data on Record "s15" Layout list
end


If flag "s16" true each
begin
put 100% of Record "progression" Data on Record "s16" Layout list
end


If flag "s17" true each
begin
put 100% of Record "progression" Data on Record "s17" Layout list
end


If flag "s18" true each
begin
put 100% of Record "progression" Data on Record "s18" Layout list
end






If Record "progression" Data Index >
  Record "progression" Data Count
  Begin
  Put 1 on Record "progression" Data Index
  Put 1 on Record "bets" Data Index
  reset all flags false
  set flag "db" false
  set flag "d1" false
  set flag "d2" false
  set flag "d3" false
  set flag "d1bet" false
  set flag "d2bet" false
  set flag "d3bet" false

  set flag "L1" false
  set flag "L2" false
  set flag "L3" false
  set flag "L4" false
  set flag "L5" false
  set flag "L6" false
 
  set flag "s1" false
  set flag "s2" false
  set flag "s3" false
  set flag "s4" false
  set flag "s5" false
  set flag "s6" false
  set flag "s7" false
  set flag "s8" false
  set flag "s9" false
  set flag "s10" false
  set flag "s11" false
  set flag "s12" false
  set flag "s13" false
  set flag "s14" false
  set flag "s15" false
  set flag "s16" false
  set flag "s17" false
  set flag "s18" false

  clear Record "s1" Layout
  clear Record "s2" Layout
  clear Record "s3" Layout
  clear Record "s4" Layout
  clear Record "s5" Layout
  clear Record "s6" Layout
  clear Record "s7" Layout
  clear Record "s8" Layout
  clear Record "s9" Layout
  clear Record "s10" Layout
  clear Record "s11" Layout
  clear Record "s12" Layout

  End
 
    Track last Number for 10 spins to
Record "secondlast" layout

  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

Face


-