• 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

Question for RX Coding.

Started by Big EZ, Dec 07, 01:57 AM 2010

Previous topic - Next topic

0 Members and 4 Guests are viewing this topic.

Big EZ

As I am not a very technically inclined person, I have a question that may be simple for a "programmer" to answer. 

I would like to try and test some methods I have come up with in RX extreme instead of by hand.   The method itself is not complex and I can figure out how to do that part.  What I can not figure out how to do is program a simple progression.  Its not a martingale progression its one that uses a set list

ex: 1-1-2-2-3-3-4-4-5-5etc

On a loss it moves to right and on a win it moves to the left and resets when you are equal to or greater then your current profit.

Would someone be able to help me with this.  If you can not understand please let me know and I will try and explain myself better.  Thanks!
Quitting while your ahead is not the same as quitting

superman

Hi BigEZ

Set a list for the progression at the top of the script, in your area that checks for win/loss on a loss you would increment +1 and on a win decrease by -1

I havent installed rx on my new machine and all scripts I made in the past are gone so I cant give you the code, just going on memory
There's only one way forward, follow random, don't fight with it!

Ignore a thread/topic that mentions 'stop loss', 'virtual loss' and also when a list is provided of a progression, mechanical does NOT work!

Big EZ

Superman, thanks for the reply.

As I stated I am not to technically inclined lol.  What you said makes sense, and thats also what it says in the RX coding manual.  But how would that make it reset your progression if you are even or plus?
Quitting while your ahead is not the same as quitting

superman

you would also need to add a section to check your balance

if any even bet win

put 1 to list 'progression' doodaa (cant remember the rest)

would reset it to the first number of your progression

now i wish i had kept my scripts, heck, I havent even re-downloaded rxtreme, I code straight into a bot now, sorry cant realy help much
There's only one way forward, follow random, don't fight with it!

Ignore a thread/topic that mentions 'stop loss', 'virtual loss' and also when a list is provided of a progression, mechanical does NOT work!

Mikeo

Hi Big EZ,

I think this is a simple example of what you want:


method "initialize"
begin
  Set List [1,1,2,2,3,3,4,4,5,5] to record "progression" data
  Put 1 to record "progression" data index
  put 0 to record "high_so_far" data
end

method "Get Bet"
begin
  if Net < 0                                 //on a loss
  begin
     add 1 to record "progression" data index
     if record "progression" data index > 10     //10 is number of prog. steps
     begin
        put 10 to record "progression" data index      //leave prog. at step 10
     end
  end
  if Net > 0                                 //on a win
  begin
     subtract 1 from record "progression" data index
     if record "progression" data index < 1
     begin
        put 1 to record "progression" data index
     end
  end
  if balance > record "high_so_far" data                     //a new high
  begin
     put 1 to record "progression" data index               //reset progression
     put 100% balance to record "high_so_far" data   //record new high balance
  end
end

put 100% record "progression" data on red     //example of bet


I hope that covers it.

Big EZ

Thanks Mikeo.

I am going to plug it in and see how it goes. I appreciate the help
Quitting while your ahead is not the same as quitting

-