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

Roulette-focused => Bet selection => Topic started by: ignatus on Mar 13, 09:41 AM 2020

Title: Kings Corner Hedge
Post by: ignatus on Mar 13, 09:41 AM 2020
1 Corner/Quad bet + Hedge bet High.

Progression (none if High hits) -1 step for each win and Reset when reached a new high.

1,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

With a 2500u BR this had a 90% winrate,...perhaps unrealistic because played with 1u bets and so on..

RX-code.
system "Kings Corner Hedge"
// © ignatus 2020

method "main"
begin
  while starting a new session
  begin
       Set List [1,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
   put 0 to Record "Highest Bankroll" Data


  while on each spin
  begin

  if total bankroll <= -2500 each
  begin
  stop session
  end

  if total bankroll >= 500 each
  begin
  stop session
  end
 
{ if total spin count >= 3000 each
  begin
  stop session
  end
  }
  If any corner bet won each
  begin
  subtract 1 on Record "progression" Data Index
  if Record "progression" Data Index <= 0 each
  begin
   put 1 on Record "progression" Data Index
  end
   reset all flags false
  // clear Last Answer

  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 total inside bets count >= 1 each
begin

  if any even bet won each
  begin
  set flag "noprog" true
  end

    IF flag "noprog" false each
  begin

  add 1 on Record "progression" Data Index
  end

   
  set flag "noprog" false

end




Put 100% of Record "progression" Data to corner(1:5)
Put 100% of Record "progression" Data to High


       


  If Record "progression" Data Index >
  Record "progression" Data Count
    Begin
       Put 1 on Record "progression" Data Index
       reset all flags false
    End

  end
END