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

Roulette-focused => Bet selection => Topic started by: ignatus on Jul 15, 10:21 AM 2019

Title: Progressive Line BET 90%-100% winrate
Post by: ignatus on Jul 15, 10:21 AM 2019
Well now, had this idea now, bet 1-4 LINES in a progressive test, and?? from my testings now (with a 750u minimum BR, and MAX 300 spins) it had a 90%-100% winrate.

Tested over 50 Live-sessions.

Procedure; BEGIN Bet Line (1-6), next spin BET Line (7-12), next spin BET Line (13-18), next spin BET Line (19-24). After 4 Lines Bet, STOP and keep the same bet, Until hit. Stop/Restart procedure at any hit.

Progressionline; 1,1,2,5,15,45,135,405 STOP

RX-code
system "Progressive Lines BET"
// © ignatus 2019 ©

method "main"
begin
  while starting a new session
  begin
       Set List [1,1,2,5,15,45,135,405]
        to Record "progression" Data
       

  end
   put 0 to Record "Highest Bankroll" Data

       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 [3rd dozen] to Record "doz3" Layout


  while on each spin
  begin
 
  if flag "L3" true each
  begin
  set flag "L4" true
  end

   if flag "L2" true each
  begin
  set flag "L3" true
  end

  if flag "L1" true each
  begin
  set flag "L2" true
  end

  if flag "L1" false each
  begin
  set flag "L1" true
  end
 
   
    IF any inside bet lost each
  begin
     add 1 on Record "progression" Data Index
  end

   If any inside bet won each
  begin
      set flag "L1" false
      set flag "L2" false
      set flag "L3" false
      set flag "L4" false

      Put 1 on Record "progression" Data Index

      clear Record "L1" Layout
      clear Record "L2" Layout
      clear Record "B3" Layout
      clear Record "B4" Layout
  end
 

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

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

  if total bankroll >= 750 each
  begin
  stop session
  end




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




 

If Record "progression" Data Index >
  Record "progression" Data Count
    Begin
      set flag "L1" false
      set flag "L2" false
      set flag "L3" false
      set flag "L4" false

      Put 1 on Record "progression" Data Index

      clear Record "L1" Layout
      clear Record "L2" Layout
      clear Record "B3" Layout
      clear Record "B4" Layout
    End
   



  end
END
Title: Re: Progressive Line BET 90%-100% winrate
Post by: Sparks on Jul 15, 10:48 AM 2019
like the sound of this idea. confused on one part though:

if all 4 lines loses, do you carry on betting line 4 until hit? or do you start again at 1?

Thanks!
Title: Re: Progressive Line BET 90%-100% winrate
Post by: ignatus on Jul 15, 11:15 AM 2019
Quote from: Sparks on Jul 15, 10:48 AM 2019
like the sound of this idea. confused on one part though:

if all 4 lines loses, do you carry on betting line 4 until hit? or do you start again at 1?

Thanks!

The way i tested i keep the 4 Lines bet,..yes
Title: Re: Progressive Line BET 90%-100% winrate
Post by: Sparks on Jul 15, 12:04 PM 2019
ok i think i understand now

so it goes:
step 1 - bet line 1: lose- move to step 2, win- stop and reset
step 2 - bet line 1 + 2: lose- move to step 3, win- stop and reset
step 3 - bet line 1 + 2 + 3: lose- move to step 4, win- stop and reset
step 4 - bet 1 + 2 + 3 + 4 : lose- move to step 5, win- stop and reset
step 5 - bet 1 + 2 + 3 + 4 until win or stop-loss
Title: Re: Progressive Line BET 90%-100% winrate
Post by: ignatus on Jul 15, 12:31 PM 2019
Quote from: Sparks on Jul 15, 12:04 PM 2019
ok i think i understand now

so it goes:

This is how i played/tested...(MAX 300 Spins) ofc Less spins would give Less risk(?) etc,,Minimum BR 750u.

step 1 - bet line (1-6) 1u: lose- move to step 2, win- stop and reset
step 2 - bet line (1-6)+(7-12) 1u: lose- move to step 3, win- stop and reset
step 3 - bet line (1-6)+(7-12)+(13-18) 2u: lose- move to step 4, win- stop and reset
step 4 - bet line (1-6)+(7-12)+(13-18)+(19-24) 5u : lose- move to step 5, win- stop and reset
step 5 - bet line (1-6)+(7-12)+(13-18)+(19-24) 15,45,135,405... stop
Title: Re: Progressive Line BET 90%-100% winrate
Post by: Serendipity on Jul 16, 04:28 AM 2019
Thank you Ignatus! Impressive!

