VLS Roulette Forum

Resources => Other Software for Roulette => Topic started by: babs on January 22, 2010, 08:27:07 AM

Title: Help with RX20
Post by: babs on January 22, 2010, 08:27:07 AM
Hi guys, I hope someone can help me. I am learning to code with RX and I am trying to understand how to do the following. For ease of use I place my bets either on red or black.  The rules I am using for learning is basically Oscars Grind with a small twist. My problem however lies with checking my Bankroll.

i.e. I bet a unit on red, if my total BR is up > 1 unit from the Highest Point, then switch to Black.  If I lose and BR is down from highest, keep betting (same units) on red. If win, and BR still < than Highest BR, then add 1 unit to red. If lose, keep betting units the same, but increase 1 unit after each win until BR > Highest BR.

I am using a fictional system while learning to code. The system makes even bets (i.e. Red or Black). The point is that RX must be able to determine if my current BR is higher than the Highest BR. If true, then revert back to single unit. If False, add 1 unit after every win until BR > highest BR. Do not add units on losing.

Simple example
BR 100

Bet     Unit       W      BR
R          1          W     101 ( > highest BR, thus remain at 1 Unit)
R           1         L       100 ( < highest BR, but not W, remain at 1 unit)
R           1         L       99 ( < Highest BR (101), but not W, remain at 1 unit)
R           1         W     100 ( < highest BR (101), but W, thus increase 1 unit)
R           2         L         98   ( < highest BR (101), but not W, remain at 2 units)
R           2         W      100 (< highest BR (101), but W, increase 1 unit)
R           3         W      103 ( > Highest BR (101), return to 1 unit)
R           1         W      104 ( > Higherst BR (103), remain at 1 unit).
R           1          L      103 < HBR (104), no win, remain at 1 unit)
R           1          L      102 "                    "                          "
R           1          L       101 "                     "                             "
R           1          L       100  "                     "                                   "
R           1          W      101 < HBR (104, and W, increase 1 unit)
R           2           L       99   < HBR (104), no W, remain 2 units
R           2           W     101  < HBR, and W, increase 1 unit
R           3           W     104  = HBR, and W (but not Higher than HBR) increase 1 unit
R           4            L      100 < HBR, no W, remain 4 units
R           4           W      104 + HBR, but not higher, W so increase 1 unit
R           5           W       109 > HBR, reset to 1 unit and retrack HBR

I hope this is clear. Any help on how to code this would be appreciated.

Thanks