Master Lottery Software

bloubul

Member
Hi BP

I have a problem following your statements.
1. You talk about "I used these files to update alpha2 (pairs) and alpha3 (trips) filters which I intend to load in WinnaLotto.
2. I'm under the impression that alpha2 and 3 filters are fixed.
3."Next I opened Winnalotto and loaded the above database. I switched to columns tab and load My_Filter.clm (I created and saved this) which has the following columns of
N+X>=H, Rebal Median, Detailed, Skip 1,Skip 2,Skip 3,Skip 4,and Skip 5.
4. What is My_Filter.clm
5."I also note if Skips 1 thru 5 as having total counts 2 or less.
If this happens, I make a note to play those pair(s).

BlouBul :cool:
 
Turtle0747

Originated from turtle0747
Hello BP from turtle
Thanks for the info. I had a program developed for the Pairs but couldn't get a triple program to work. Ran out of memory for the array. Below is my pairs which does work. Do you have the program in GWBASIC that counts each trip matched against the past winning file?

100 OPEN "I",1,"C:\GWBASIC\PAIRS.TXT"
110 REM OPEN "I",1,"C:\GWBASIC\TRIPS.TXT"
200 OPEN "I",2,"C:\GWBASIC\HISTORY.TXT"
300 OPEN "O",3,"C:\GWBASIC\RESULTS.TXT"
400 '------------------------------------
500 '- LOAD FILTER TABLE -
600 '------------------------------------
800 DIM A(500),B(500),C(500),D(500),E(500)
900 N=0
1000 IF EOF(2) THEN 1900
1100 N=N+1
1200 INPUT#2,Z$
1300 GOSUB 8200
1400 A(N)=VAL(MID$(Z$,X1,2)):B(N)=VAL(MID$(Z$,X2,2))
1500 C(N)=VAL(MID$(Z$,X3,2)): D(N)=VAL(MID$(Z$,X4,2))
1600 E(N)=VAL(MID$(Z$,X5,2))
1700 '
1800 GOTO 1000
1900 CLOSE 2
2000 '
2100 '------------------------------------
2200 '- FORMAT INPUT FILE FOR TESTS -
2300 '------------------------------------
2400 '
2500 C1=0:N1=0:N2=0:N3=0:N4=0:N5=0:CNT1=0:CNT2=0
2600 IF EOF(1) THEN 10300
2700 INPUT#1,Z$
2800 GOSUB 8200
2900 A1=VAL(MID$(Z$,X1,2)):B1=VAL(MID$(Z$,X2,2))
3000 C1=VAL(MID$(Z$,X3,2)): D1=VAL(MID$(Z$,X4,2))
3100 E1=VAL(MID$(Z$,X5,3))
3200 CNT1=CNT1+1
3300 '
3400 '------------------------------------
3500 '- FILTER TESTS -
3600 '------------------------------------
3700 GOTO 4100
3800 REM GOTO 6100
3900 CLOSE ALL
4000 END
4100 '
4200 '------------------------------------
4300 '- COUNT PAIRS -
4400 '------------------------------------
4500 N1=0:N2=0:N3=0
4600 FOR Q=1 TO 60
4700 N1=0:N2=0
4800 IF A1=A(Q) OR A1=B(Q) OR A1=C(Q) OR A1=D(Q) OR A1=E(Q) THEN N1=N1+1 ELSE N1=N1
4900 IF B1=A(Q) OR B1=B(Q) OR B1=C(Q) OR B1=D(Q) OR B1=E(Q) THEN N2=N2+1 ELSE N2=N2
5000 IF N1+N2=2 THEN N3=N3+1 ELSE N3=N3
5100 NEXT
5200 IF N3<4 GOTO 2600
5300 Y$=STR$(A1)+STR$(B1)+" -"+STR$(N3)
5400 CNT2=CNT2+1
5500 PRINT#3,Y$
5600 CLS
5700 COLOR 15,1
5800 LOCATE 11,36
5900 PRINT USING "###,###,###";CNT2
6000 GOTO 2600
6100 '
6200 '------------------------------------
6300 '- COUNT TRIPS -
6400 '------------------------------------
6500 N1=0:N2=0:N3=0:N4=0
6600 FOR Q=1 TO 128
6700 N1=0:N2=0:N3=0
6800 IF A1=A(Q) OR A1=B(Q) OR A1=C(Q) OR A1=D(Q) OR A1=E(Q) THEN N1=N1+1 ELSE N1=N1
6900 IF B1=A(Q) OR B1=B(Q) OR B1=C(Q) OR B1=D(Q) OR B1=E(Q) THEN N2=N2+1 ELSE N2=N2
7000 IF C1=A(Q) OR C1=B(Q) OR C1=C(Q) OR C1=D(Q) OR C1=E(Q) THEN N3=N3+1 ELSE N3=N3
7100 IF N1+N2+N3=3 THEN N4=N4+1 ELSE N4=N4
7200 NEXT
7300 IF N4<3 GOTO 2600
7400 Y$=STR$(A1)+STR$(B1)+STR$(C1)+" -"+STR$(N4)
7500 CNT2=CNT2+1
7600 PRINT#3,Y$
7700 CLS
7800 COLOR 15,1
7900 LOCATE 11,36
8000 PRINT USING "###,###,###";CNT2
8100 GOTO 2600
8200 '
8300 '------------------------------------
8400 '- PARSE LINE FOR POSITIONS -
8500 '------------------------------------
8600 X1=0:X2=0:X3=0:X4=0:X5=0:CNT=0:p1=0:SW=0
8700 FOR X=1 TO LEN(Z$)
8800 IF SW=0 GOTO 9000 ELSE GOTO 9400
8900 '
9000 IF MID$(Z$,X,1)<>" " THEN P1=X ELSE P1=0
9100 SW=SW+1
9200 GOTO 9500
9300 '
9400 IF MID$(Z$,X,1)=" " AND MID$(Z$,X+1,1)<>" " THEN P1=X+1 ELSE P1=0
9500 IF P1>0 THEN CNT=CNT+1 ELSE CNT=CNT
9600 IF CNT=1 AND P1>0 THEN X1=P1 ELSE CNT=CNT
9700 IF CNT=2 AND P1>0 THEN X2=P1 ELSE CNT=CNT
9800 IF CNT=3 AND P1>0 THEN X3=P1 ELSE CNT=CNT
9900 IF CNT=4 AND P1>0 THEN X4=P1 ELSE CNT=CNT
10000 IF CNT=5 AND P1>0 THEN X5=P1 ELSE CNT=CNT
10100 NEXT
10200 RETURN
10300 '
10400 CLS
10500 X1=(CNT2/CNT1)*100
10600 LOCATE 1,1
10700 PRINT USING "###,###,###";CNT1
10800 PRINT USING "###,###,###";CNT2
10900 PRINT USING "##.###";X1
11000 'PRINT "RECORDS READ=" CNT1 " RECORDS WRITTEN=" CNT2 " PERCENT=" X1
11100 END
11200 CLOSE ALL


