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

Roulette-focused => Bet selection => Topic started by: ignatus on Nov 11, 06:11 AM 2018

Title: IG Hotnumbers Mania
Post by: ignatus on Nov 11, 06:11 AM 2018
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
Title: Re: IG Hotnumbers Mania
Post by: nottophammer on Nov 11, 06:43 AM 2018
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
Title: Re: IG Hotnumbers Mania
Post by: nottophammer on Nov 11, 06:46 AM 2018
 Mort #'s
Gets 19 wins
(link:://:.pichost.org/images/2018/11/11/source89586.png) (link:://:.pichost.org/image/TmMOK)
Title: Re: IG Hotnumbers Mania
Post by: ignatus on Nov 11, 07:01 AM 2018
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)...
Title: Re: IG Hotnumbers Mania
Post by: Normy2000 on Nov 11, 10:04 AM 2018
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
Title: Re: IG Hotnumbers Mania
Post by: ignatus on Nov 11, 10:15 AM 2018
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:
Title: Re: IG Hotnumbers Mania
Post by: ignatus on Nov 11, 12:51 PM 2018
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

Title: Re: IG Hotnumbers Mania
Post by: ignatus on Nov 11, 01:17 PM 2018
5 Live-sessions Test.
Title: Re: IG Hotnumbers Mania
Post by: Mako on Nov 11, 02:15 PM 2018
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. 

Title: Re: IG Hotnumbers Mania
Post by: Mako on Nov 11, 02:25 PM 2018
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:
Title: Re: IG Hotnumbers Mania
Post by: ignatus on Nov 11, 03:23 PM 2018
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
Title: Re: IG Hotnumbers Mania
Post by: Mako on Nov 11, 04:17 PM 2018
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:
Title: Re: IG Hotnumbers Mania
Post by: ignatus on Nov 11, 05:55 PM 2018
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


Title: Re: IG Hotnumbers Mania
Post by: ignatus on Nov 12, 10:03 AM 2018
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
Title: Re: IG Hotnumbers Mania
Post by: ignatus on Nov 12, 10:18 AM 2018
OK ..hmm, maybe i was wrong this time? :S v3 looks better in this test...
Title: Re: IG Hotnumbers Mania
Post by: ignatus on Nov 12, 10:34 AM 2018
Longerterm-test (charts looks very similar, BUT v.4 has lower drawdown, and higher profits) so, i was right? V.4 is better
Title: Re: IG Hotnumbers Mania
Post by: ignatus on Nov 12, 11:22 AM 2018
As in the First test, Here it becomes very clear which bet is the winner. V.4 is the best bet, beyond any doubt.  O0

TEST 1 & 2 (same spins, v.4 & v3)
Title: Re: IG Hotnumbers Mania
Post by: ignatus on Nov 12, 01:02 PM 2018
..Im gonna be like notto, im gonna play this one system now for the rest of my life! haha  ;D  :love:  >:D  O0

Why? if soo f*king easy to play,.. (and it's my best system *ever*).. it works both Live and on RNG.  :)

8)
Title: Re: IG Hotnumbers Mania
Post by: joiner29 on Nov 12, 02:08 PM 2018
Hi Ig could you explain the progression a little bit better not sure about it
Tom
Title: Re: IG Hotnumbers Mania
Post by: ignatus on Nov 12, 02:41 PM 2018
Quote from: joiner29 on Nov 12, 02:08 PM 2018
Hi Ig could you explain the progression a little bit better not sure about it
Tom

Hi :)

Well, progressionline is 1-2-3-5-8 STOP

You bet each hotnumber (repeater from the last 10 spins),.... (MAX bet 9 numbers, IF you bet 9 numbers and a 10th repeater comes, you remove all bets and re-start with that single 10th repeater, you also then RESET progression to 1u)

...so? you are betting now each hotnumber that comes,....Soon as you get *1 Hit*, Then you go +1u in the progressionline , (in this case you bet *2u* on all hotnumbers already bet, ...this means now also you bet 2u on any other repeater that comes)..so continuing this procedure..for each Hit, +1u in the progressionline (Next hit, you bet *3u* on all hotnumbers)...also 3u on any new hotnumber that comes...so you continue..this UNTIL;

(1) You get 1 Hit, and Reach a new high (a higher BR than the previous BR) Then you also remove all bets, and re-start bet (1u at that single number hit)

