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

Roulette-focused => Bet selection => Topic started by: ignatus on Jul 13, 04:35 AM 2019

Title: DozenColumn Repeater 90% winrate
Post by: ignatus on Jul 13, 04:35 AM 2019
Test for fun, proved to be a very good system SHORT TERM. Perhaps the grail for Hit´n Run? TESTED now over 50 Live-session and in average about a 90% winrate MAX 300 spins (also depending on your MM ofc)...but IF you go for a very LOW wingoal perhaps +50u and MAX 100spins etc, i´d say it has a close to 100% winrate  :xd:

TEST yourself and see?  O0

Procedure; BET the current hit Dozen and Column, for each spin. (+1 step in the progressionline for each LOSS), RESET only if BOTH the Column & Dozen bet hits.

System "DozenColumn Repeater"
//(copyright) ignatus 2019

method "main"
begin
while starting a new session
begin

   Set List [1,1,2,2,3,3,5,5,8,8,13,13,21,21,32,32,55,55,89,89,144,144,233,233,377,377,610,610,987,987]   to Record "progression" Data

end

while on each spin
begin

if any dozen bet won each
begin
if any column bet won each
begin
  put 1 on Record "progression" Data Index
  clear Record "LastDozen" layout
  clear Record "LastColumn" layout
end
end

if any dozen bet lost each
begin
if any column bet lost each
begin
add 1 on Record "progression" Data Index
end
end


copy last Dozen to Record "LastDozen" layout
copy last Column to Record "LastColumn" layout

Put 100% of Record "progression" Data to Record "LastDozen" layout list
Put 100% of Record "progression" Data to Record "LastColumn" layout list






If Record "progression" Data Index >
  Record "progression" Data Count
    Begin
     Put 1 on Record "progression" Data Index
    End



if total spin count >= 300 each time
begin
stop session
end

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

  end
END