Master Lottery Software

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

I need to see all your GWBASIC code. I believe the GOSBUB 8200 has to
be expanded to parse the input for six numbers from your history file.
You should have way more than 1 or 2 pairs and/or trips.

-BP
 

Springbok

Member
Hi Black Prince

I want to throw this idea at you. If you use the programme using historical highs tou will find that the pair will usually hit within 4 draws. If the pair has not hit within 3 draws then we expect a strike in the 4th draw. Supposing you generate a number of simulated files of say 1000 draws and chase the pair for 4 draws. Again supposing you had 4 files which the pair had not hit within the next 3 draws, then they should hit in the 4th draw. This could give you a pool of 4 pairs with 4 winning numbers in a pool of 8. I will test this idea this weekend.
 
Here's WinnaLotto's picks for 4/18/08 5/30 -> 1 - 2 - 4 - 6 - 8 - 9 - 10 - 13 - 14 -
15 - 20 - 23 - 28 - 30

I'm posting this on 4/17/08 ahead of the drawing date to see if this process
is still getting 5 out of 5. Wish me luck? :)

-BP
 

bloubul

Member
Hi BP
black prince said:
Here's WinnaLotto's picks for 4/18/08 5/30 -> 1 - 2 - 4 - 6 - 8 - 9 - 10 - 13 - 14 -
15 - 20 - 23 - 28 - 30

I'm posting this on 4/17/08 ahead of the drawing date to see if this process
is still getting 5 out of 5. Wish me luck? :)

-BP

For which lotto are you predicting? I want to follow your selecting method. I have complete lotto databases for 181 lotto's around the world, plus all 48 lotto's that had stopped, up to the last draw.

BlouBul :cool:
 

struxo

Member
to all

Hi,
try these 2 filters in WinnaLotto :

#20 = #1
and
#21 > #1
and
#22 > #1


it usually give winning number(s) in next draw
-------------------

#20 < #1
and
#21 > #1
and
#22 > #1

look for numbers which have hights 1 under median

I hope this gonna help. :thumb:
 
Bloubul

Hi BP
Quote:
Originally Posted by black prince
Here's WinnaLotto's picks for 4/18/08 5/30 -> 1 - 2 - 4 - 6 - 8 - 9 - 10 - 13 - 14 -
15 - 20 - 23 - 28 - 30

I'm posting this on 4/17/08 ahead of the drawing date to see if this process
is still getting 5 out of 5. Wish me luck?

-BP

For which lotto are you predicting? I want to follow your selecting method. I have complete lotto databases for 181 lotto's around the world, plus all 48 lotto's that had stopped, up to the last draw.

BlouBul

I must be tired. The drawing date should be 4/25/08 and the Lottery is TreasureHunt.

-BP
 
Hi Struxo


Originated from Struxo
to all
Hi,
try these 2 filters in WinnaLotto :

#20 = #1
and
#21 > #1
and
#22 > #1


it usually give winning number(s) in next draw
-------------------

#20 < #1
and
#21 > #1
and
#22 > #1

look for numbers which have hights 1 under median

I hope this gonna help.

Will try them ASAP

Thanks

-BP
 

bloubul

Member
Hi struxo
struxo said:
Hi,
try these 2 filters in WinnaLotto :

#20 = #1
and
#21 > #1
and
#22 > #1


it usually give winning number(s) in next draw
-------------------

#20 < #1
and
#21 > #1
and
#22 > #1

look for numbers which have hights 1 under median

I hope this gonna help. :thumb:

I must be very stupid, but I cannot get it to work. Is this the full filter.

BlouBul :cool:
 

struxo

Member
to bloubul

Hi, it's easy:

- open WinnaLotto
- open Columns
- click on Add a column
- copy&paste in Criteria
#20 = #1
and
#21 > #1
and
#22 > #1
- mark Filter column
- click Save

do same with the other filter.
Good luck !
 

bloubul

Member
Hi struxo,

Ok I was a bit stupid. How do you calculate the median, how many draws are you using "look for numbers which have hights 1 under median"

BlouBul :cool:
 
Hello BP from turtle0747

Hello BP

Below is the code. I am no longer having any errors. I was having trouble reading the pairs or trips. I could only use A1 and B1 for pairs and A1, B1, C1 for trips. Your code had 5 values for pairs file read.

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

I had to change to this to get it to work:

2900 A1=VAL(MID$(Z$,X1,2)):B1=VAL(MID$(Z$,X2,2))
3000 rem C1=VAL(MID$(Z$,X3,2))



4200 '------------------------------------
4300 '- COUNT PAIRS -
4400 '------------------------------------
4500 N1=0:N2=0:N3=0
4505 REM USING N DOES FULL FILE SEARCH
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) OR A1=F(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) OR B1=F(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
6505 REM USING N DOES FULL FILE SEARCH
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) OR A1=F(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) OR B1=F(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) OR C1=F(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
 

bloubul

Member
Hi BP / turtle0747

I have an Excel spreadsheet with a VB script to do, Pairs, Trips, Quads and Pentas.

BlouBul :cool:
 
Hello BlouBul from turtle0747

bloubul said:
Hi BP / turtle0747

I have an Excel spreadsheet with a VB script to do, Pairs, Trips, Quads and Pentas.

BlouBul :cool:


Hello BlouBul

Be glad to give it a try. I have a 6 number lotto. Will it work? How do I get it from you?

Thanks
turtle0747
 

bloubul

Member
Hi turtle0747

Give me a site where I can upload it for you. ( yes it will work, it is for a 6/49 lotto)

BlouBul :cool:
 
Hello BlouBul

bloubul said:
Hi turtle0747

Give me a site where I can upload it for you. ( yes it will work, it is for a 6/49 lotto)

BlouBul :cool:

Hello BlouBul

I don't have a site. Hopefully someone will read this and can give us one. We are not allowed to give out email.

turtle0747
 
Hello BlouBul

turtle0747 said:
Hello BlouBul

I don't have a site. Hopefully someone will read this and can give us one. We are not allowed to give out email.

turtle0747

There is one out there called Mediafire.
 
Hello bloubul from turtle0747

Hello bloubul

Got it! Will take some time decipering the language but format is standard enough to understand. Just have to get my history file entered in. Am using BP's winnalotto instructions to use the pairs and trips. This is for FLA lotto 6/53.

thanks
turtle0747
 

struxo

Member
hi bloubul,
it's all in Winnalotto programe. Just load your database and click on singles,pairs or trips. First column in programe is median for every number,pair or trips.
You have Winnalotto downloaded ,right?
 
Hello BP from turtle0747

black prince said:
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.



You can change them since they are basic test files.



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.



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



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

Hello BP

I am having trouble with the My_Columns filter. It looks like this:

Filters 1.0
N+x>=H
Rebal Median
Detailed
Skip 1
Skip 2
Skip 3
Skip 4
Skip 5
Skip 6

It says "N+x>=H is not a valid integer number"

Any help?
 

Sidebar

Top