1. Welcome to the #1 Gambling Community with the best minds across the entire gambling spectrum. REGISTER NOW!
  2. Have a gambling question?

    Post it here and our gambling experts will answer it!
    Dismiss Notice
  3. Discussions in this section are assumed to be EV- as they are outside of the Advantage Play section. For EV+ discussions, please visit the Advantage Play section.
    Dismiss Notice

Roulette 2024 Point of view

Discussion in 'Roulette Forum' started by Sharptracker, Jan 8, 2024.

  1. Sharptracker

    Sharptracker Well-Known Member

    Joined:
    Apr 12, 2018
    Likes:
    290
    Location:
    Belgium
    Hey everyone, best wishes for 2024... may the variance be on your side...

    I am opposed to the idea of beating roulette with a mathematic system (any math that is already known), still recently i have seen some amazing results that i didn t observe with any other system and that i can't really explain.

    All started with a Fourier Transform that allows you to observe the sequence of numbers as a frequency signal.

    I have some code that AI built to make all calcullations running under Python, in my opinion there s many axes to search once the Fourier transform have been done...

    I explored a lot and finally kept 2 axes but you can find much more...

    If anyone is interested i ll share...
     
    Last edited: Jan 8, 2024
  2. Lsilva300

    Lsilva300 New Member

    Joined:
    Jun 23, 2024
    Likes:
    0
    Occupation:
    Jogador
    Location:
    São Paulo sp
    Mentiroso. Mais uma conversa falsa para vender curso e mentira, você é um mentiroso ganancioso
     
    Last edited: Jul 9, 2024
  3. Chrono

    Chrono Active Member

    Joined:
    May 29, 2024
    Likes:
    26
    Location:
    Canada
    Yeah I'd love to hear more. I test frequently in python and have been playing with the idea of frequencies as well.
     
  4. GaryG

    GaryG Active Member

    Joined:
    May 27, 2021
    Likes:
    127
    Location:
    New York
    I find it interesting. Although I believe turbo has shown math beats a math game.
     
  5. Sharptracker

    Sharptracker Well-Known Member

    Joined:
    Apr 12, 2018
    Likes:
    290
    Location:
    Belgium
    As you'd like to hear more here's an idea that i saw very interesting results with. Let's call it clusters.
    I grab last 500 spins and treat in 37 binary variable, I apply then a fft, apply a filter +3sd to select the highest ammlitude Peak and finally see what numbers are on the same frequencies. I Can build then small groups and as soon as i see one of them i play the group. I also rather play a group which IS in highest frequencies...
     
    Last edited: Sep 10, 2024
  6. joe croupier

    joe croupier Member

    Joined:
    Feb 29, 2024
    Likes:
    7
    Occupation:
    web stuff n roulette
    Location:
    uk
    give me the code please, i'll add it to my site [removed, pay to advertise]
     
  7. joe croupier

    joe croupier Member

    Joined:
    Feb 29, 2024
    Likes:
    7
    Occupation:
    web stuff n roulette
    Location:
    uk
    quick to judge son, relax, you may be wrong.
     

  8. Sharptracker

    Sharptracker Well-Known Member

    Joined:
    Apr 12, 2018
    Likes:
    290
    Location:
    Belgium
    Here it is mate:

    import numpy as np
    from scipy.fft import fft
    spins = [ 31, 6, 21, 15, 28, 27, 13, 8, 5, 28, 35, 12, 17, 31, 3, 31, 8, 35, 36, 12, 20, 26, 25, 36, 26, 11, 3, 33, 18, 10, 26, 0, 31, 8, 31, 18, 31, 14, 16, 33, 17, 20, 13, 24, 34, 36, 25, 12, 1, 24, 3, 19, 0, 32, 16, 19, 36, 13, 20, 2, 28, 4, 23, 2, 0, 33, 21, 21, 12, 30, 33, 21, 26, 20, 2, 8, 20, 24, 1, 17, 26, 30, 0, 1, 10, 7, 19, 1, 14, 11, 5, 0, 3, 18, 29, 9, 33, 8, 0, 8, 2, 33, 30, 4, 31, 35, 21, 15, 2, 15, 1, 18, 4, 16, 25, 4, 3, 25, 27, 34, 33, 17, 4, 7, 24, 12, 15, 6, 20, 23, 31, 5, 28, 19, 14, 31, 11, 23, 25, 26, 21, 32, 5, 30, 1, 22, 12, 30, 11, 7, 1, 7, 35, 34, 33, 5, 9, 20, 10, 32, 10, 33, 17, 18, 8, 2, 7, 35, 20, 8, 20, 23, 7, 0, 10, 15, 23, 19, 24, 31, 0, 6, 29, 17, 26, 31, 34, 15, 28, 1, 30, 5, 13, 20, 19, 22, 26, 14, 10, 4, 0, 36, 27, 16, 9, 33, 31, 27, 26, 8, 29, 26, 11, 7, 20, 33, 13, 18, 7, 11, 28, 25, 20, 3, 17, 19, 30, 1, 8, 13, 29, 8, 11, 5, 35, 24, 36, 22, 22, 17, 12, 2, 9, 5, 12, 36, 13, 17, 9, 30]
    # Convertir les numéros en signaux binaires
    binary_signals = []
    for num in range(37):
    binary_representation = [1 if spin == num else 0 for spin in spins]
    binary_signals.append(binary_representation)
    # Calculer la transformée de Fourier pour chaque numéro
    fft_results = []
    for num in range(37):
    signal = binary_signals[num]
    fft = np.fft.fft(signal)
    fft_results.append(fft)
    # Trouver les deux fréquences les plus importantes (à l'exception de la fréquence 0)
    top_frequencies = []
    for num in range(37):
    fft = fft_results[num]
    magnitudes = np.abs(fft)
    frequencies = np.fft.fftfreq(len(signal))
    non_zero_frequencies = frequencies[1:] # Exclure la fréquence 0
    top_indices = np.argsort(magnitudes[1:])[::-1][:2] # Indices des deux amplitudes les plus fortes
    top_freqs = non_zero_frequencies[top_indices]
    top_frequencies.append(top_freqs)
    # Regrouper les numéros en fonction de leurs fréquences les plus importantes
    groups = {}
    for num in range(37):
    freqs = top_frequencies[num]
    for freq in freqs:
    if freq not in groups:
    groups[freq] = [num]
    else:
    groups[freq].append(num)
    # Afficher les groupes de numéros associés aux deux fréquences les plus importantes
    for freq, nums in groups.items():
    print(f"Fréquence la plus importante {freq}: {nums}")
     
  9. Sharptracker

    Sharptracker Well-Known Member

    Joined:
    Apr 12, 2018
    Likes:
    290
    Location:
    Belgium
    If you execute this code you'll get results like:

    Fréquence la plus importante 0.4365482233502538: [0]
    Fréquence la plus importante -0.4365482233502538: [0]
    Fréquence la plus importante 0.22335025380710657: [1]
    Fréquence la plus importante -0.22335025380710657: [1]
    Fréquence la plus importante -0.27918781725888325: [2, 19, 23]
    Fréquence la plus importante 0.27918781725888325: [2, 19, 23]
    Fréquence la plus importante 0.42639593908629436: [3, 14, 16]
    Fréquence la plus importante -0.42639593908629436: [3, 14, 16]
    Fréquence la plus importante -0.31979695431472077: [4, 31]
    Fréquence la plus importante 0.31979695431472077: [4, 31]
    Fréquence la plus importante 0.16751269035532992: [5, 29]
    ... Etc etc

    As you can see here 3/14/16 are on the same frequency and that frequency is the highest one so as soon as one of them Come out i play the group.
     
  10. Sharptracker

    Sharptracker Well-Known Member

    Joined:
    Apr 12, 2018
    Likes:
    290
    Location:
    Belgium
    Here s something else i noticed:

    Let's Say you enter a 500 spins serie and apply a fft that ll list and show for all numbers the lowest frequency to the highest ( dominant frequency).

    Now you enter a 501 spin and re execute. The frequencies will change. What s very interesting here is to add numbers step by step and to observe a number from the low frequencies becoming suddenly a top number with a highest frequency. It's like the fft anticipate the number that will Come out.

    Thé code IS on my old comp but i Can share it soon if you'd like
     
    Last edited: Sep 11, 2024
  11. atrox23

    atrox23 Member

    Joined:
    Feb 9, 2022
    Likes:
    18
    Location:
    greece
    Very interesting observation Sharptracker. Can this be done for a smaller sample, I know as enter a table I can grab last 500!
    Thank you.
     
  12. Sharptracker

    Sharptracker Well-Known Member

    Joined:
    Apr 12, 2018
    Likes:
    290
    Location:
    Belgium
    If you want i Can show you how to grab those 500 numbers in 2 minutes.
     
  13. atrox23

    atrox23 Member

    Joined:
    Feb 9, 2022
    Likes:
    18
    Location:
    greece
    I can do that, thank you. Does it react differently if we add lesser or it a good base?
     
  14. Sharptracker

    Sharptracker Well-Known Member

    Joined:
    Apr 12, 2018
    Likes:
    290
    Location:
    Belgium
    250/300 might even be better to play with the fresh conditions of the day. The Idea behind IS a spin IS just the result of many différent parameters combined ( like forecast ) and i tend to think by playing the 250/300 we're playing the last 7-8h conditions of the day.

    Pay also attention to the position on the wheel of your numbers because i have noticed most of the Time a spécial relation betweens sectors due to the conditions of the day.
     

  15. Sharptracker

    Sharptracker Well-Known Member

    Joined:
    Apr 12, 2018
    Likes:
    290
    Location:
    Belgium
    If you meant the second observation i guess the more spins you have the better simply because the fft will spot many differents cycles for each numbers. But it's really strange to see them switching from low frequencies to high frequencies without appearing and finally Come out quickly within few spins, it's like the fft anticipated it.
     

Share This Page