I'm afraid I don't know much about coding in C++ and gpu optimization etc. But in the past, others have commented to me that I would benefit from cuda/gpu utilization.
Java has special operators to deal with critical, financial transaction math where maximum precision is needed. Perhaps C++ has the same.
I only do EOD trades now, but I've always suspected that I wouldn't be able to use the algo to trade on a less than 30 min. basis even with optimal code/hardware due to the computational workload.
I ultimately would like to code an advanced, single, multi-parameter kNN...without additional NN's. It would require even more computer resources, however. It would output percentage or absolute values rather than only directions.
You're the first I heard doing something similar to me. Do you know of others doing the same? What's your rough topology? Mine currently is kNNs --> NNs --> NN
Thanks.
Dont know others but most likely more people have been working on similar ideas as it seem very straigtfoward approach, but in details im sure we have many differences that change outcome.
In past computers may have been too slow to implement something similar.
Dont know about topology´s, but can describe how it operates.
Not sure if my algo classifies under neural net as idk much about NNs yet and it based on parameters, but it should go under machine learning at least.
Similarity seems to be in the idea of using patterns from past by similar concepts like in your previous posts described.
About my implementation.
For timeframe using 10,20 minutes ,but much faster for backtesting 1h and 2h.
Algo works by scanning constantly for settings.
If better set found by comparing to previous output parameters then tester threads get new set and same process is repeated.
New settings are changing way for scanning patterns and filtering results.
With new data learning period for settings is shifted foward.
For fighting against over optimization algo uses lower gaps instead of just going for maximal past profit.
Is there some other ideas to test also?