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

Roulette-focused => Testing zone => Topic started by: ignatus on Oct 31, 04:47 AM 2018

Title: Last 8 SPLITS
Post by: ignatus on Oct 31, 04:47 AM 2018
Credits to Maui13,   :thumbsup:

Looks good! 

The way it works/it's coded, it will bet *Last 8 splits HIT* --> Any repeating split during this 8 spin Tracking, will count as *1* split, therefore, it will not be always 8 splits bet, but sometimes (most of the time, fewer splits bet) 8 splits are bet only If 8 Unique splits hit,

Progression, a simple Fibonacci. 1,2,3,5,8,13,21,34,55,89 STOP

Wg/Sl +1000/-1000 (for demonstration/testing)

Adjust the progression/wg/sl to your own MM.

cheers

RX-Testing-Code

system "Last 8 Splits TESTING"
//Credits to Maui13

method "main"
begin
   while starting a new session
  begin
       Set List [1,2,3,5,8,13,21,34,55,89] to Record "progression" Data
  end

   while on each spin
  begin

  If any split bet won each
begin
clear Record "last8" layout
Put 1 on Record "progression" Data Index
Put 1 on Record "Spin Counter" Data
end

if total inside bets count = 0 each time
begin
  add 1 to Record "Spin Counter" Data
  Track last Split for 8 spins to
Record "last8" layout
end

  if Record "Spin Counter" Data = 9 each time
begin
    Put 100% of Record "progression" Data to Record "last8" layout list
end


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

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


If Record "last8" layout list lost each time
begin
  add 1 on Record "progression" Data Index
  Put 100% of Record "progression" Data to Record "last8" layout list
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
    End


  end
END

Title: Re: Last 8 SPLITS
Post by: Maui13 on Oct 31, 05:28 AM 2018
Hahaha, awesome! Thanks for running the code  :thumbsup:

Does it tank horribly when flat betting?
Title: Re: Last 8 SPLITS
Post by: ignatus on Oct 31, 05:58 AM 2018
Quote from: Maui13 on Oct 31, 05:28 AM 2018
Hahaha, awesome! Thanks for running the code  :thumbsup:

Does it tank horribly when flat betting?

np!  8)

Only did 1 test, (randomspins) You can adjust the code to any progression you like

Just change this line:

Set List [1,1,1,1,1,1,1,1,1,1,1,1] to Record "progression" Data
Title: Re: Last 8 SPLITS
Post by: Normy2000 on Oct 31, 09:43 AM 2018
8  :question:
Title: Re: Last 8 SPLITS
Post by: ignatus on Oct 31, 11:00 AM 2018
Quote from: Normy2000 on Oct 31, 09:43 AM 2018
8  :question:

Thanks Normy :)

Here is the corrected Testing-code, with a shorter progression (5,5,10,15,25,40) STOP (wg/sl +1000/-500).

system "Last 8 Splits TESTING 2"
//Credits to Maui13

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

   while on each spin
  begin

  If any split bet won each
begin
clear Record "last8" layout
Put 1 on Record "progression" Data Index
Put 1 on Record "Spin Counter" Data
end

if total inside bets count = 0 each time
begin
  add 1 to Record "Spin Counter" Data
  Track last Split for 8 spins to
Record "last8" layout
end

  if Record "Spin Counter" Data = 9 each time
begin
    Put 100% of Record "progression" Data to Record "last8" layout list
end


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

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


If Record "last8" layout list lost each time
begin
  add 1 on Record "progression" Data Index
  Put 100% of Record "progression" Data to Record "last8" layout list
end


  If Record "progression" Data Index >
  Record "progression" Data Count
    Begin
   clear Record "last8" layout

   Put 1 on Record "progression" Data Index
   Put 1 on Record "Spin Counter" Data
    End


  end
END


Title: Re: Last 8 SPLITS
Post by: Kattila on Oct 31, 01:18 PM 2018
I would bet somehow the oposite of that.
Need 6 splits in the last  8 spins, then bet the
other 12 splits until profit or stop lose if very bad run.
After the trigger (that 6 splits on 8 spins) flatbet for max
13 spins  , allowed 4 Ls , if 5th L Stop
( WWLWWLLWWLWW L stop,
or WWLWWLLWWLWW W   also stop , take profit ). Wait new trigger
and bet again for profit or stop L5 .  So if win in the first spins , take
profit and retrack,  the 13 spins is the max. spins to bet after trigger,
and 5 Ls max.
Can use flat bet levels for that cycle,  2 units up after W session,  and
1 unit down after L session
Title: Re: Last 8 SPLITS
Post by: Normy2000 on Oct 31, 01:22 PM 2018
Ignatus, if you check in Reports-Betting History [Ctrl]+[F2], you will see that sometimes, the progression does not work?
Title: Re: Last 8 SPLITS
Post by: ignatus on Oct 31, 02:05 PM 2018
Quote from: Normy2000 on Oct 31, 01:22 PM 2018
Ignatus, if you check in Reports-Betting History [Ctrl]+[F2], you will see that sometimes, the progression does not work?

Hi Normy, that's because this bet is with a fibonacci-progression (and that may not work/always be profitable with 8 splits bet/16 numbers) Most of the time, 7 splits/14 numbers (or less bet, then it works fine) that's why... O0
Title: Re: Last 8 SPLITS
Post by: Normy2000 on Oct 31, 02:14 PM 2018
I mean, the progression stay at step 1 for many times, check the picture.
Title: Re: Last 8 SPLITS
Post by: Face on Oct 31, 02:36 PM 2018
Thank you Ign!