Tell me please, you have there ' Copy List [3rd dozen] to Record "doz3" Layout '   -> do you use it eventually?

Thx and keep up the good work!
Title: Re: Progressive Line BET 90%-100% winrate
Post by: ignatus on Jul 16, 04:32 AM 2019
Quote from: Serendipity on Jul 16, 04:28 AM 2019
Thank you Ignatus! Impressive!

Tell me please, you have there ' Copy List [3rd dozen] to Record "doz3" Layout '   -> do you use it eventually?

Thx and keep up the good work!

Thanks :) No, that was some old code..
Title: Re: Progressive Line BET 90%-100% winrate
Post by: Stevof1 on Jul 18, 06:42 AM 2019
Hi, Ignatus, very similar to my progressive line bet, although I only bet 3 lines. But I'll take yours as an improvement! Do you start progression once 4 lines bet?

It's as close to a perfect system as you'll get. Definitely worth testing.
Title: Re: Progressive Line BET 90%-100% winrate
Post by: poluvolo on Jul 18, 08:24 AM 2019
HI  GUYS
its  close to HERMES  DOUBLE STREET SYSTEM  or not?
Title: Re: Progressive Line BET 90%-100% winrate
Post by: Serendipity on Jul 28, 08:17 AM 2019
Ignatus has found the holy grail. That's why he is missing for many days now.

Do share do share!

thx
Title: Re: Progressive Line BET 90%-100% winrate
Post by: Tekunda on Jul 29, 06:30 AM 2019
Ignatus, I assume this system is only playable as a bot? It looks like it needs hundreds of spins to create a worthwhile profit?
Title: Re: Progressive Line BET 90%-100% winrate
Post by: Gitano on Jul 29, 07:31 AM 2019
Big Ignatus!!
Title: Re: Progressive Line BET 90%-100% winrate
Post by: Roulettebeater on Jul 29, 12:49 PM 2019
Ignatius

I am gonna open a champagne 🍾 for you
Title: Re: Progressive Line BET 90%-100% winrate
Post by: ignatus on Aug 23, 02:13 PM 2019
Quote from: Roulettebeater on Jul 29, 12:49 PM 2019
Ignatius

I am gonna open a champagne 🍾 for you

Yes, thank you... i will do that too, soon enough!  O0

NOW, im pretty much in a state of shock, why?? You will see THIS??!! (Stats from running this system) hmmmm...

==========================
Total spins=72 852

905/1132=80% winrate

(+250/-500)
Lost:227*500=113500
Won:905*250=226250

Total=+112750u
==========================
Total spins=77148

967/1217=79% winrate

(+250/-500)
Lost:250*500=125000
Won:967*250=241750

Total=+116750u
=========================

Do you see?? hmmm....+ 100000u hehehe... W T F? there no mistake about it, i ran 2 test exact the same results..O0

So, there you go. There is the HG.

Cheers  8)

(i post the code i did the testings with now... WG+250/SL-500)
system "Progressive Lines BET"
// © ignatus 2019 ©

method "main"
begin
  while starting a new session
  begin
       Set List [5,5,10,25,75,225]
        to Record "progression" Data
       

  end
   put 0 to Record "Highest Bankroll" Data

       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 [3rd dozen] to Record "doz3" Layout


  while on each spin
  begin
 
  if flag "L3" true each
  begin
  set flag "L4" true
  end

   if flag "L2" true each
  begin
  set flag "L3" true
  end

  if flag "L1" true each
  begin
  set flag "L2" true
  end

  if flag "L1" false each
  begin
  set flag "L1" true
  end
 
   
    IF any inside bet lost each
  begin
     add 1 on Record "progression" Data Index
  end

   If any inside bet won each
  begin
      set flag "L1" false
      set flag "L2" false
      set flag "L3" false
      set flag "L4" false

      Put 1 on Record "progression" Data Index

      clear Record "L1" Layout
      clear Record "L2" Layout
      clear Record "B3" Layout
      clear Record "B4" Layout
  end
 

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

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




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




 

