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

News:

Progression bets are nothing more than different size bets on different spins. You could get lucky and win big, or unlucky and lose even more.

Main Menu
Popular pages:

Roulette System

The Roulette Systems That Really Work

Roulette Computers

Hidden Electronics That Predict Spins

Roulette Strategy

Why Roulette Betting Strategies Lose

Roulette System

The Honest Live Online Roulette Casinos

Dealers Signature v.1

Started by ignatus, Feb 01, 05:33 AM 2020

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Serendipity

Then maybe should be coded using both types -cw and ccw- at the same time...
Whether you think you can or you can't, you're probably right!

Normy2000

That would be an idea. the ball go from 27 and finish at 30.
We note +4 in CW and +33 in CCW, then after say 100 spins,
we take the hotest jump to the left and to the right as target for our 2 sector bet.
nOrMy2o0o  ‹(•¿•)›
"Learn from yesterday, live for today, hope for tomorrow. The important thing is not to stop questioning."  Albert Einstein

ignatus

Quote from: Macro on Feb 02, 09:45 AM 2020
Is there any way to add to get the average jump in the code?

And bet only if there is a close jumps to get average

It maybe hard to code I think

I would like that too.... only i havent figured out how to code, perhaps normy can help?

its just collect all distances in a data record, and then add them all togheter and Divide that sum with the total number of distances. That would calculate the average  distance...

for an example lets say last distances were 4,12,15,7. (That is 4 distances) Avg.distance would be 4+12+15+7= 38......38/4= 9,5 lets say 10. ok
If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

ignatus

The code would be then (in the Dealers Signature v.1 code)

Set Max to Record "DistData" Data Index
     loop until Record "DistData" index = 1
     add Record "DistData" Data to Record "AvgDist" Data
     add 1 to Record "DistCalc" data
     subtract 1 from Record "DistData" Data index
     end
     Divide Record "AvgDist" data with Record "DistCalc" data


the "average distance" would then be stored in Record "AvgDist" data

could you confirm this code is correct normy?
If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

Macro

Does that for ccw and ccw adding together and getting the aver?
Or should it be aver for CW
And aver for ccw

Normy2000

I will code for the exact hottest jump, not just average, let me few minutes...
nOrMy2o0o  ‹(•¿•)›
"Learn from yesterday, live for today, hope for tomorrow. The important thing is not to stop questioning."  Albert Einstein

Normy2000

Here is something to play with. Flat bet for now...
I have to go now, will check comment tomorrow.

[reveal]
system "auto-gap target"
// coded by: nOrMy2o0o

method "main"
begin
    while starting a new session
    begin
        call "Init"
    end
    call "win/loss";
    call "tracking";
end

//***********************************************************************
method "win/loss"
begin
    if flag "BetOn" is true
    begin
        if any inside bet won each
        begin
            if bankroll >= record "Highest BR" data
            begin
                clear record "Highest BR" data
                put 100% of bankroll to record "Highest BR" data
                put 1 en record "Progression" data
            end
        end

        if net < 0
        begin
   //         add 1 to record "Progression" data
        end
        set flag "BetOn" to false
    end
end

//***********************************************************************
method "tracking"
begin
    if record "Spins count" data > 1
    begin
        copy record "last number" layout to record "2 last number" layout
        Track Last Number for 1 spins to record "last number" layout
        Locate Distance between the Record "last number" layout to Record "2 last number" Layout into Record "dist CW" Data
        put 37 to Record "dist CCW" Data
        subtract 100% of Record "dist CW" Data from Record "dist CCW" Data
        call "update score"
    end

    if record "Spins count" data > 99
    begin
        call "find hot"
        call "place bets"
    end

    Add 1 to record "Spins count" data
end
// ************************************************************************

Method "update score"
Begin
    put 100% of Record "dist CW" Data to record "CW" data index
    add 1 to record "CW" data
    put 100% of Record "dist CCW" Data to record "CCW" data index
    add 1 to record "CCW" data
End
// ************************************************************************

Method "find hot"
Begin
    put 1 on record "CW" data index
    put 0 on record "left hot" data
    loop until record "CW" data index > record "CW" data count
    begin
        if record "CW" data > record "left hot" data
        begin
            put 100% of record "CW" data to record "left hot" data
        end
        add 1 on record "CW" data index
    end
   
    put 1 on record "CCW" data index
    put 0 on record "right hot" data
    loop until record "CCW" data index > record "CCW" data count
    begin
        if record "CCW" data > record "right hot" data
        begin
            put 100% of record "CCW" data to record "right hot" data
        end
        add 1 on record "CCW" data index
    end
End
//***********************************************************************

method "place bets"
begin
    Locate Number Left record "left hot" data gaps from the Last Number to Record "left" layout
    Copy Neighbors of Record "left" layout to Record "left 2" layout
    Locate Number Right record "right hot" data gaps from the Last Number to Record "right" layout
    Copy Neighbors of Record "right" layout to Record "right 2" layout
    put 1 on Record "left" layout
    put 1 on Record "left 2" layout list
    put 1 on Record "right" layout
    put 1 on Record "right 2" layout list
    set flag "BetOn" to true
end

//***********************************************************************

method "Init"
begin
    Put 3 to the Neighbor count
    set flag "BetOn" to false
    put 1 to record "Progression" data
    Put 0 to record "Spins count" data
    Put 0 to record "Highest BR" data
    set List [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] to record "CW" data
    set List [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] to record "CCW" data
    Load Single Wheel;
end
[/reveal]
nOrMy2o0o  ‹(•¿•)›
"Learn from yesterday, live for today, hope for tomorrow. The important thing is not to stop questioning."  Albert Einstein

Serendipity

Have you found something relevant about this strategy or it's a dead end?
Whether you think you can or you can't, you're probably right!

-