You can use this for PAIRS or TRIPS. HISTORY is of course your past winning
draws database. PAIRS or TRIPS file is every possible combination.
Line 5200 screens the PAIRS count and Line 7300 screens the TRIPS count.
Line 4600 uses only 60 draws from the HISTORY file, but if you use "N" you get
everything. Line 6600 does the same for TRIPS. Finally, your output file is
RESULTS.txt for any run.

-BP


 
Hi BlouBul



Originated from BlouBul
Hi BP
I have a problem following your statements.

1. You talk about "I used these files to update alpha2 (pairs) and alpha3 (trips) filters which I intend to load in WinnaLotto.

WinnaLotto comes with filters alpha2.flt and alph3.flt. I edited them and
pasted my PAIRS or TRIPS. In my case Alpha2.flt contains my PAIRS from
my GWBASIC program and Alpha3.flt contains my TRIPS.

2. I'm under the impression that alpha2 and 3 filters are fixed.

You can change them since they are basic test files.

3."Next I opened Winnalotto and loaded the above database. I switched to columns tab and load My_Filter.clm (I created and saved this) which has the following columns of
N+X>=H, Rebal Median, Detailed, Skip 1,Skip 2,Skip 3,Skip 4,and Skip 5.

I can understand your confusion. In the columns tab you can uncheck columns and leave others checked if these are the only columns you
need when using Draw Analysis tab. You can save these selected columns
and give it your own file name. I chose My_Columns.clm and saved this.