If Record "progression" Data Index >
  Record "progression" Data Count
    Begin
      set flag "L1" false
      set flag "L2" false
      set flag "L3" false
      set flag "L4" false

      Put 1 on Record "progression" Data Index

      clear Record "L1" Layout
      clear Record "L2" Layout
      clear Record "B3" Layout
      clear Record "B4" Layout
    End


  end
END
Title: Re: Progressive Line BET 90%-100% winrate
Post by: Winner on Aug 23, 02:41 PM 2019
Quote from: ignatus on Aug 23, 02:13 PM 2019
Yes, thank you... i will do that too, soon enough!  O0

NOW, im pretty much in a state of shock, why?? You will see THIS??!! (Stats from running this system) hmmmm...

==========================
Total spins=72 852
My question is how many times have you hit 8 in a row that’s $1620 for a bet ?

905/1132=80% winrate

(+250/-500)
Lost:227*500=113500
Won:905*250=226250

Total=+112750u
==========================
Total spins=77148

967/1217=79% winrate

(+250/-500)
Lost:250*500=125000
Won:967*250=241750

Total=+116750u
=========================

Do you see?? hmmm....+ 100000u hehehe... W T F? there no mistake about it, i ran 2 test exact the same results..O0

So, there you go. There is the HG.

Cheers  8)

(i post the code i did the testings with now... WG+250/SL-500)
system "Progressive Lines BET"
// © ignatus 2019 ©

method "main"
begin
  while starting a new session
  begin
       Set List [5,5,10,25,75,225]
        to Record "progression" Data
       

  end
   put 0 to Record "Highest Bankroll" Data

       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 [3rd dozen] to Record "doz3" Layout


  while on each spin
  begin
 
  if flag "L3" true each
  begin
  set flag "L4" true
  end

   if flag "L2" true each
  begin
  set flag "L3" true
  end

  if flag "L1" true each
  begin
  set flag "L2" true
  end

  if flag "L1" false each
  begin
  set flag "L1" true
  end
 
   
    IF any inside bet lost each
  begin
     add 1 on Record "progression" Data Index
  end

   If any inside bet won each
  begin
      set flag "L1" false
      set flag "L2" false
      set flag "L3" false
      set flag "L4" false

      Put 1 on Record "progression" Data Index

      clear Record "L1" Layout
      clear Record "L2" Layout
      clear Record "B3" Layout
      clear Record "B4" Layout
  end
 

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

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




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




 

If Record "progression" Data Index >
  Record "progression" Data Count
    Begin
      set flag "L1" false
      set flag "L2" false
      set flag "L3" false
      set flag "L4" false

      Put 1 on Record "progression" Data Index

      clear Record "L1" Layout
      clear Record "L2" Layout
      clear Record "B3" Layout
      clear Record "B4" Layout
    End


  end
END

Title: Re: Progressive Line BET 90%-100% winrate
Post by: Mister Eko on Aug 23, 05:15 PM 2019
What the f*ck is this? Yes? HG? Really???
Title: Re: Progressive Line BET 90%-100% winrate
Post by: ignatus on Aug 23, 07:47 PM 2019
Quote from: Winner on Aug 23, 02:41 PM 2019My question is how many times have you hit 8 in a row that’s $1620 for a bet ?

Well? Here´s were the Logic fails? You put in 500u in the bank (BANKROLL), that means, you could never lose more than that amount? so..if you reach the progressionline, that would exceed your BR, you couldn´t make that particular bet. That would be a LOSS? ofc.... you tell me about your logic, and what you mean ? That you would lose more than the BR you got? Not possible?... doh..

Also Mr. Eko...a system that has a 80% winrate over 80 000 spins AND generate 100 000 (or more in profits) i would consider a so called "HG" yes? As a matter of fact i never seen anything like this /This kind of profits/winrate and so on....true... you got the code, why don´t you test yourself...
Title: Re: Progressive Line BET 90%-100% winrate
Post by: Mister Eko on Aug 23, 08:13 PM 2019
Quote from: ignatus on Aug 23, 07:47 PM 2019
Well? Here´s were the Logic fails? You put in 500u in the bank (BANKROLL), that means, you could never lose more than that amount? so..if you reach the progressionline, that would exceed your BR, you couldn´t make that particular bet. That would be a LOSS? ofc.... you tell me about your logic, and what you mean ? That you would lose more than the BR you got? Not possible?... doh..

