Supposing that in the last X draws the top N% of the most drawn numbers are: a, b, and c.
How to select +/-p of each?
e.g.
In the last 30 draws the top 10% of the most drawn numbers (100% will be all the numbers drawn because it just sort the numbers by their counted appearance from the highest to the lowest), are: 25, 32, 12.
You need to include draws containing these numbers and also draws that contains +/-3 variations of each, like so: 22, 23, 24, [25], 26, 27, 28; 29, 30, 31, [32], 33, 34, 35; 9, 10, 11, [12], 13, 14, 15;
I need to be able to select last X draws, also the percentage, and also +/- p.
Is this already possible?
How to do it, please?
Any help, please?
Thank you in advance!