Novità

Per Ilegend o Disaranno Secondo voi è fattibile

X Solare e Alien , lo script elabora storicamente l'esito di qualsiasi numero che arriva al ritardo 55 cioè quei numeri che arrivano a far parte del 4° settore.
Non sono presenti altri ritardi dello stesso settore per evitare di valutarli tutti contemporaneamente, creando false illusioni e notevole confusione nella valutazione. (lo script comunque dà anche, se corretto adeguatamente la possibilità di vedere contemporaneamente l'intero gruppo dei numeri del 4° o altri settori).
Buon divertimento
 
cio che dice il sig. claudio8
ruota = 1 'CInt(InputBox(" Quale ruota elaboro? 1....11 ",,1)) sostituire con ruota = CInt(InputBox(" Quale ruota elaboro? 1....11 ",,1))
 
Ciao disaronno, non credo vada bene in quanto i numero estratti del 10elotto sono 20. Penso bisogna rivedere un pò la distribuzione dei ritardi in merito ai settori.
 
grazie sig. disaronno le vorrei chiedere una piccola modifica se si possono riportare in fondo alla tabella i soli numeri presenti nel 2 settore
 
solare;n1904578 ha scritto:
Ciao Alien, per quel che ne so i numeri più probabili ritengo siano effettivamente quelli del settore 4.
Comunque da non trascurare il fattore frequenza infatti io tendo a selezionare si i numeri del settore 4 però che abbiano una regolare frequenza nelle ultime 180 estrazioni, cioè quelli che nel periodo abbiano una frequenza attorno a 10.
Ogni altro suggerimento è sempre ben gradito.
GRAZIE.

VISTO CHE ADESSO A BARI PER ESEMPIO VI E' IN GIOCO IL N°71........MANCA UN PARTICOLARE VEDERE CON QUALI NUMERI SI è ABBINATO CON MAGGIOR FREQ....PER FARE IL COLPACCIO,IL 71 DIVERREBBE UN NUMERO SPIA........SI POTEBBE FARE ? DOMANDO AI MAESTRI DI SCRIPT?
 
Ultima modifica:
Alien.;n1910236 ha scritto:
GRAZIE.

VISTO CHE ADESSO A BARI PER ESEMPIO VI E' IN GIOCO IL N°71........MANCA UN PARTICOLARE VEDERE CON QUALI NUMERI SI è ABBINATO CON MAGGIOR FREQ....PER FARE IL COLPACCIO,IL 71 DIVERREBBE UN NUMERO SPIA........SI POTEBBE FARE ? DOMANDO AI MAESTRI DI SCRIPT?

Alien, ti consiglio di prendere un qualsiasi scrip che cerca i frequenti dopo l'uscita del numero spia e modifica la riverca in frequenti insieme (nella stessa estrazione) al n° spia.
 
claudio8;n1910462 ha scritto:
Alien, ti consiglio di prendere un qualsiasi scrip che cerca i frequenti dopo l'uscita del numero spia e modifica la riverca in frequenti insieme (nella stessa estrazione) al n° spia.

è giusto......non ci avevo pensato..vedo se trovo qualche cosa sugli script che ho su spaziometria.....ciao:p
 
Ultima modifica:
bella l'idea di Alien....#58 speriamo che qualche amico possa modificare lo script
 
Ultima modifica:
Baikal, vi passo questo scritto tempo fa, credo da Ramco.

Codice:
'
' elenca ambate e ambi più frequenti su ruota e tutte coestratti con la spia anche su posizione specifica

Sub Main()
    Dim p
    Dim ru(2) : Dim ru1(10)
    Dim n(90,2) : Dim ambi(4005,5) : Dim nn(2):Dim ambi1(4005,5) : Dim nn1(2)

    r =      CInt(InputBox("SU CHE RUOTA ?",,1))
    ambata = CInt(InputBox("QUALE NUMERO ?",,90))
    'p = CInt(InputBox("QUALE POSIZIONE ?",,1)) '* escludere questa riga per operare su tutte le posizioni di estratto
    
    ee       = CInt(InputBox("QUANTE ESTRAZIONI CONTROLLO?",,150))
    eescluse = CInt(InputBox("QUANTE ESTRAZIONI ESCLUDO DAL CONTROLLO?",,0))
                                            'c = CInt(InputBox("QUANTI COLPI?",,1))
    lista    = CInt(InputBox("QUANTE RIGHE IN ELENCO AMBATE ? ",,10))
    el_TUTTE = CInt(InputBox("QUANTE RIGHE IN ELENCO AMBI A TUTTE ?",,10))
    
    casi = 0 ' contatore casi
    co = 0 ' contatore
    fin = EstrazioneFin - eescluse
    ini = EstrazioneFin - ee
    For es = ini To fin

    Messaggio " Cosetratti del :" & ambata & " a " & FormatSpace(NomeRuota(r),4,- 1) & " Estrazione : " & es
        For p = 1 To 5          '* escludere questa riga per operare su specifica posizioni di estratto

            a = Estratto(es,r,p)
            If a = ambata Then         'se a = numero Impostato allora
                casi = casi + 1         ' conta casi
                Scrivi CInt(casi) & ") " & GetInfoEstrazione(es) & "  " & SiglaRuota(r) & " " & StringaEstratti(es,r) & " - " & FormatSpace((EstrazioneFin - es),4,1)
                If ess > fin Then ess = fin End If        'ess = es + c ' estrazione in analisi  + colpi
                'If ess > fin Then ess = fin End If '  se   ess (estrazione selezionata)> fin (EstrazioneFin) allora ess= fin
                    For x = es To es     ' mantiene la ricerca nell'estrazione selezionata
                        'For x = es + 1 To ess
                        cc = 0
                        For pp = 1 To 5
                            d = Estratto(x,r,pp)
                            n(d,1) = d ' crea la matrice
                            n(d,2) = n(d,2) + 1
                            cc = 1
                        Next
                    Next
                    co = 0
                    For x = 1 To 89 '90
                        For y = x + 1 To 90
                            co = co + 1
                            nn(1) = x : nn(2) = y : ru(1) = r
                            ambi(co,1) = co : ambi(co,2) = x : ambi(co,3) = y
                            yy = SerieFreq(es,es,nn,ru,2)
                            ambi(co,4) = ambi(co,4) + yy
                            If yy > 0 Then
                                ambi(co,5) = ambi(co,5) + 1
                            Else
                                ambi(co,5) = ambi(co,5)
                            End If
                            nn1(1) = x : nn1(2) = y : ru1(1) = 11
                            ambi1(co,1) = co : ambi1(co,2) = x : ambi1(co,3) = y
                            xx = SerieFreq(es,es,nn1,ru1,2)
                            ambi1(co,4) = ambi1(co,4) + xx
                            If xx > 0 Then
                                ambi1(co,5) = ambi1(co,5) + 1
                            Else
                                ambi1(co,5) = ambi1(co,5)
                            End If
                        Next
                    Next
                End If
            Next        '* escludere questa riga per operare su specifica posizioni di estratto

        Next
        Scrivi
        Scrivi "Analisi dal " & DataEstrazione(ini) & " al " & DataEstrazione(Fin) & " - " & CInt(ee) & " estrazioni",1,1
        
        Scrivi "NUMERO SPIA " & CInt(ambata) & " su " & NomeRuota(r) & " in tutte le posizioni",1

        'Scrivi "NUMERO SPIA " & CInt(ambata) & " su " & NomeRuota(r) & " al " & p-1 & "° estratto",1
        Scrivi "-----------------------------------"
        Scrivi "Coestratti nei " & casi & " casi esaminati",1
        OrdinaMatrice n,- 1,2
        OrdinaMatrice ambi,- 1,5
        OrdinaMatrice ambi1,- 1,5

        ColoreTesto 2
        Scrivi GetInfoEstrazione(fin) & "  " & SiglaRuota(r) & " " & StringaEstratti(fin,r) & " | estrazione di controllo esito"
        ColoreTesto 1
        Scrivi
        Scrivi "Nu.Ruota | Ambi Ruota | Ambi a Tutte"
        ColoreTesto 2
        Scrivi "  N° Fr  |  Ambo Fr   | Ambo Fr"
        ColoreTesto 0
        

        For x = 1 To lista
            riga = " " & Format2(n(x,1)) & "..." & Format2(n(x,2)) & " | " & Format2(ambi(x,2)) & "-" & _
            Format2(ambi(x,3)) & "..." & Format2(ambi(x,5)) & " | " & _
            Format2(ambi1(x,2)) & "-" & Format2(ambi1(x,3)) & "..." & ambi1(x,5)
            Scrivi riga
            riga = ""
        Next
        Scrivi "*****| Coestratti abbinabili a Ruota  |*****"
        ColoreTesto 0

        For x = 1 To lista ' coestratti in elenco
                ReDim nz(90)
                ReDim ruote(1)
                ruote(1) = r
                nz(1) = n(x,1)
                
                If VerificaEsito(nz,ruote,(fin + 1),1,,,RetEsito,RetColpi,RetEstratti,RetIdEstr) Then
                    ColoreTesto 2
                    rige = "" & Format2(n(x,1)) & "......" & Format2(n(x,2)) & " | " & FormatSpace(CInt(n(x,2)/casi*100),4,1) & "% |" & _
                    FormatSpace((RetColpi),2,1) & "° colpo| " & RetEstratti & " |" & StringaEstratti(RetIdEstr,r) & "|"
                    Scrivi rige
                Else
                    ColoreTesto 0
                    rige = "" & Format2(n(x,1)) & "......" & Format2(n(x,2)) & " | " & FormatSpace(CInt(n(x,2)/casi*100),4,1) & "% | -  -  - | "
                    Scrivi rige
                End If
                rige = ""
            Next

        Scrivi "**********| Ambi a Tutte  |************************"

        ColoreTesto 0
            For x = 1 To el_TUTTE
                ReDim nz(90)
                ReDim ruote(10)
                ruote(1) = 1
                ruote(2) = 2
                ruote(3) = 3
                ruote(4) = 4
                ruote(5) = 5
                ruote(6) = 6
                ruote(7) = 7
                ruote(8) = 8
                ruote(9) = 9
                ruote(10) = 10
                nz(1) = ambi1(x,2)
                nz(2) = ambi1(x,3)
                
                If VerificaEsito(nz,ruote,(fin + 1),2,,,RetEsito,RetColpi,RetEstratti,RetIdEstr) Then
                    ColoreTesto 2
                    
                    rige = "" & Format2(ambi1(x,2)) & "-" & Format2(ambi1(x,3)) & "..." & Format2(ambi1(x,5)) & " | " & FormatSpace(CInt(ambi1(x,5)/casi*100),4,1) & "% |" & _
                    FormatSpace((RetColpi),2,1) & "° colpo| " & RetEstratti '& " |"& StringaEstratti(retidEstr,ruote,".")& "|"
                    Scrivi rige
                Else
                    ColoreTesto 0
                    rige = "" & Format2(ambi1(x,2)) & "-" & Format2(ambi1(x,3)) & "..." & Format2(ambi1(x,5)) & " | " & _
                    FormatSpace(CInt(ambi1(x,5)/casi*100),4,1) & "% | -  -  - | "
                    
                    Scrivi rige
                End If
                rige = ""
            Next
            Scrivi String(44,"*")
            Exit Sub
        
End Sub

Buon divertimento
 
Ultima modifica:
Sig. Claudio8 la ringrazio in vertá non saprei come utilizzare lo scrpit io cercavo la script che mike58 aveva creato x 10elotto in questo post x superenalotto
 
Buongiorno,
In attesa di disaronno, le posto il listato modificato per il SuperEnalotto.
Ho aggiunto i numeri da del settore 2,.

Codice:
Sub Main
    'http://forum.lottoced.com/forum/lottoced/area-download/1903619-per-ilegend-o-disaranno-secondo-voi-%C3%A8-fattibile/page3
    Dim N(01),T,V,Tt
    Ini = 1
    fin = EstrazioniArchivioSE
    Scrivi " Statistica dal " & DataEstrazioneSE(Ini) & " al " & DataEstrazioneSE(Fin) & " ",1,0,6
    Scrivi" ****** Per SuperEnalotto ******** ",1,0,3
    Scrivi " Totale Estrazioni analizzate " &(EstrazioniRicercaSE) & " ",1,- 1,4
    Scrivi
    Scrivi "Per baikal By Mike58 Mod.disaronno Vers. SuperEnalotto",1,,,1,2,,1
    Scrivi
    T = Array(T,"Num"," Ritardo ","1 Sett 01-15"," 2 Sett 16-30 "," 3 Sett 31-45 "," 4 Sett 46-60 "," 5 Sett 61-75 "," 6 sett 76 > 100 ","Freq 15")
    Call InitTabella(T,1,,3,5)
    For x = 01 To 90
        N(01) = x
        Call StatisticaFormazioneSE(N,1,Rit,,,,Ini,fin)
        sf = SerieFreqSE(fin - 15,fin,N,1)
        V = Array(V,N(1),Rit,Set1,Set2,Set3,Set4,Set5,Set6,sf)
        If Rit > 000 And Rit <= 015 Then V(03) = 15 - Rit
        If V(03) = 00 Then V(03) = " -- "
        If V(03) <> " -- " Then s1 = s1 + 01
        If Rit > 016 And Rit <= 030 Then V(04) = 30 - Rit
        If V(04) = 00 Then V(04) = " -- "
        If V(04) <> " -- " Then s2 = s2 + 01
        If Rit > 031 And Rit <= 045 Then V(05) = 45 - Rit
        If V(05) = 00 Then V(05) = " -- "
        If V(05) <> " -- " Then s3 = s3 + 01
        If Rit > 046 And Rit <= 060 Then V(06) = 60 - Rit
        If V(06) = 00 Then V(06) = " -- "
        If V(06) <> " -- " Then s4 = s4 + 01
        If Rit > 061 And Rit <= 075 Then V(07) = 75 - Rit
        If V(07) = 00 Then V(07) = " -- "
        If V(07) <> " -- " Then s5 = s5 + 01
        If Rit > 076 And Rit <= 100 Then V(08) = Rit - 75
        If V(08) = 00 Then V(08) = " -- "
        If V(08) <> " -- " Then s6 = s6 + 01
        Call AddRigaTabella(V,,,3,,"cambria")
        Call SetColoreCella(02,3,1)
    Next
    Tt = Array(Tt,"Totali"," x settori ",s1,s2,s3,s4,s5,s6,"Freq 15")
    Call AddRigaTabella(Tt,7,,3,5)
    Call scegliTabella
    ReDim NN(01)
    For x1 = 01 To 90
        NN(01) = x1
        Call StatisticaFormazioneSE(NN,1,Rit1,,,,Ini,fin)
        If Rit1 > 016 And Rit1 <= 030 Then Scrivi StringaNumeri(NN)
    Next
End Sub
Function scegliTabella()
    ReDim Voci(02)
    Voci(01) = "Tabella Normale"
    Voci(02) = "tabella Ordinabile"
    scegliTabella = ScegliOpzioneMenu(Voci,01,"seleziona tabella")
    If scegliTabella = 01 Then Call CreaTabella()
    If scegliTabella = 02 Then Call CreaTabellaOrdinabile
End Function
 
Ultima modifica di un moderatore:
sig. magia c'è un errore se lancio il script il 43 ha due ritardi [TABLE="border: 1, cellpadding: 0, cellspacing: 0"]
[TR]
[TD="bgcolor: #0000ff, align: center"]Num [/TD]
[TD="bgcolor: #0000ff, align: center"]Ritardo [/TD]
[TD="bgcolor: #0000ff, align: center"]1 Sett 01-15 [/TD]
[TD="bgcolor: #0000ff, align: center"]2 Sett 16-30 [/TD]
[TD="bgcolor: #0000ff, align: center"]3 Sett 31-45 [/TD]
[TD="bgcolor: #0000ff, align: center"]4 Sett 46-60 [/TD]
[TD="bgcolor: #0000ff, align: center"]5 Sett 61-75 [/TD]
[TD="bgcolor: #0000ff, align: center"]6 sett 76 > 100 [/TD]
[TD="bgcolor: #0000ff, align: center"]Freq 15 [/TD]
[/TR]
[/TABLE]
[TABLE="border: 1, cellpadding: 0, cellspacing: 0"]
[TR]
[TD="bgcolor: #ffffff, align: center"]43 [/TD]
[TD="bgcolor: #00ff00, align: center"]44 [/TD]
[TD="bgcolor: #ffffff, align: center"]-- [/TD]
[TD="bgcolor: #ffffff, align: center"]-- [/TD]
[TD="bgcolor: #ffffff, align: center"]1 [/TD]
[TD="bgcolor: #ffffff, align: center"]16 [/TD]
[TD="bgcolor: #ffffff, align: center"]-- [/TD]
[TD="bgcolor: #ffffff, align: center"]-- [/TD]
[TD="bgcolor: #ffffff, align: center"]0 [/TD]
[/TR]
[/TABLE]
 
Ultima modifica:

Ultima estrazione Lotto

  • Estrazione del lotto
    giovedì 23 gennaio 2025
    Bari
    86
    50
    83
    38
    78
    Cagliari
    11
    36
    52
    31
    74
    Firenze
    56
    59
    86
    27
    84
    Genova
    03
    61
    53
    11
    38
    Milano
    13
    14
    79
    87
    47
    Napoli
    21
    90
    48
    55
    37
    Palermo
    56
    46
    59
    02
    53
    Roma
    74
    13
    07
    38
    77
    Torino
    27
    54
    62
    36
    81
    Venezia
    09
    14
    69
    28
    62
    Nazionale
    32
    73
    27
    11
    51
    Estrazione Simbolotto
    Bari
    36
    27
    19
    08
    24
Indietro
Alto