4. What is My_Filter.clm

My_Filter.clm was my error. It should have been My_Columns.clm.

5."I also note if Skips 1 thru 5 as having total counts 2 or less.
If this happens, I make a note to play those pair(s).

This was from a post that SpringBok made a suggestion so I used it
to pick PAIRS or TRIPS. I'm still not clear how it works.


-BP
 

Springbok

Member
Hello Black Prince

You people have missed the point. I have a whole variety of files created from the 49 numbers in the 6/49 or 7/49 game. Each file consists of 24 pairs of numbers. Each file has a name. I call one of them alpha, another one is beta and so on.Each of the files contains different pairs. Naming is up to you. You can call a file Fred or George or Zeke or whatever. Create some of these files and then we can talk some more.
 
Hi SpringBok

Originated by SpringBok
Hello Black Prince
You people have missed the point. I have a whole variety of files created from the 49 numbers in the 6/49 or 7/49 game. Each file consists of 24 pairs of numbers. Each file has a name. I call one of them alpha, another one is beta and so on.Each of the files contains different pairs. Naming is up to you. You can call a file Fred or George or Zeke or whatever. Create some of these files and then we can talk some more.


I did realize these test file names were named on the fly and didn't have
a reserved naming convention. I used Alpha2.flt on the fly, but have renamed
it with a more meaningful name for my use. I have used WinnaLotto before,
but never understood it's potential until now. I also realize that those who
are asking these kinds of questions have not read the 67 posts about
Winnalotto, because they would have known better not to focus on file naming
conventions.

I would like to understand your thought process on selecting PAIRS and
TRIPS. The files I've created were matched from past winning draws. I counted
the number of times they appeared and only selected those that repeated 4 or
more times. I'm now testing the range of drawings to see if more recent selections
improves this process. Do you have any suggestions??

-BP
 

Springbok

Member
Helllo Black Price

Why use pairs and trips? Simple. They are easier to track. Would you prefer to track a mouse or an elephant across a sandy beach? Tracking the skips of pairs gives you some chance of predicting when they will hit.

When you load the data file of a 6/49 game, you will see 1176 pairs produced to look at. If you open an alpha type file you will only see 24 pairs.
When you open an alpha type file and you go to the skip 1 column you can sort the skips in ascending or descending order. You now have given the lottery shape. Before it was a formless void. Knowing what the enemy looks like is a distinct advantage.
 

bloubul

Member
Hi BP / Springbok,

Thanks for your input, but my mind is with my sister, who's starting her second round of chemo tommorow, all I'm asking is for you to pray for us please.

Thanks

BlouBul :cool:
 
Hello BP from turtle0747

Hello BP

Thanks for the info. That is some programming. Will give it a try with the Fla lotto 6/53.

Thanks
turtle0747
 
Hello BP from turtle0747

I forgot to ask. When you do only 60 draws for pairs, is it the last 60 draws from recent draw? Or to you start at the beginning of your history file from way back and do 60 draws?

thanks
turtle0747
 
Hello BP from turtle0747

Sorry, forgot to ask the layout of your history file. My history file looks like this:
10/23/1999 11 20 23 33 37 47

I also have one with just the numbers.

thanks
turtle0747
 
Turtle0747

Hello BP from turtle0747
I forgot to ask. When you do only 60 draws for pairs, is it the last 60 draws from recent draw? Or to you start at the beginning of your history file from way back and do 60 draws?

thanks
turtle0747


I start from current winning draw to 60 past draws for PAIRS and 130 for TRIPS. I have tested this
and found more recent draws give better forcaste of future numbers. Test this yourself by adjusting
the draws and see if the PAIRS and/or TRIPS show up.

Sorry, forgot to ask the layout of your history file. My history file looks like this: 10/23/1999 11 20 23 33 37 47

I also have one with just the numbers.

thanks
turtle0747

WinnaLotto allows you to load dates column, but check the box
"No Key field" from the "Load Results" Tab screen.

-BP
 
Well today's (04/23/08) 5/30 winning draw -> 1 - 3 - 7 - 14 - 19

Winnalotto Predictions -> 1 - 2 - 3 - 7 - 8 - 10 - 11 - 12 - 14 - 16 - 17 - 19 - 20 - 22 - 30

