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

News:

Progression bets are nothing more than different size bets on different spins. You could get lucky and win big, or unlucky and lose even more.

Main Menu
Popular pages:

Roulette System

The Roulette Systems That Really Work

Roulette Computers

Hidden Electronics That Predict Spins

Roulette Strategy

Why Roulette Betting Strategies Lose

Roulette System

The Honest Live Online Roulette Casinos

IG Hotnumbers Mania

Started by ignatus, Nov 11, 06:11 AM 2018

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

ignatus

Wanted to test this one (my version of TG's "secret hotnumbers grail") Credits to TG.

Also i wanted to practice my RX coding skill (to collect several numbers within one Data Layout)

From a first short test it had about a 70-80% winrate both Live and RNG, (also tested longterm, it's no long term winner, from my first tests it busts after about 2000 spins)

I don't know if it can be tweaked further? (Thinking of Stop/Restart, when you reach a new high) don't know how to code that yet? :S...perhaps someone can fix that? thx
---------------------------

Progression (positive): 1,2,3,5 STOP

BR/Stoploss: 500u (played with 1u bets)
Wingoal: +300u

Procedure: BET every hotnumber (numbers hit 2 times) from the last 10 in a progressive bet,...For each Hit, +1 step in the progressionline. STOP/Restart at any time you reach a new high (*not fixed yet in the code!) and/or STOP/Restart When you get hit at the last step in the progressionline.


RX- code

system "IG Hotnumbers Mania"
// © ignatus 2018 ©

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

        Set List[1,2,3]
       to Record "Bets placed" Data
  end

   while on each spin
  begin

if total bankroll >= 300 each time
begin
stop session
end


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


  copy last Number to Record "last1" layout


  If total inside bets count = 0 each
  begin
    put 1 on Record "progression" Data Index
    IF Record "last1" layout is found within Record "last10" layout each
  begin

  put 2 on Record "Bets placed" Data Index

   Set Max to Record "Hotnumbers" Layout Index
   Add 1 to Record "Hotnumbers" Layout Index
   copy Last Number to Record "Hotnumbers" Layout

   Put 100% of Record "progression" data to Record "Hotnumbers" Layout list
  end
  end

  If Record "Bets placed" Data Index = 1 each
  begin
    IF Record "last1" layout is found within Record "last10" layout each
  begin
   Set Max to Record "Hotnumbers" Layout Index
   Add 1 to Record "Hotnumbers" Layout Index
   copy Last Number to Record "Hotnumbers" Layout

   Put 100% of Record "progression" data to Record "Hotnumbers" Layout list
  end
  end


  If Record "Bets placed" Data Index = 2 each
  begin
    IF Record "last1" layout is found within Record "last10" layout each
  begin
   Set Max to Record "Hotnumbers" Layout Index
   Add 1 to Record "Hotnumbers" Layout Index
   copy Last Number to Record "Hotnumbers" Layout

   Put 100% of Record "progression" data to Record "Hotnumbers" Layout list
  end
  end
 

  if any inside bet lost each
begin
    put 100% of Record "progression" data to Record "Hotnumbers" Layout list
end


   if any number bet won each
  begin
  Put 1 to Record "Bets placed" Data Index
  add 1 on Record "progression" Data Index

   Put 100% of Record "progression" data to Record "Hotnumbers" Layout list
  end


  If Record "progression" Data Index >
  Record "progression" Data Count
    Begin
    clear Record "Hotnumbers" Layout

   Put 1 on Record "progression" Data Index
   Put 1 to Record "Bets placed" Data Index

   Set Max to Record "Hotnumbers" Layout Index
   Add 1 to Record "Hotnumbers" Layout Index
   copy Last Number to Record "Hotnumbers" Layout

   Put 100% of Record "progression" data to Record "Hotnumbers" Layout list
   End


Track last Number for 10 spins to
Record "last10" layout

  end
END
If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

nottophammer

Ig
He said bet from spin 1

So use 1,2,3,4,5 its flat placing 1 unit every spin cost for 37 is 703 units, needs to win 20 times
How do you win at roulette, simple, make the right decision

nottophammer

How do you win at roulette, simple, make the right decision

ignatus

Quote from: nottophammer on Nov 11, 06:43 AM 2018Ig
He said bet from spin 1

Ok, then we play in different ways, this is my way of playing it :) (only bet every *hotnumber* from the last 10)...
If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

Normy2000

Quote from: ignatus on Nov 11, 06:11 AM 2018I don't know if it can be tweaked further? (Thinking of Stop/Restart, when you reach a new high) don't know how to code that yet? :S...perhaps someone can fix that? thx

Hello Ignatus,
To add a RESET when a new High, add this red line in your initialisation,

    while starting a new session
    begin
        put 0 to Record "Highest Bankroll" Data
    end
   


Then after a win, check if new Highest Bankroll, if yes, replace it with the new one and do the reset action.

    if Bankroll >= Record "Highest Bankroll" Data
    begin
        clear Record "Highest Bankroll" Data
        put 100% Bankroll to Record "Highest Bankroll" Data
    //  do action to reset here....
    end
nOrMy2o0o  ‹(•¿•)›
"Learn from yesterday, live for today, hope for tomorrow. The important thing is not to stop questioning."  Albert Einstein

ignatus

Quote from: Normy2000 on Nov 11, 10:04 AM 2018To add a RESET when a new High, add this red line in your initialisation,

Thanks Normy!  :love:  :thumbsup:
If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

ignatus

Looks alot better now,  O0

IG Hotnumbers Mania v.2

* Hotnumbers BET limited to *8 numbers*

* Reset/Restart when reaching a new high (thx Normy! <3)

* Progressionline (positive) one step longer:  1,2,3,5,8


RX-code


system "IG Hotnumbers Mania v2"
// © ignatus 2018 ©

method "main"
begin
  while starting a new session
  begin
      put 0 to Record "Highest Bankroll" Data

       Set List[1,2,3,5,8]
                 to Record "progression" Data

        Set List[1,2,3,4]
       to Record "Bets placed" Data
       
       Set List[1,2,3,4,5,6,7,8,9,10,11,12,13]
       to Record "Numbers Bet" Data
  end

   while on each spin
  begin

  if any number bet won each
  begin
     if Bankroll >= Record "Highest Bankroll" Data
    begin
        clear Record "Hotnumbers" Layout
        clear Record "Highest Bankroll" Data
        put 100% Bankroll to Record "Highest Bankroll" Data
        put 1 on Record "progression" Data Index
        Put 1 to Record "Bets placed" Data Index
    end
    else
    begin
    Put 1 to Record "Bets placed" Data Index
    add 1 on Record "progression" Data Index
    Put 100% of Record "progression" data to Record "Hotnumbers" Layout list
    end
  end

  IF Record "Numbers Bet" Data Index >= 9
begin
clear Record "Hotnumbers" Layout

   Put 1 on Record "progression" Data Index
   Put 1 to Record "Bets placed" Data Index

   Set Max to Record "Hotnumbers" Layout Index
   Add 1 to Record "Hotnumbers" Layout Index
   copy Last Number to Record "Hotnumbers" Layout

   Put 100% of Record "progression" data to Record "Hotnumbers" Layout list
   Put 1 to Record "Numbers Bet" Data Index
end


  If Record "progression" Data Index >
  Record "progression" Data Count
    Begin
    clear Record "Hotnumbers" Layout

   Put 1 on Record "progression" Data Index
   Put 1 to Record "Bets placed" Data Index

   Set Max to Record "Hotnumbers" Layout Index
   Add 1 to Record "Hotnumbers" Layout Index
   copy Last Number to Record "Hotnumbers" Layout

   Put 100% of Record "progression" data to Record "Hotnumbers" Layout list
   Add 1 to Record "Numbers Bet" Data
   End




{if total bankroll >= 300 each time
begin
stop session
end
}

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


  copy last Number to Record "last1" layout


  If total inside bets count = 0 each
  begin
    put 1 on Record "progression" Data Index
    IF Record "last1" layout is found within Record "last10" layout each
  begin

  put 2 on Record "Bets placed" Data Index

   Set Max to Record "Hotnumbers" Layout Index
   Add 1 to Record "Hotnumbers" Layout Index
   copy Last Number to Record "Hotnumbers" Layout

   Put 100% of Record "progression" data to Record "Hotnumbers" Layout list
   Add 1 to Record "Numbers Bet" Data Index
  end
  end

  If Record "Bets placed" Data Index = 1 each
  begin
    IF Record "last1" layout is found within Record "last10" layout each
  begin
   Set Max to Record "Hotnumbers" Layout Index
   Add 1 to Record "Hotnumbers" Layout Index
   copy Last Number to Record "Hotnumbers" Layout

   Put 100% of Record "progression" data to Record "Hotnumbers" Layout list
   Add 1 to Record "Numbers Bet" Data Index
  end
  end


  If Record "Bets placed" Data Index = 2 each
  begin
    IF Record "last1" layout is found within Record "last10" layout each
  begin
   Set Max to Record "Hotnumbers" Layout Index
   Add 1 to Record "Hotnumbers" Layout Index
   copy Last Number to Record "Hotnumbers" Layout

   Put 100% of Record "progression" data to Record "Hotnumbers" Layout list
   Add 1 to Record "Numbers Bet" Data Index
  end
  end
 

  if any inside bet lost each
begin
    put 100% of Record "progression" data to Record "Hotnumbers" Layout list
end



Track last Number for 10 spins to
Record "last10" layout

  end
END

If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

ignatus

5 Live-sessions Test.
If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

Mako

Nice Iggy, here are my results.  All live spins in sequential order, single table on the same day, each session as if you had sat down and played for 5-6 hours (approximately 335 spins per session below, total of 10,600 spins).

+455
+542
+519
+200
+10
-307
+75
+125
+555
-577
+174
+278
+420
+173
-179
+10
+108
+140
+20
+419
-304
+269
+242
+40
+54
+168
-23
-10
-268
+367
+375

TOTAL SPINS: 10,600

WINNING SESSIONS: 24
LOSING SESSIONS: 7

NET: +4070 units (1u bets using Iggy's base progression in the code)

The largest drawdowns during all 10,600 spins were -867u (recovered to +40u) and -766u (wound up at -304u).

Excellent job Iggy, this is one of very very few that actually survived and wound up significantly positive for this 31-session block of spins I use to torture test anything I'm curious about.  :thumbsup: :thumbsup: :thumbsup: :thumbsup:

Next test will alter the progression to what Passionruletta is referring to, basically the TG progression of 1-5-25-STOP. 


Mako

Ok so here are the same 10,600 spins, same 31 sessions of approximately 335 spins per session as the last post, but instead of the base progression in Iggy's code, this is the popular 1-5-25-STOP progression many of you have seen us talk about when chasing repeats.

As Passionruletta says, "you need a big box" to play, which is his way of saying you need a large bankroll.  In the last set of tests, I used no stoploss or target win amount, but in this one with this large of a bet spread, you have to.  I used no win target, as it's not predictable as more linear systems are, but I installed a -2000u stoploss per each of the daily sessions.  If that hit, then it's walkaway, come back tomorrow essentially (skip to next set of 335 spins).

Here's how it wound up:

+927
+942
+1617
+1400
+1450
+950
+210
-1913
+678
-2000
+420
+2026
+1700
+313
+804
+1150
+550
-790
-518
+2100
-2000
+859
+1100
-2000
-74
+350
-1604
-2000
-1213
+623
+1199

TOTAL SPINS: 10,600

WINNING SESSIONS: 21
LOSING SESSIONS: 10

NET: +7256 units (1u bets using 1-5-25-STOP progression).

As you can see the larget bet spread introduced more volatility to the bet, but this is how I play currently using a slightly different bet selection process.  The core system is the same, you're betting that hot numbers continue hitting, while discarding those that don't produce.

Larger profit on this one, but you need a large BR as this is definitely a "bring $2000 to win or lose $2000" system.  You need to be able to handle multiple losses in a row in order to reap the reward as you can see above it's more streaky than the more conservative  progression from the first test group.  :thumbsup:

ignatus

Quote from: Mako on Nov 11, 02:15 PM 2018TOTAL SPINS: 10,600

WINNING SESSIONS: 24
LOSING SESSIONS: 7

NET: +4070 units (1u bets using Iggy's base progression in the code)

The largest drawdowns during all 10,600 spins were -867u (recovered to +40u) and -766u (wound up at -304u).

Excellent job Iggy, this is one of very very few that actually survived and wound up significantly positive for this 31-session block of spins I use to torture test anything I'm curious about.     

Next test will alter the progression to what Passionruletta is referring to, basically the TG progression of 1-5-25-STOP. 

Nice! :) Thanks for testing Mako  :love:  :thumbsup:

ofc, higher bets will give higher profits? Rerun the test with 5u bets? Now we don't need that, just multiply all results *5

(5u) That would be a progression of 5-10-15-25-40 STOP.....

NET: +4070 units (1u bets using Iggy's base progression in the code) That would be (5u) 4070*5= +20 350u

so, comparing the two?, i don't think (1-5-25) is a better choise? First winrate was much lower (21/31= 67%) While now, my progression Ended up (24/31= 77% winrate) ...so it's clear Mako? my original progression was the winner!  O0
If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

Mako

Quote from: ignatus on Nov 11, 03:23 PM 2018
Nice! :) Thanks for testing Mako  :love:  :thumbsup:

ofc, higher bets will give higher profits? Rerun the test with 5u bets? Now we don't need that, just multiply all results *5

(5u) That would be a progression of 5-10-15-25-40 STOP.....

NET: +4070 units (1u bets using Iggy's base progression in the code) That would be (5u) 4070*5= +20 350u

so, comparing the two?, i don't think (1-5-25) is a better choise? First winrate was much lower (21/31= 67%) While now, my progression Ended up (24/31= 77% winrate) ...so it's clear Mako? my original progression was the winner!  O0

Yes so far it looks better to go to more progression levels, and that's something that Nimo and a few others have experimented with and done well.  There was a TG chart that showed him using a 5-10-15-20-25-30 progression, it looks like 5 or 6 steps is safer overall.

Good job buddy, you're getting really good with coding, makes life so easy... :love: :love:

ignatus

IG_Hotnumbers  Mania v3

* The "when you reach a new high"-bug fix'd

O0


RX-code


system "IG Hotnumbers Mania v3"
// © ignatus 2018 ©

method "main"
begin
  while starting a new session
  begin
      put 0 to Record "Highest Bankroll" Data

       Set List[1,2,3,5,8]
                 to Record "progression" Data

        Set List[1,2,3,4]
       to Record "Bets placed" Data
       
       Set List[1,2,3,4,5,6,7,8,9,10,11,12,13]
       to Record "Numbers Bet" Data
  end

   while on each spin
  begin

  copy last Number to Record "last1" layout

  if any number bet won each
  begin
     if Bankroll >= Record "Highest Bankroll" Data
    begin
        clear Record "Hotnumbers" Layout
        clear Record "Highest Bankroll" Data
        put 100% Bankroll to Record "Highest Bankroll" Data
        put 1 on Record "progression" Data Index
        Put 1 to Record "Bets placed" Data Index
       
         Set Max to Record "Hotnumbers" Layout Index
         Add 1 to Record "Hotnumbers" Layout Index
         copy Last Number to Record "Hotnumbers" Layout

         Put 100% of Record "progression" data to Record "Hotnumbers" Layout list
         Put 1 to Record "Numbers Bet" Data Index
    end
    else
    begin
    Put 1 to Record "Bets placed" Data Index
    add 1 on Record "progression" Data Index
    Put 100% of Record "progression" data to Record "Hotnumbers" Layout list
    end
  end

  IF Record "Numbers Bet" Data Index >= 9
begin
clear Record "Hotnumbers" Layout

   Put 1 on Record "progression" Data Index
   Put 1 to Record "Bets placed" Data Index

   Set Max to Record "Hotnumbers" Layout Index
   Add 1 to Record "Hotnumbers" Layout Index
   copy Record "last1" layout to Record "Hotnumbers" Layout

   Put 100% of Record "progression" data to Record "Hotnumbers" Layout list
   Put 1 to Record "Numbers Bet" Data Index
end


  If Record "progression" Data Index >
  Record "progression" Data Count
    Begin
    clear Record "Hotnumbers" Layout

   Put 1 on Record "progression" Data Index
   Put 1 to Record "Bets placed" Data Index

   Set Max to Record "Hotnumbers" Layout Index
   Add 1 to Record "Hotnumbers" Layout Index
   copy Record "last1" layout to Record "Hotnumbers" Layout

   Put 100% of Record "progression" data to Record "Hotnumbers" Layout list
   Add 1 to Record "Numbers Bet" Data
   End




{if total bankroll >= 300 each time
begin
stop session
end
}

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





  If total inside bets count = 0 each
  begin
    put 1 on Record "progression" Data Index
    IF Record "last1" layout is found within Record "last10" layout each
  begin

  put 2 on Record "Bets placed" Data Index

   Set Max to Record "Hotnumbers" Layout Index
   Add 1 to Record "Hotnumbers" Layout Index
   copy Record "last1" layout to Record "Hotnumbers" Layout

   Put 100% of Record "progression" data to Record "Hotnumbers" Layout list
   Add 1 to Record "Numbers Bet" Data Index
  end
  end

  If Record "Bets placed" Data Index = 1 each
  begin
    IF Record "last1" layout is found within Record "last10" layout each
  begin
   Set Max to Record "Hotnumbers" Layout Index
   Add 1 to Record "Hotnumbers" Layout Index
   copy Record "last1" layout to Record "Hotnumbers" Layout

   Put 100% of Record "progression" data to Record "Hotnumbers" Layout list
   Add 1 to Record "Numbers Bet" Data Index
  end
  end


  If Record "Bets placed" Data Index = 2 each
  begin
    IF Record "last1" layout is found within Record "last10" layout each
  begin
   Set Max to Record "Hotnumbers" Layout Index
   Add 1 to Record "Hotnumbers" Layout Index
   copy Record "last1" layout to Record "Hotnumbers" Layout

   Put 100% of Record "progression" data to Record "Hotnumbers" Layout list
   Add 1 to Record "Numbers Bet" Data Index
  end
  end
 

  if any inside bet lost each
begin
    put 100% of Record "progression" data to Record "Hotnumbers" Layout list
end


Track last Number for 10 spins to
Record "last10" layout

  end
END


If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

ignatus

Wöw...  :ooh:

I noticed something when playing (testing play on a casino), i got 8 hotnumbers, then came the ninth, so i though-- f*ck i continue, because i was in a middle the progression, so it hit, so i reached a new high...so then i tested this in the RX code +1 hotnumber bet (now 9 hotnumbers MAX) ....and hey...compare these two charts... (v.4 and v.3) *Same spins*...  8)

IG Hotnumbers Mania v.4

* Now +1 number bet, (9 number bet MAX)


RX-code


system "IG Hotnumbers Mania v4"
// © ignatus 2018 ©

method "main"
begin
  while starting a new session
  begin
      put 0 to Record "Highest Bankroll" Data

       Set List[1,2,3,5,8]
                 to Record "progression" Data

        Set List[1,2,3,4]
       to Record "Bets placed" Data
       
       Set List[1,2,3,4,5,6,7,8,9,10,11,12,13]
       to Record "Numbers Bet" Data
  end

   while on each spin
  begin

  copy last Number to Record "last1" layout

  if any number bet won each
  begin
     if Bankroll >= Record "Highest Bankroll" Data
    begin
        clear Record "Hotnumbers" Layout
        clear Record "Highest Bankroll" Data
        put 100% Bankroll to Record "Highest Bankroll" Data
        put 1 on Record "progression" Data Index
        Put 1 to Record "Bets placed" Data Index
       
         Set Max to Record "Hotnumbers" Layout Index
         Add 1 to Record "Hotnumbers" Layout Index
         copy Last Number to Record "Hotnumbers" Layout

         Put 100% of Record "progression" data to Record "Hotnumbers" Layout list
         Put 1 to Record "Numbers Bet" Data Index
    end
    else
    begin
    Put 1 to Record "Bets placed" Data Index
    add 1 on Record "progression" Data Index
    Put 100% of Record "progression" data to Record "Hotnumbers" Layout list
    end
  end

  IF Record "Numbers Bet" Data Index >= 10
begin
clear Record "Hotnumbers" Layout

   Put 1 on Record "progression" Data Index
   Put 1 to Record "Bets placed" Data Index

   Set Max to Record "Hotnumbers" Layout Index
   Add 1 to Record "Hotnumbers" Layout Index
   copy Record "last1" layout to Record "Hotnumbers" Layout

   Put 100% of Record "progression" data to Record "Hotnumbers" Layout list
   Put 1 to Record "Numbers Bet" Data Index
end


  If Record "progression" Data Index >
  Record "progression" Data Count
    Begin
    clear Record "Hotnumbers" Layout

   Put 1 on Record "progression" Data Index
   Put 1 to Record "Bets placed" Data Index

   Set Max to Record "Hotnumbers" Layout Index
   Add 1 to Record "Hotnumbers" Layout Index
   copy Record "last1" layout to Record "Hotnumbers" Layout

   Put 100% of Record "progression" data to Record "Hotnumbers" Layout list
   Add 1 to Record "Numbers Bet" Data
   End




{if total bankroll >= 300 each time
begin
stop session
end
}

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





  If total inside bets count = 0 each
  begin
    put 1 on Record "progression" Data Index
    IF Record "last1" layout is found within Record "last10" layout each
  begin

  put 2 on Record "Bets placed" Data Index

   Set Max to Record "Hotnumbers" Layout Index
   Add 1 to Record "Hotnumbers" Layout Index
   copy Record "last1" layout to Record "Hotnumbers" Layout

   Put 100% of Record "progression" data to Record "Hotnumbers" Layout list
   Add 1 to Record "Numbers Bet" Data Index
  end
  end

  If Record "Bets placed" Data Index = 1 each
  begin
    IF Record "last1" layout is found within Record "last10" layout each
  begin
   Set Max to Record "Hotnumbers" Layout Index
   Add 1 to Record "Hotnumbers" Layout Index
   copy Record "last1" layout to Record "Hotnumbers" Layout

   Put 100% of Record "progression" data to Record "Hotnumbers" Layout list
   Add 1 to Record "Numbers Bet" Data Index
  end
  end


  If Record "Bets placed" Data Index = 2 each
  begin
    IF Record "last1" layout is found within Record "last10" layout each
  begin
   Set Max to Record "Hotnumbers" Layout Index
   Add 1 to Record "Hotnumbers" Layout Index
   copy Record "last1" layout to Record "Hotnumbers" Layout

   Put 100% of Record "progression" data to Record "Hotnumbers" Layout list
   Add 1 to Record "Numbers Bet" Data Index
  end
  end
 

  if any inside bet lost each
begin
    put 100% of Record "progression" data to Record "Hotnumbers" Layout list
end


Track last Number for 10 spins to
Record "last10" layout

  end
END
If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

ignatus

OK ..hmm, maybe i was wrong this time? :S v3 looks better in this test...
If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

-