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

Roulette-focused => Bet selection => Topic started by: ignatus on Jun 24, 01:00 PM 2018

Title: Corner Matrix 7
Post by: ignatus on Jun 24, 01:00 PM 2018
Something worth to mention? idk,  :question:

From the first test it had a 70% winrate (7/10) games won with a +500/-500 wg/sl (ofcourse these settings can be adjusted)


RX Code
==============
system "Corner Matrix 7"

method "main"
begin
while starting a new session
  begin
       Set List [1,1,2,3,5,8,13,21,34,55,89]
       to Record "progression" Data
  end


        Copy List [corner(1:5),corner(4:8),corner(7:11),corner(10:14),corner(13:17),
        corner(16:20),corner(19:23)]
        to Record "bet" Layout



  while on each spin
  begin


  if bankroll>=500
  begin
  stop session
  end

  if bankroll<=-500
  begin
  stop session
  end

   If record "bet" Layout list has lost Each time
          Begin
            add 1 on Record "progression" Data Index
          End

if any inside bet has won each
  begin
   clear Record "bet" Layout
   Put 1 on Record "progression" Data Index
  end


  If Record "progression" Data Index >
  Record "progression" Data Count
    Begin
    clear record "bet" layout

      Put 1 on Record "progression" Data Index
    End
   
    Put 100% of Record "progression" Data to Record "bet" Layout List
end
END