Finally, WinnaLotto's getting all 5 five out of five. Adjusting the past winning history to get
PAIRS and TRIPS has paid off. :beer:

BTW, I tried to get PowerBall history (5/55 + PB 42) and couldn't find more
than 1 year (only 104 draws). This is not enough for perdicting. If someone
can help me find this history, I'll start working on winning numbers ASAP.

Thanks


-BP
 
Bloubal


Qriginated from Bloubal
Hi BP / Springbok,

Thanks for your input, but my mind is with my sister, who's starting her second round of chemo tommorow, all I'm asking is for you to pray for us please.

Thanks

BlouBul


I will keep your sister, you and your family in my prayers. My sister is a cancer
surviver. We are closer than ever and I thank GOD she is still with me.

-BP
 

newb2

Member
black prince said:
Well today's (04/23/08) 5/30 winning draw -> 1 - 3 - 7 - 14 - 19

Winnalotto Predictions -> 1 - 2 - 3 - 7 - 8 - 10 - 11 - 12 - 14 - 16 - 17 - 19 - 20 - 22 - 30

Finally, WinnaLotto's getting all 5 five out of five. Adjusting the past winning history to get
PAIRS and TRIPS has paid off. :beer:

BTW, I tried to get PowerBall history (5/55 + PB 42) and couldn't find more
than 1 year (only 104 draws). This is not enough for perdicting. If someone
can help me find this history, I'll start working on winning numbers ASAP.

Thanks


-BP


Congratulations
 

Springbok

Member
Hi Black Prince

You are certainly getting good results. If you were using Saliu's software with your pool of numbers you would murder your lottery. This weekend I will look closely at your methods.
 

blitzed

Member
bloubul said:
Hi BP / Springbok,

Thanks for your input, but my mind is with my sister, who's starting her second round of chemo tommorow, all I'm asking is for you to pray for us please.

Thanks

BlouBul :cool:

hello bloubul, best o health to your sis! some members of my family battled cancer...most lived way way beyond doctors estimates :)

my grandma died today, but she was diagnosed stage IV cancer out of the blue weeks ago...cancer in a lung, and her brain full of tumors...not unexpected since she smoked since 16, quit at 82, and almost made it to 88 next month. she had ovarian & uterine cancer at 72 but bounced back from that...she cheated death plenty of times and lived a full life.

anyway, I've read that it is very important to eat nutritious foods, especially fruits & vegetables, and unsalted/unroasted nuts...use seasalt, avoid drinking or even cooking with tap water due to the chlorine content...also cut out processed oils & sugars. boosting the body with plenty of fresh raw vegetables is supposed to be one of the best things to help recover from chemo.

cheers!
blitzed:thumb:
 
Hello BP from turtle0747

Hello BP

I am having trouble converting to a 6 number pick. This is what I am getting:
100 OPEN "I",1,"FLAPAIRS.TXT"
110 REM OPEN "I",1,"C:\GWBASIC\TRIPS.TXT"
200 OPEN "I",2,"Book1.TXT"
300 OPEN "O",3,"FLAPRS.TXT"
400 '------------------------------------
500 '- LOAD FILTER TABLE -
600 '------------------------------------
800 DIM A(900),B(900),C(900),D(900),E(900),F(900)
900 N=0
1000 IF EOF(2) THEN 1900
1100 N=N+1
1200 INPUT#2,Z$
1300 GOSUB 8200
1400 A(N)=VAL(MID$(Z$,X1,2)):B(N)=VAL(MID$(Z$,X2,2))
1500 C(N)=VAL(MID$(Z$,X3,2)): D(N)=VAL(MID$(Z$,X4,2))
1600 E(N)=VAL(MID$(Z$,X5,2)):F(N)=VAL(MID$(Z$,X6,2))
1700 '
1800 GOTO 1000
1900 CLOSE 2

Illegal function call in 1400


My history file is like this:

001 02 03 04 05 06

I have tried increasing things to six but to no avail.

thanks
turtle0747
 
Hello BP from turtle0747

Hello BP

I have finally managed to get them running. The only problem is I am only getting 1 or 2 selections for pairs and trips. So there must be something wrong with the 'if' statements. I am looking further into it.

thanks
turtle0747
 

Sidebar

Top