Credits to Notto 8)
This is my tweak of the "Nottogame", I call it "Nottogame FIBO 7" same bet, only played with *1-7* numbers (Not 1-10 numbers as the original notto-bet) ALSO this is played now with a FIBONACCI progression (That i tested and tweaked), THIS progressionline has the best preformance, for this bet (shorter and longer progressionlines didn't preform as good as this one;
1,1,1,1,1,1,1,
2,2,2,2,2,2,2,
3,3,3,3,3,3,3,
5,5,5,5,5,5,5,
8,8,8,8,8,8,8,
13,13,13,13,13,13,13,
21,21,21,21,21,21,21,
34,34,34,34,34,34,34
STOP
As you can see in the charts it's not a HG? (well? short term maybe a "near HG")....but it WILL crash after x spins, meanwhile Maximum profits gained with this particular betselection (also best recovery, from minior losses)..
RX-code
system "Nottogame Fibo7"
// © ignatus 2018 ©
method "main"
begin
while starting a new session
begin
put 0 to Record "Highest Bankroll" Data
Set List[1,1,1,1,1,1,1,
2,2,2,2,2,2,2,
3,3,3,3,3,3,3,
5,5,5,5,5,5,5,
8,8,8,8,8,8,8,
13,13,13,13,13,13,13,
21,21,21,21,21,21,21,
34,34,34,34,34,34,34]
to Record "progression" Data
Set List[1,2,3,4,5,6,7,8,9,10]
to Record "Spin Counter" Data
end
while on each spin
begin
if Bankroll >= Record "Highest Bankroll" Data
begin
clear Record "last7" Layout
clear Record "Highest Bankroll" Data
put 100% Bankroll to Record "Highest Bankroll" Data
put 1 on Record "Spin Counter" Data Index
put 1 on Record "progression" Data Index
end
if any inside bet won each
begin
clear Record "last7" layout
put 1 on Record "Spin Counter" Data Index
// put 1 on Record "progression" Data Index
end
Track last Number for 7 spins to
Record "last7" layout
Put 100% of Record "progression" Data to Record "last7" layout list
add 1 on Record "progression" Data Index
add 1 on Record "Spin Counter" Data Index
{if total bankroll >= 2000 each time
begin
stop session
end
}
if total bankroll <= -2000 each time
begin
stop session
end
If Record "progression" Data Index >
Record "progression" Data Count
Begin
clear Record "last7" layout
Put 1 on Record "progression" Data Index
put 1 on Record "Spin Counter" Data Index
End
end
END