HotTrack v.1
OK, today i tested a hybrid of IGHM, HJ, and also i wanted to integrate this into the notto-game. This is played non-stop, (It's same as the notto-game), but this only bet every number that hits *spin 1-6* Before it Restart. What's more this special feature, with this system IS also, *For each hit*, (That is a "hotnumber") It will re-bet each Repeater/Hotnumber, for the next *8 Hits* in a progressive bet (before it Reset the "Hotnumbers"-list). The "Hotnumbers Tracking/bet" is the special feature with this system + it's "normal" bet (Betting each number hoping for a repeat..etc) What is more, it will Reset the "normal" Bet/tracking+ Reset the progression IF win and reached a new high. IF hit at the last step of the progressionline (Positive) 1,2,2,3,5,8 IT will Also Reset progression, +Reset the "hotnumbers tracking-list" +Reset the normal bet. Also it will reset the "normal bet" after 16 spins.
I will NOT change these settings now, (they have been tested/optimized already for maximum profit).
I'd say *short term* it looks real good,.. but it's not a "long term winner", i'd say "in normal cases" it reach it's Peak around 1000-2000 spins before it drops),...ofc, sometimes, it will drop much earlier that that...sometimes it will last longer etc..Also it's not a HG, sometimes the chart will go straight down or perhaps win 100-200u only before it drops etc.... well? You test and see yourself.
These charts are "cherry picked" (among the best charts),...Not all charts look like this.,,
RX-code
system "HotTrack v1"
// © ignatus 2018 ©
method "main"
begin
while starting a new session
begin
put 0 to Record "Highest Bankroll" Data
Set List[1,2,2,3,5,8]
to Record "progression" Data
Set List[1,2,3,4,5,6]
to Record "Hot index" Data
Set List[1,2,3,4,5,6,7,8,9,10,11]
to Record "Spin index" Data
end
while on each spin
begin
if Bankroll >= Record "Highest Bankroll" Data each
begin
clear Record "lastX" layout
Put 1 on Record "progression" Data Index
clear Record "Highest Bankroll" Data
put 100% Bankroll to Record "Highest Bankroll" Data
end
if any inside bet won each
begin
clear Record "lastX" layout
add 1 on Record "Hot index" Data Index
add 1 on Record "progression" Data Index
Set Max to Record "Hotnumbers" Layout Index
Add 1 to Record "Hotnumbers" Layout Index
copy Last Number to Record "Hotnumbers" Layout
end
Track last Number for 6 spins to
Record "lastX" layout
add 1 on Record "Spin index" Data Index
Put 100% of Record "progression" Data to Record "lastX" layout list
Put 100% of Record "progression" Data to Record "Hotnumbers" layout list
if Record "Spin index" Data Index >= 16 each time
begin
put 1 on Record "Spin index" Data Index
clear Record "lastX" layout
Set Max to Record "LastX" Layout Index
Add 1 to Record "LastX" Layout Index
copy Last Number to Record "LastX" Layout
Put 100% of Record "progression" Data to Record "lastX" layout list
end
if Record "Hot index" Data Index >= 8 each time
begin
put 1 on Record "Hot index" Data Index
clear Record "last10" layout
clear Record "Hotnumbers" layout
put 1 on Record "progression" Data Index
put 1 on Record "Spin Counter" Data Index
Put 100% of Record "progression" Data to Record "last10" layout list
end
{if total bankroll >= 2000 each time
begin
stop session
end
}
if total bankroll <= -1000 each time
begin
stop session
end
If Record "progression" Data Index >
Record "progression" Data Count
Begin
clear Record "last10" layout
clear Record "Hotnumbers" layout
Put 1 on Record "progression" Data Index
End
end
END
First Test/comparison between the two giants IGHM and HT , HotTrack outclass IGHM, both short term and long term (from THIS test) more testing is needed.... 8)
TEST 1 / 2 (same spins)
OK, did a few changes, i *think* things looks better now? (haven't been tested enough)...but this is v.2
HotTrack v.2
* Progressionline (positive) is now 1,2,4,7,10 STOP
* STOP/RESET/Restart After *4 hits*
* STOP/RESET/Restart if win and reached a new high
RX-Code
system "HotTrack v1"
// © ignatus 2018 ©
method "main"
begin
while starting a new session
begin
put 0 to Record "Highest Bankroll" Data
Set List[1,2,4,7,10]
to Record "progression" Data
Set List[1,2,3,2,3,2,3]
to Record "Hot index" Data
Set List[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19]
to Record "Spin index" Data
end
while on each spin
begin
if Bankroll >= Record "Highest Bankroll" Data each
begin
clear Record "lastX" layout
clear Record "Hotnumbers" layout
Put 1 on Record "progression" Data Index
clear Record "Highest Bankroll" Data
put 100% Bankroll to Record "Highest Bankroll" Data
end
if any inside bet won each
begin
clear Record "lastX" layout
add 1 on Record "Hot index" Data Index
add 1 on Record "progression" Data Index
Set Max to Record "Hotnumbers" Layout Index
Add 1 to Record "Hotnumbers" Layout Index
copy Last Number to Record "Hotnumbers" Layout
end
Track last Number for 6 spins to
Record "lastX" layout
add 1 on Record "Spin index" Data Index
Put 100% of Record "progression" Data to Record "lastX" layout list
Put 100% of Record "progression" Data to Record "Hotnumbers" layout list
if Record "Hot index" Data Index >= 5 each time
begin
put 1 on Record "Hot index" Data Index
clear Record "last10" layout
clear Record "Hotnumbers" layout
put 1 on Record "progression" Data Index
put 1 on Record "Spin Counter" Data Index
Put 100% of Record "progression" Data to Record "last10" layout list
end
{if spin count >= 1000 each time
begin
stop session
end
if total bankroll >= 500 each time
begin
stop session
end }
if total bankroll <= -1000 each time
begin
stop session
end
If Record "progression" Data Index >
Record "progression" Data Count
Begin
clear Record "last10" layout
clear Record "Hotnumbers" layout
Put 1 on Record "progression" Data Index
End
end
END