Quote from Runningbear:
Yeah that's the problem. I know the relative extremes of each of the four variables in isolation, but not the optimal values in combination for best trade performance. It's pretty easy when dealing with two variable to use set logic, but once you add the third and fourth variable, it gets tricky. For example, three variables at 80% of their extreme, may give better trade signals than two variables at 100% of their extreme. This is what I need in a system to do - identify and weight the value of each variable in combination. Such a system may reveal that one of the four variables doesn't add anything at all, and allow it to be eliminated. In other words, I need something that can find hidden patterns in the darkness.
Runningbear
Quote from gtor514:
It sounds to me you need to look into a Genetic Algorithm (GA's) and not NN's.
If you can come up with an objective/fitness function with your variables, the variables can be solved very easily.
Another method and my personal favorite method is the use of Particle Swarms (PSO's). They are easy to implement and their operation when attemting to converge on a solution can provide insight to your problem.
Quote from gtor514:
It sounds to me you need to look into a Genetic Algorithm (GA's) and not NN's.
If you can come up with an objective/fitness function with your variables, the variables can be solved very easily.
Another method and my personal favorite method is the use of Particle Swarms (PSO's). They are easy to implement and their operation when attemting to converge on a solution can provide insight to your problem.
Quote from Stoxtrader:
How would the GA be implemented? Split each variable into pieces? In this case, only 4 variables, a brute force approach might be fine. It would take more time than a genetic algorithm, however it would still run in seconds, unless there is tons and tons of data to go through. How much data are we talking about here?
Quote from Runningbear:
gtor514.
I'm not really familiar with particle swarms. Do you have any references that can help bring me up to speed?
Runningbear