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

Roulette-focused => Bet selection => Topic started by: ignatus on Apr 24, 12:39 PM 2020

Title: Double Line Hedge
Post by: ignatus on Apr 24, 12:39 PM 2020
I am not satisfied with the progression, anyway, yet another experiement, should have high winrate, i cant tell exactly what...

Procedure: Trigger 1 Line Hit 2 times in a row. THEN you bet the 2 unhit Lines (within the same H/L) also same amount (2u) on the opposite H/L (This is the Hedge-bet, no progression if the Hedge bet hits). Remove all bets when any Line bet hits.

*When A LOSS occur. you immediatly STOP and Remove all bets (but keep the progression, +1 step in progression, for the next bet) This i found works good, to cut losses.

Progressionline. 5,10,30,50,125,300,500,800,1000 (+1 step for each Loss, Also -2 Steps for each win, and Reset when reached a new high).

WG+300, SL-1500

RX-code
system "Double Line Hedge"
// © ignatus 2020 ©

method "main"
begin
  while starting a new session
  begin
       Set List[5,10,30,50,125,300,500,800,1000]
       to Record "progression" Data


  end
   put 0 to Record "Highest Bankroll" Data

      Copy List [High] to Record "H" Layout
       Copy List [Low] to Record "L" Layout

      Copy List [Line(1-6)] to Record "L1" Layout
       Copy List [Line(7-12)] to Record "L2" Layout
       Copy List [Line(13-18)] to Record "L3" Layout
       Copy List [Line(19-24)] to Record "L4" Layout
       Copy List [Line(25-30)] to Record "L5" Layout
       Copy List [Line(31-36)] to Record "L6" Layout
       
       Copy List [Street(1-3)] to Record "s1" Layout
        Copy List [Street(4-6)] to Record "s2" Layout
        Copy List [Street(7-9)] to Record "s3" Layout
        Copy List [Street(10-12)] to Record "s4" Layout
        Copy List [Street(13-15)] to Record "s5" Layout
        Copy List [Street(16-18)] to Record "s6" Layout
        Copy List [Street(19-21)] to Record "s7" Layout
        Copy List [Street(22-24)] to Record "s8" Layout
        Copy List [Street(25-27)] to Record "s9" Layout
        Copy List [Street(28-30)] to Record "s10" Layout
        Copy List [Street(31-33)] to Record "s11" Layout
        Copy List [Street(34-36)] to Record "s12" Layout
       


  while on each spin
  begin

  if total inside bets count > 1 each
  begin

      IF any even bet won each
  begin
   set flag "prog" true
  end
 
    if flag "prog" false each
    begin
    add 1 on Record "progression" Data Index
    Reset all flags false
   end
   
   set flag "prog" false
end



   If any Line bet won each
  begin
   //add 1 on Record "progression" Data Index
   subtract 2 from Record "progression" Data Index
          if Record "progression" Data Index <= 0 each
          begin
          put 1 on Record "progression" Data Index
          end
     Reset all flags false

      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 = 0 each
begin


  if Line(1-6) has hit more 1 time each
begin

IF flag "T1" false each
begin
Set flag "T1" true
end
end

if Line(7-12) has hit more 1 time each
begin


IF flag "T2" false each
begin
Set flag "T2" true
end
end


if Line(13-18) has hit more 1 time each
begin


IF flag "T3" false each
begin
Set flag "T3" true
end
end



if Line(19-24) has hit more 1 time each
begin


IF flag "T4" false each
begin
Set flag "T4" true
end
end


  if Line(25-30) has hit more 1 time each
begin

IF flag "T5" false each
begin
Set flag "T5" true
end
end


  if Line(31-36) has hit more 1 time each
begin

IF flag "T6" false each
begin
Set flag "T6" true
end
end

end




IF flag "T1" true each
begin
Put 100% of Record "progression" Data to Record "L2" Layout List
Put 100% of Record "progression" Data to Record "L3" Layout List

Put 200% of Record "progression" Data to Record "H" Layout List
end


IF flag "T2" true each
begin
Put 100% of Record "progression" Data to Record "L1" Layout List
Put 100% of Record "progression" Data to Record "L3" Layout List


Put 200% of Record "progression" Data to Record "H" Layout List
end


IF flag "T3" true each
begin
Put 100% of Record "progression" Data to Record "L1" Layout List
Put 100% of Record "progression" Data to Record "L2" Layout List

Put 200% of Record "progression" Data to Record "H" Layout List
end

IF flag "T4" true each
begin
Put 100% of Record "progression" Data to Record "L5" Layout List
Put 100% of Record "progression" Data to Record "L6" Layout List


Put 200% of Record "progression" Data to Record "L" Layout List
end

IF flag "T5" true each
begin
Put 100% of Record "progression" Data to Record "L4" Layout List
Put 100% of Record "progression" Data to Record "L6" Layout List

Put 200% of Record "progression" Data to Record "L" Layout List
end

IF flag "T6" true each
begin
Put 100% of Record "progression" Data to Record "L4" Layout List
Put 100% of Record "progression" Data to Record "L5" Layout List

Put 200% of Record "progression" Data to Record "L" Layout List
end











{ if total spin count >= 300 each
  begin
  stop session
  end
  }
 
  if total bankroll <= -1500 each
  begin
    stop session
   { add 1 to record "lost sessions" data index
    put 0 on total bankroll
    put 1 on Record "progression" Data Index
    }
  end

  if total bankroll >= 300 each
  begin
     stop session
   { add 1 to record "won sessions" data index
    put 0 on total bankroll
    put 1 on Record "progression" Data Index
    }
  end


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

  end
END