(2) You reach the Maximum numbers bet (as i've explained already) then you also Remove all bets Reset/Restart..

That's pretty much it? Hope that will make things more clear.  O0

cheers
Title: Re: IG Hotnumbers Mania
Post by: Mako on Nov 12, 04:18 PM 2018
Iggy why is v.2 working better for me than v.3 or v.4...about +25% more net units... :xd: :love:
Title: Re: IG Hotnumbers Mania
Post by: joiner29 on Nov 12, 05:28 PM 2018
Thanks Ig better explation
Tom
Title: Re: IG Hotnumbers Mania
Post by: ignatus on Nov 13, 01:30 AM 2018
 
Quote from: Mako on Nov 12, 04:18 PM 2018
Iggy why is v.2 working better for me than v.3 or v.4...about +25% more net units... :xd: :love:

Mako, that's not true.... Only difference between V2 & V3 is a Bug-fix....Now tested, (V2 was worst in all tests), and? As you can see again, V4 is winner (same spins, Stoploss at -2000u), i noted down the Highest peak/Highest BR from each test;

V4

TEST 1: +1949
TEST 2 :+760
TEST 3: +1845
TEST 4: +2259
TEST 5: +2647
TEST 6: +4647
TEST 7: +2089

TOTAL= +16196
--------------------
V3

TEST 1: +1005
TEST 2: +1901
TEST 3: +2300
TEST 4: +2838
TEST 5; +236
TEST 6: +159
TEST 7: +1376

TOTAL= +9815

Title: Re: IG Hotnumbers Mania
Post by: ignatus on Nov 13, 05:24 AM 2018
Well! Now again? played on the MPR, i bet 9 numbers, (didn't reach a new high) so, I thought f*ukit i continue, so i won, and i reached a new high...Now, what is obvious? Greatest losses comes when you're in a middle of a progression and you have to Stop/Restart (9 numbers)..SO, i tested this now (more numbers bet)....ALSO i increased the Tracking for hotnumbers to *the last 18 spins*  (This IS because to decrease the "waiting time") ...and you can see it's a clear improvement with V5... (3 tests same spins) See V4, next post...



IG Hotnumbers Mania V5

* MAX numbers bet is now 14 numbers.

* Look for repeaters from *The Last 18 spins* (not last 10)


RX-code-v5


system "IG Hotnumbers Mania v5"
// © 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,14,15,16]
       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 >= 15
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 "last18" 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 "last18" 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 "last18" 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 18 spins to
Record "last18" layout

  end
END



Title: Re: IG Hotnumbers Mania
Post by: ignatus on Nov 13, 05:29 AM 2018
V4 (Same spins)
Title: Re: IG Hotnumbers Mania
Post by: Mako on Nov 13, 01:59 PM 2018
It really is your best one Iggy, great work refining it and continuing to tweak it. 

People lurking, test it and tell us about your experience, for me personally it's the strongest mechanical method I've seen from Ignatus, and I've probably tested everything he's created the past year+.

You could dodge the raindrops a loooooong time with it,  much more than other methods of play that's for sure.

If you don't understand how it works, feel free to ask.
Title: Re: IG Hotnumbers Mania
Post by: Winner on Nov 13, 02:03 PM 2018
Quote from: Mako on Nov 13, 01:59 PM 2018
It really is your best one Iggy, great work refining it and continuing to tweak it. 

People lurking, test it and tell us about your experience, for me personally it's the strongest mechanical method I've seen from Ignatus, and I've probably tested everything he's created the past year+.

You could dodge the raindrops a loooooong time with it,  much more than other methods of play that's for sure.

If you don't understand how it works, feel free to ask.
[/quote
Please explain .
Title: Re: IG Hotnumbers Mania
Post by: ignatus on Nov 13, 02:16 PM 2018
Quote from: Mako on Nov 13, 01:59 PM 2018It really is your best one Iggy, great work refining it and continuing to tweak it. 

People lurking, test it and tell us about your experience, for me personally it's the strongest mechanical method I've seen from Ignatus, and I've probably tested everything he's created the past year+.

Yes true, thx Mako :) by my own craziness, i discovered this method,..and nobody i heard played like this? (except TG maybe) the so called "experts" play with 1-4 numbers, right.,. xD

This is my HG, and im gonna play this now for the rest of my life, (no kidding), ... i finally found what im looking for, this my work is complete, my work is done.
  :thumbsup:
Title: Re: IG Hotnumbers Mania
Post by: Winner on Nov 13, 02:30 PM 2018
Quote from: ignatus on Nov 13, 02:16 PM 2018
Yes true, thx Mako :) by my own craziness, i discovered this method,..and nobody i heard played like this? (except TG maybe) the so called "experts" play with 1-4 numbers, right.,. xD

This is my HG, and im gonna play this now for the rest of my life, (no kidding), ... i finally found what im looking for, this my work is complete, my work is done.
  :thumbsup:
[/quot
Just joined the party how does this system work .thanks
Title: Re: IG Hotnumbers Mania
Post by: ignatus on Nov 13, 03:23 PM 2018
Quote from: Winner on Nov 13, 02:30 PM 2018Just joined the party how does this system work .thanks

Read through the thread im sure you'll get it, another thing, you could be invest in the RX-software link:://:.uxsoftware.com/pages/index.html (link:://:.uxsoftware.com/pages/index.html) (so you can try the code, that would make things easier to test)
Title: Re: IG Hotnumbers Mania
Post by: joiner29 on Nov 13, 03:41 PM 2018
What is the best way to track the last 18 numbers
Tom
Title: Re: IG Hotnumbers Mania
Post by: Bigbroben on Nov 13, 04:24 PM 2018
Quote from: joiner29 on Nov 13, 03:41 PM 2018
What is the best way to track the last 18 numbers
Tom

Pen and paper!
Or, if you really want the last 18 nrs, and not the nrs from the last 18 spins, use the attached file.

Enter nrs in column B, write zero as 37.

Use RankTracker sheet to see also nrs from the previous spins, or the DynamicRankTracker to see the ones for the actual spin.

Hope this helps.
BBB
Title: Re: IG Hotnumbers Mania
Post by: ignatus on Nov 13, 04:25 PM 2018
Quote from: joiner29 on Nov 13, 03:41 PM 2018
What is the best way to track the last 18 numbers
Tom

There is no "best way"? a simple notepad/notebook should work? Playin live? This is funny, i found my HG, but i only played Live, for real *1 time* in my life haha  :xd:  :xd:
Title: Re: IG Hotnumbers Mania
Post by: nottophammer on Nov 13, 05:45 PM 2018
Quote from: joiner29 on Nov 13, 03:41 PM 2018What is the best way to track the last 18 numbers
Tom
Quote from: Bigbroben on Nov 13, 04:24 PM 2018Pen and paper!

Joiner
It's not quite track last 18#'s; but it tracks the 8 hottest #'s. You can see Iggy's progression 1,2,3,5,8
You record spins in column 1; when 1 repeats now mark as 1 in 2nd column, so this # has 2 units, carry on marking.

You can see #14 became 14th hit in column 1 and repeats and became the 2nd # in column 2

Now you see #17 was given #22 in column 1 and repeated to be #6 in column 2 with 2 units and won and becomes #5 with 3 units.

You just have to cancel out to have the 8 hot #'s you see we'd now have 5#'s with 3 units; 2#'s with 2 units and 1# with 1 unit

you can see +113 for 36 spins.

(link:://:.pichost.org/images/2018/11/13/source36900.png) (link:://:.pichost.org/image/T7OVA)

the above would be next bet.

(link:://:.pichost.org/images/2018/11/13/source4d35b.png) (link:://:.pichost.org/image/T7Uhs)

(link:://:.pichost.org/images/2018/11/13/source39a82.png) (link:://:.pichost.org/image/T7lG7)

(link:://:.pichost.org/images/2018/11/13/sourcef058e.png) (link:://:.pichost.org/image/T7wQQ)

So tracking 8 hot #'s on paper piss easy

(link:://:.pichost.org/images/2018/11/13/source09674.jpg) (link:://:.pichost.org/image/T70Ly)
Title: Re: IG Hotnumbers Mania
Post by: nottophammer on Nov 13, 06:03 PM 2018
The game above what do we know?
It gave 9/10 repeat for 5#’s so +21
Now in spins 11-40 we expect 15 repeats and 15 more non-hit.
We have 36 spins and 24 non-hit have hit, so 12 repeats. So if carried on we could see another 3 or 4 repeats. Game is playing fair
Title: Re: IG Hotnumbers Mania
Post by: ignatus on Nov 13, 06:14 PM 2018
Quote from: nottophammer on Nov 13, 06:03 PM 2018
The game above what do we know?
It gave 9/10 repeat for 5#’s so +21
Now in spins 11-40 we expect 15 repeats and 15 more non-hit.
We have 36 spins and 24 non-hit have hit, so 12 repeats. So if carried on we could see another 3 or 4 repeats. Game is playing fair

Thx for testing notto  :thumbsup:
Title: Re: IG Hotnumbers Mania
Post by: Smoczoor on Nov 13, 07:15 PM 2018
so close juggler...  O0
Title: Re: IG Hotnumbers Mania
Post by: ignatus on Nov 13, 10:04 PM 2018
Quote from: Smoczoor on Nov 13, 07:15 PM 2018
so close juggler...  O0

haha, good hint, ;) That is to say, you wished this to be tweaked even further??   ;D i will try this,...thx  :thumbsup:
Title: Re: IG Hotnumbers Mania
Post by: ignatus on Nov 15, 05:45 PM 2018
I've tried now to beat this system (v.5, my HG), but failed, both with "HOT Juggler" and "HotTrack"....

HotTrack vs. IGHM (Same spins...) 
Title: Re: IG Hotnumbers Mania
Post by: Mako on Nov 15, 06:20 PM 2018
Quote from: ignatus on Nov 15, 05:45 PM 2018
I've tried now to beat this system (v.5, my HG), but failed, both with "HOT Juggler" and "HotTrack"....

HotTrack vs. IGHM (Same spins...) 


Agree, everything I keep records on from your great efforts hasn't produced as strong of a result by any measurement (long runs, short runs, hit and run, etc) as this one Iggy.

Your bar has gotten much higher, you're going to need horse steroids to jump over it now... ;)
Title: Re: IG Hotnumbers Mania
Post by: ignatus on Nov 15, 06:33 PM 2018
Quote from: Mako on Nov 15, 06:20 PM 2018
Agree, everything I keep records on from your great efforts hasn't produced as strong of a result by any measurement (long runs, short runs, hit and run, etc) as this one Iggy.

Your bar has gotten much higher, you're going to need horse steroids to jump over it now... ;)

Yes, true,  ;D

Now, i have to by a RX-bot and try this for real, or else play for real anyhow...time to figure a good MM for this one WG/SL etc..
O0
Title: Re: IG Hotnumbers Mania
Post by: Bigbroben on Dec 24, 08:10 AM 2018
Quote from: Bigbroben on Nov 13, 04:24 PM 2018
Pen and paper!
Or, if you really want the last 18 nrs, and not the nrs from the last 18 spins, use the attached file.

Enter nrs in column B, write zero as 37.

Use RankTracker sheet to see also nrs from the previous spins, or the DynamicRankTracker to see the ones for the actual spin.

Hope this helps.
BBB

Hans.

The file can be found in here.
Title: Re: IG Hotnumbers Mania
Post by: nasty on Jan 01, 05:02 PM 2019
Ok just to understand it...

What exactly do u mean with „betting hot numbers from the last 18 spins“?

So u wait for first 18 spins and then start to bet the repeaters or do u start to bet immidately after the hit? Then u wait again 18 spins and adding the new hn?
Title: Re: IG Hotnumbers Mania
Post by: nasty on Jan 01, 05:18 PM 2019
Quote from: nottophammer on Nov 13, 05:45 PM 2018
Joiner
It's not quite track last 18#'s; but it tracks the 8 hottest #'s. You can see Iggy's progression 1,2,3,5,8
You record spins in column 1; when 1 repeats now mark as 1 in 2nd column, so this # has 2 units, carry on marking.

You can see #14 became 14th hit in column 1 and repeats and became the 2nd # in column 2

Now you see #17 was given #22 in column 1 and repeated to be #6 in column 2 with 2 units and won and becomes #5 with 3 units.

You just have to cancel out to have the 8 hot #'s you see we'd now have 5#'s with 3 units; 2#'s with 2 units and 1# with 1 unit
you can see +113 for
So tracking 8 hot #'s on paper piss easy


Ã,,
i thought the progression levels are for all hot Numbers not the Single numbers. So when a number repeats all upcoming and already appeared repeats should be bet with the next progressive Level
Title: Re: IG Hotnumbers Mania
Post by: nasty on Jan 02, 02:02 AM 2019
Ignatus can u plz tell me how do you bet when u are at the last prog level 8 and it comes a hit but u dont have a new high? Do you reset to 1 unit and start with that single number ?