Dimster
All the strings have different ratios of 0's and 1's. Some work out to 90/10 and your correct that
playing the value with the highest ratio in these cases would produce the most hits. I am looking
for something that can take into account several factors such as runs of 0's or 1's, frequency, etc.
and then make it's prediction based on these factors.
STxAxTIC
My manual analysis uses Markov chains and allows searching for strings within the chain. See the
attached picture
These work well enough, it's the time that it takes, that's the problem. After 10 or so analysis my mind
is worn out so to say processing the data. I have a automated version of the Markov string analysis but
it needs some help or a sort of a decision tree to make the final prediction.
No one piece of information is good enough to base a prediction on, I tried coding a decision tree with no
success as it too needs some sort of learning algorithm that combines the data into experts before
making it's choices.
In the attached image, looking at the top string of data, you can see the first 4 values highlighted in
blue. The tool searches the entire string looking for an exact match. Whenever if finds a match it
records the value preceding the selected pattern. The second string shows the results of the search
Only a small portion of the main data string is visible in the tools window. The second string and the graph at the bottom show the results of the search string. You can also see a simple set of statistics for the returned results.
Shows (0)= the number of times 0 appears within the results
Out = it's last appearance
Avg= average
L/R = longest run
Probability
STC = short trend shows
Exp = the number of times the value is expected to show in a shortened data set. It's calculated
using the overall probability * the short trend. I think stc is set to 20. You can see by this value
how well the results track with the overall. If this value is different, ie, higher or lower than it's
expected value than it;s a good indicator to include in the prediction process.
The values are displayed for both 0's and 1's. The color graph is there because it's easier on the eyes
than looking at the 0&1's string.
One approach would be to increase the number of statistical observations and then code some
sort of a decision tree to make the final choice. The values shown are not sufficient so more
are needed. In the automated tool I am building all these plus others are planned as part of
the final prediction.
The tool in the picture allows for adding and subtracting digits in the search string, if a person
only knew when to stop, LOL.
https://i.postimg.cc/NjvwW9KL/markov-analysis.png Thanks Again
R1