I was scripting a dozen method today, I do not know if it will work yet. Thought behind is:
During a. series of spins it should be a point when a dozen which is second most frequent to pass
the most frequent, and keep that for at least a few spins.
The method then count the number of time the dozens comes up, flat bet on the leader, and try to come a few chips ahead, then reset the counting.
We start on any dozen the count is 0,0,0 and after the first spin we have 010 or 100 or 001
we bet on the highest of the three (which can change during the play) until a stop/loss or a win target
I have tested it a few times only, so I do not yet know how it will work.
The script as it is stop after 4 plus and - 50.
var arr = new Array(3);
arr[0] = 0;
arr[1] = 0;
arr[2] = 0;
var ki = 0;
var g = 0;
function extfunc(a,b,c){
if(c == "0") {return c + "/" + b; ki = ki -1;}
var ret = c;
if(a < 12 && a !=0){ arr[0] = arr[0]+1; if(c == "ld") ki = ki +2; else ki = ki-1; }
if(a > 12 && a < 25 && a !=0){ arr[1] = arr[1]+1; if(c == "md") ki= ki +2; else ki=ki -1;}
if(a >24 && a !=0){ arr[2] = arr[2]+1; if(c == "hd") ki=ki+2; else ki=ki-1;}
g=ki;
if(arr[0]>arr[1] && arr[0]>= arr[2]){
// alert(ret);
ret = "ld";
} else if(arr[1] > arr[0] && arr[1] >= arr[2]) {
ret= "md";
} else if(arr[2]> arr[0] && arr[2] >= arr[1]){
ret="hd";
}
if(ki<4 && ki>-50){
return ret + "/" + b;
} else {
return "dummy/0";
}
}
I have done some playing using this script today. I never come back 50 units which were the stop is set.
All ended up to 5 units plus as the bot settings. Some of the sessions become very long as it sometimes went up and down between 10 minus and 3 plus.
Used smallest chips, and will do more runs using them until I either reject it or play with euros.
25 sessions done ended with 122 plus. It takes some spins, it is total over 2000.
Got down to -44 at maximum, and the recover rate was slow, nearly endless, but it went back.
Many sessions lasted a few spins, so it may be better to set the stop lower, maybe low as 15.
I will continue testing, do not know yet if it is useful.
Working with a similar for EC, started the test today.