Wanted to test this bet.... 1 Line and 1 Hedging H/L EC.
Not so bad? 72% winrate from my testings now of 50 Live-sessions.
This was played with 1u bets and WG +300/SL -500.
14 LOST
36 WON
36/50 Won=72% winrate
Lost: 14*500=7000
Won: 36*300=10800
Total= +3800u
Procedure: Track Repeaters. Number hit 2 times within 10-20 spin (in the code i track repeaters from last 20 spins, you Could track repeaters from last 10 also..etc) WHEN you got a Repeater, you bet (1u) that single LINE/DOUBLESTREET covering the Repeater. ALSO bet 1u on the opposite H/L. (No progression if the H/L bet hits, just re-bet). For each Loss +1 Step in the progressionline (i use a simple 12 numbers Negative, use any other progression if you like). Stop Restart Procedure at any win (Anytime the Line Bet hits)
TEST 1, Live.
RX.code
system "GhostLine"
// © ignatus 2019 ©
method "main"
begin
while starting a new session
begin
Set List[1,1,2,3,4,6,9,14,21,31,47,70,105,158,237,355,533,799]
to Record "progression" Data
end
put 0 to Record "Highest Bankroll" Data
Copy List [Low] to Record "L" Layout
Copy List [High] to Record "H" Layout
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 [Line(25-30)] to Record "L5" Layout
Copy List [Line(31-36)] to Record "L6" Layout
while on each spin
begin
Track last Number for 20 spins to Record "last" layout
IF any outside bet lost each
begin
add 1 on Record "progression" Data Index
end
If any Line bet won each
begin
put 1 on Record "progression" Data Index
set flag "clear" true
Reset all flags false
{
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
}
end
IF Record "last" layout is found within Record "secondlast" layout each
begin
IF flag "clear" false each
begin
if Low has hit each
begin
IF flag "H" false each
begin
IF flag "L" false each
begin
Set flag "L" true
end
IF flag "bet" false each
begin
set flag "bet" true
if Line(1-6) has hit each
begin
IF flag "L1" false each
begin
Set flag "L1" true
end
end
if Line(7-12) has hit each
begin
IF flag "L2" false each
begin
Set flag "L2" true
end
end
if Line(13-18) has hit each
begin
IF flag "L3" false each
begin
Set flag "L3" true
end
end
end
end
end
if High has hit each
begin
IF flag "L" false each
begin
IF flag "H" false each
begin
Set flag "H" true
end
IF flag "bet" false each
begin
set flag "bet" true
if Line(19-24) has hit each
begin
IF flag "L4" false each
begin
Set flag "L4" true
end
end
if Line(25-30) has hit each
begin
IF flag "L5" false each
begin
Set flag "L5" true
end
end
if Line(31-36) has hit each
begin
IF flag "L6" false each
begin
Set flag "L6" true
end
end
end
end
end
end
end
//put 1 on Record "progression" Data Index
IF flag "L" true each
begin
Put 100% of Record "progression" Data to Record "H" Layout List
end
IF flag "H" true each
begin
Put 100% of Record "progression" Data to Record "L" Layout List
end
//LINE 1
IF flag "L1" true each
begin
Put 100% of Record "progression" Data to Record "L1" Layout List
end
//LINE 2
IF flag "L2" true each
begin
Put 100% of Record "progression" Data to Record "L2" Layout List
end
//LINE 3
IF flag "L3" true each
begin
Put 100% of Record "progression" Data to Record "L3" Layout List
end
//LINE 4
IF flag "L4" true each
begin
Put 100% of Record "progression" Data to Record "L4" Layout List
end
//LINE 5
IF flag "L5" true each
begin
Put 100% of Record "progression" Data to Record "L5" Layout List
end
//LINE 6
IF flag "L6" true each
begin
Put 100% of Record "progression" Data to Record "L6" Layout List
end
{ if total spin count >= 300 each
begin
stop session
end
}
if total bankroll <= -500 each
begin
stop session
end
if total bankroll >= 300 each
begin
stop session
end
set flag "clear" false
If Record "progression" Data Index >
Record "progression" Data Count each
Begin
Put 1 on Record "progression" Data Index
End
Track last Number for 20 spins to Record "secondlast" layout
end
END