This is a very simple system (old system), but now added a CYCLE-bet.
Begin Bet
1 LINE for 5 spins with 1u
2 LINES for 2 spins 2,3
3 LINES for 2 spins 5,10
4 LINES for 2-(3) spins 30,90 (270) Last Step idk because of Table-limits etc...
Stop/Restart procedure (at any win)
Seems to work fine, from my testings now,
i put a WG+250u / SL-500
RX-code Progressive Cycle Line BET
system "Progressive Cycle Lines BET v1"
// © ignatus 2020 ©
method "main"
begin
while starting a new session
begin
Set List [1,1,1,1,2,3,5,10,30,90,270]
to Record "progression" Data
Set List[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25]
to Record "Spin counter" Data
end
put 0 to Record "Highest Bankroll" Data
Copy List [Line(1-6)] to Record "L1" Layout
Copy List [Line(7-12)] to Record "L2" Layout
Copy List [Line(13-18)] to Record "L3" Layout
Copy List [Line(19-24)] to Record "L4" Layout
Copy List [3rd dozen] to Record "doz3" Layout
while on each spin
begin
if Record "Spin counter" Data index = 9
begin
if flag "L3" true each
begin
set flag "L4" true
end
end
if Record "Spin counter" Data index = 7
begin
if flag "L2" true each
begin
set flag "L3" true
end
end
if Record "Spin counter" Data index = 5
begin
if flag "L1" true each
begin
set flag "L2" true
end
end
if Record "Spin counter" Data index = 1
begin
if flag "L1" false each
begin
set flag "L1" true
end
end
IF any inside bet lost each
begin
add 1 on Record "progression" Data Index
end
If any inside bet won each
begin
set flag "L1" false
set flag "L2" false
set flag "L3" false
set flag "L4" false
put 1 on Record "Spin counter" Data index
Put 1 on Record "progression" Data Index
//add 1 on Record "progression" Data Index
if Bankroll >= Record "Highest Bankroll" Data
begin
clear Record "Highest Bankroll" Data
put 100% Bankroll to Record "Highest Bankroll" Data
put 1 on Record "progression" Data Index
end
{ clear Record "L1" Layout
clear Record "L2" Layout
clear Record "B3" Layout
clear Record "B4" Layout }
end
{ if total spin count >= 300 each
begin
stop session
end
}
if total bankroll <= -500 each
begin
{ add 1 to record "lost sessions" data index
put 0 on total bankroll
put 1 on Record "progression" Data Index
}
stop session
end
if total bankroll >= 250 each
begin
{
add 1 to record "won sessions" data index
put 0 on total bankroll
put 1 on Record "progression" Data Index
}
stop session
end
IF flag "L1" true each
begin
Put 100% of Record "progression" Data to Record "L1" Layout List
end
IF flag "L2" true each
begin
Put 100% of Record "progression" Data to Record "L2" Layout List
end
IF flag "L3" true each
begin
Put 100% of Record "progression" Data to Record "L3" Layout List
end
IF flag "L4" true each
begin
Put 100% of Record "progression" Data to Record "L4" Layout List
end
If Record "progression" Data Index >
Record "progression" Data Count
Begin
set flag "L1" false
set flag "L2" false
set flag "L3" false
set flag "L4" false
Put 1 on Record "progression" Data Index
put 1 on Record "Spin counter" Data index
{
clear Record "L1" Layout
clear Record "L2" Layout
clear Record "B3" Layout
clear Record "B4" Layout }
End
if flag "L1" true each
begin
add 1 to Record "Spin counter" Data index
end
end
END
Is it possible that it sort and start placing the first unit - on the line with the highest delay?
Quote from: Fateichel on Jan 25, 07:38 AM 2020
Is it possible that it sort and start placing the first unit - on the line with the highest delay?
So you haven't found anything yet to be satisfied with, because you said you tested almost everything ignatus has created. It seems that what has a strong win rate once, it loses the very next session... I can't sort it out...
Quote from: Serendipity on Jan 25, 09:35 AM 2020
So you haven't found anything yet to be satisfied with, because you said you tested almost everything ignatus has created. It seems that what has a strong win rate once, it loses the very next session... I can't sort it out...
im really careful at the moment. because i had to many drawdowns in the past.
i think dragonzone is still the strongest. but its stressful to play and you need a higher bankroll. im not sure if i want to risk it at the moment.
and also this new system here (Progressive Cycle Line by Ignatus) is really really save!!! but you need around 250-350 spins for 300 units profis.
with dragonzone you make the same amount in half of the spins.
and i think Ignatuis could optimize this system.. so that the system always place the lines with the highest delay.
actually i play (test) this system here
link:s://:.youtube.com/watch?v=qtBS-Zf33MU
That´s nice...but apply the CYCLE BET for this corner Bet also, for higher winrates?
1st corner 1u for 8 spins
1st+2nd corner (8 numbers) prog. 2,3,4
1st+2nd+3rd corner (12 numbers) prog. 6,9
1st+2nd+3rd+4th corner (16 numbers) prog. 13
1st+2nd+3rd+4th+5th corner (20 numbers) prog 21,47,106.
(not sure about the prog. for 5 corners (1st bet). but i will code and test this.)
Im playing the Line Cycle Bet myself Live now, ive made +55u so far. O0 But as i realized i only put in 500u (now 555u) so, i will not be able to cover the last step. haha! (pray for me) :P
(5u bets)
5*5=25
10,15=25
25,50=75
150,450=600
Total cost 25+25+75+150+450= 725u (Required for covering the whole progressionline with 5u bets!)
OK! so now i won +235u O0 my BR is now +735u (started with 500)...that means i can cover the whole progressionline. Feels good..
Anyway, i use as a Trigger WAIT for the opposite H/L to hit 2 times before i start place 1st bet... i will include this in the code...
cheers
Version 2 (TRIGGER wait for opposite H/L to hit 2 times before Start place 1st Bet).
system "Progressive Cycle Lines BET v2"
// © ignatus 2020 ©
method "main"
begin
while starting a new session
begin
Set List [1,1,1,1,2,3,5,10,30,90,270]
to Record "progression" Data
Set List[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25]
to Record "Spin counter" Data
end
put 0 to Record "Highest Bankroll" Data
Copy List [Line(1-6)] to Record "L1" Layout
Copy List [Line(7-12)] to Record "L2" Layout
Copy List [Line(13-18)] to Record "L3" Layout
Copy List [Line(19-24)] to Record "L4" Layout
Copy List [3rd dozen] to Record "doz3" Layout
while on each spin
begin
if High has hit more 1 time each
begin
set flag "bet" true
end
if flag "bet" is true each
begin
if Record "Spin counter" Data index = 9
begin
if flag "L3" true each
begin
set flag "L4" true
end
end
if Record "Spin counter" Data index = 7
begin
if flag "L2" true each
begin
set flag "L3" true
end
end
if Record "Spin counter" Data index = 5
begin
if flag "L1" true each
begin
set flag "L2" true
end
end
if Record "Spin counter" Data index = 1
begin
if flag "L1" false each
begin
set flag "L1" true
end
end
end
IF any inside bet lost each
begin
add 1 on Record "progression" Data Index
end
If any inside bet won each
begin
set flag "bet" false
set flag "L1" false
set flag "L2" false
set flag "L3" false
set flag "L4" false
put 1 on Record "Spin counter" Data index
Put 1 on Record "progression" Data Index
//add 1 on Record "progression" Data Index
if Bankroll >= Record "Highest Bankroll" Data
begin
clear Record "Highest Bankroll" Data
put 100% Bankroll to Record "Highest Bankroll" Data
put 1 on Record "progression" Data Index
end
{ clear Record "L1" Layout
clear Record "L2" Layout
clear Record "B3" Layout
clear Record "B4" Layout }
end
{ if total spin count >= 300 each
begin
stop session
end
}
if total bankroll <= -500 each
begin
{ add 1 to record "lost sessions" data index
put 0 on total bankroll
put 1 on Record "progression" Data Index
}
stop session
end
if total bankroll >= 250 each
begin
{
add 1 to record "won sessions" data index
put 0 on total bankroll
put 1 on Record "progression" Data Index
}
stop session
end
IF flag "L1" true each
begin
Put 100% of Record "progression" Data to Record "L1" Layout List
end
IF flag "L2" true each
begin
Put 100% of Record "progression" Data to Record "L2" Layout List
end
IF flag "L3" true each
begin
Put 100% of Record "progression" Data to Record "L3" Layout List
end
IF flag "L4" true each
begin
Put 100% of Record "progression" Data to Record "L4" Layout List
end
If Record "progression" Data Index >
Record "progression" Data Count
Begin
set flag "L1" false
set flag "L2" false
set flag "L3" false
set flag "L4" false
Put 1 on Record "progression" Data Index
put 1 on Record "Spin counter" Data index
{
clear Record "L1" Layout
clear Record "L2" Layout
clear Record "B3" Layout
clear Record "B4" Layout }
End
if flag "L1" true each
begin
add 1 to Record "Spin counter" Data index
end
end
END
so, now im +400u, im at 900u (started with 500) just a 100 more then im going to withdraw. (pray for me!) :P O0
Keep up the good work and keep us posted.
Good luck!
Quote from: Serendipity on Jan 25, 04:22 PM 2020
Keep up the good work and keep us posted.
Good luck!
Thanks :) yes..
All the efforts in testing seems finally paying off.
Great job! You deserve it.
sry to say...i lost. well? it was going to happen sooner or later ofc, but now it happend sooner than i could withdraw, i needed to win 500 (i deposited 500) i won 400 then BAM! :xd: owell...
Sh1t. I am sorry to hear that. I was too soon to celebrate. Have you lost your deposit?
At least you still motivated to keep inventing and perfecting those systems.
I really admire your passion.
Quote from: Fateichel on Jan 25, 09:48 AM 2020
actually i play (test) this system here
link:s://:.youtube.com/watch?v=qtBS-Zf33MU
Looks too good to be true. What's the catch? Can't be that easy
Quote from: ignatus on Jan 25, 04:57 PM 2020
sry to say...i lost. well? it was going to happen sooner or later ofc, but now it happend sooner than i could withdraw, i needed to win 500 (i deposited 500) i won 400 then BAM! :xd: owell...
What happened? You didn't stick to the plan? Or just came those 'selected' numbers especially for you?
Quote from: Serendipity on Jan 25, 05:17 PM 2020
Looks too good to be true. What's the catch? Can't be that easyWhat happened? You didn't stick to the plan? Or just came those 'selected' numbers especially for you?
idk...was just "bad luck" also i played an "airball machine" ..i saw the number drop right, then suddenly was blown to another number (its manipulated for sure) i was a fool to play at an airball machine:S anyway...but this could happen at a real wheel also i guess...i didnt stick 100% to the bet i had 900..
so first bet 1u *5 spins at 1 Line then 2 lines (prog. 2,3) then 3 lines (prog, 5,10,20,40) LOST i didnt play the last line (as i should, i just kept dubbling up 3 Lines, because i thought it was going to win) but no..:s Thats they way it happend...
Quote from: ignatus on Jan 25, 05:29 PM 2020
idk...was just "bad luck" also i played an "airball machine" ..i saw the number drop right, then suddenly was blown to another number (its manipulated for sure) i was a fool to play at an airball machine:S anyway...but this could happen at a real wheel also i guess...i didnt stick 100% to the bet i had 900..
so first bet 1u *5 spins at 1 Line then 2 lines (prog. 2,3) then 3 lines (prog, 5,10,20,40) LOST i didnt play the last line (as i should, i just kept dubbling up 3 Lines, because i thought it was going to win) but no..:s Thats they way it happend...
Dont play airball roulette, it is almost everywhere rigged
Quote from: Fateichel on Jan 25, 09:48 AM 2020
actually i play (test) this system here
link:s://:.youtube.com/watch?v=qtBS-Zf33MU
Are u still playing or testing this system?
Cheers!