Also Mr. Eko...a system that has a 80% winrate over 80 000 spins AND generate 100 000 (or more in profits) i would consider a so called "HG" yes? As a matter of fact i never seen anything like this /This kind of profits/winrate and so on....true... you got the code, why don´t you test yourself...

Yes? I started do some games. And? At step 3 and 4 we only win 1 units. After a loss we must bet 15 units on each line!!!!? After a loss it is -100 units loss, and if win we only generate 1 units!!! After a loss we must bet 45 units on each line and we easily can get on the third dozen 3 4 falls, it should kill our bankroll.

And your second system HG is the same. You almways play and you always think just negative progression amd it is mistake. You should make system not in robot mode , and try make more on posirive peogression exampe, and lets do time to make more perfect MM to ylur systems. Your second HG system posted here is the same like this. Very little earnings, and one big booooom loss, and you amd your bankroll die !!!!!

That is the problem ignatus with all the respect.
Title: Re: Progressive Line BET 90%-100% winrate
Post by: Stevof1 on Aug 24, 05:13 AM 2019
Ignatus you're doing great work, don't give up on this as you're almost they're with a HG system.

Some more tweaks are needed though. We need a real playable/ punter goes to casino situation - small bankroll small win goal.

Also this system could be played with corners, streets even splits? Progressively? Until 24 numbers bet? And maybe even a combination of all . I think a working sensible system is there and you'll find it  ^-^
Title: Re: Progressive Line BET 90%-100% winrate
Post by: antimodes on Aug 24, 06:25 AM 2019
and don't forget the zero !!!!
Title: Re: Progressive Line BET 90%-100% winrate
Post by: Let Me Win on Aug 24, 11:53 AM 2019
Turbo Genius 50 max system has a better strike rate than this and a better progression and doesn't cost 100 bucks to buy....

Even chance bets Hi or Lo (or R/B or O/E)
1
2
4
8
16
32


Dozens
32
48


Lines
29
35
42
50


Corners
38
43
48


Streets
39
43
47


Splits
33
35
37
42
45
48
50


Straight number
26
27
28
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
45
46
47
49
50


That's it.  All you have to do is win just 1 of these 49 bets to reach +1.


If you happen to lose all 49 bets, it will cost you 1783 units.

1 - (19/37)6 x (25/37)2 x (31/37)4 x (33/37)3 x (34/37)3 x (35/37)7 x (36/37)24 = 99.92% probability of success.
Title: Re: Progressive Line BET 90%-100% winrate
Post by: hanshuckebein on Aug 24, 12:41 PM 2019
well ... there even is a progression with 160 steps which will cost you 1796 units in case it goes up in flames.

link:s://:.vlsroulette.com/index.php?topic=16462.0
Title: Re: Progressive Line BET 90%-100% winrate
Post by: Let Me Win on Aug 24, 12:58 PM 2019
Thanks for that.

I prefer the Turbo Version as it has a very slightly higher probability of success.
Title: Re: Progressive Line BET 90%-100% winrate
Post by: hanshuckebein on Aug 24, 01:15 PM 2019
Seems to me that almost any progression could/ would  finally bite you into your backside ...
Title: Re: Progressive Line BET 90%-100% winrate
Post by: Patrick999 on Oct 15, 02:29 AM 2019
Hey guys,
New here.... so sorry for any offence - but really not liking this system. (Sorry)
The progression is ridiculously steep!
Recently I blew a BR waiting for a dousin to come up. I span 40 (FORTY) times for it to appear. BR long gone.

Or... another time I was playing fours... I though I had the HG!
Wait for a particular 4 to not show up for 15 - 20 times... and then bet a progression.
96 (NINETY SIX) spins this particular 4 did not arrive....
I am now scared of agressive progressions.
Br,
Patrick
Title: Re: Progressive Line BET 90%-100% winrate
Post by: Kav on Oct 16, 01:09 PM 2019
Quote from: Patrick999 on Oct 15, 02:29 AM 2019
Hey guys,
New here.... so sorry for any offence - but really not liking this system. (Sorry)
The progression is ridiculously steep!
Recently I blew a BR waiting for a dousin to come up. I span 40 (FORTY) times for it to appear. BR long gone.

Or... another time I was playing fours... I though I had the HG!
Wait for a particular 4 to not show up for 15 - 20 times... and then bet a progression.
96 (NINETY SIX) spins this particular 4 did not arrive....
I am now scared of agressive progressions.
Br,
Patrick
At last a post from someone who really plays the game - and it shows.