Quote from promagma:
Wow this software is cool (I am trying out the demo)
He is still pushing that old clunker of an optimizer very hard
http://www.elitetrader.com/vb/showthread.php?s=&postid=2166827&highlight=stratasearch#post2166827
Quote from promagma:
Wow this software is cool (I am trying out the demo)
Quote from promagma:
Wow this software is cool (I am trying out the demo)
Quote from promagma:
Wow this software is cool (I am trying out the demo)
Yep it is very brute force .... slow .... it has been running for several hours but at least I am starting to get meaningful & enlightening results. I have also tried Neuroshell (which seemed useless) and APS (which was useful but not flexible). What would you recommend? I know there is another package out there, but it cost like $40k, I forgot the name.Quote from dave4532:
He has pushed this random optimizer before
http://www.elitetrader.com/vb/showthread.php?s=&postid=2166827&highlight=stratasearch#post2166827
Quote from brownegg:
From an intuitive standpoint you can think of the arcsine law as "the longer you stay in a position, the more you can make". I'm not being flippant, and this is a very important concept.
re: random data, what do you mean by "develop a profitable system?" Random entries can become profitable via exits that themselves could be entries; you simply end up keeping the entries that "agree" with your model. So is your question really "how do I decide when/where/how to exit?"
There are a lot of reasons to think exits are more important than entries, so this is a worthwhile exercise.
Quote from Mike805:
Ok, let's start with a fun probability game.
Just one assumption though:
- The data has a known normal-like distribution.
So, here's the process:
1. Create a random number generator that pulls a "random" number using the distribution we have. Let's call this number "R".
2. If the current value of the of the random stream, call it "C" is greater than R, then the current value is likely to be "high" with a probability of 0.66.
3. Vice versa for "low" values.
How do we create a trading rule out of this? Can we assume binary outcomes?
Mike
Quote from promagma:
Yep it is very brute force .... slow .... it has been running for several hours but at least I am starting to get meaningful & enlightening results. I have also tried Neuroshell (which seemed useless) and APS (which was useful but not flexible). What would you recommend? I know there is another package out there, but it cost like $40k, I forgot the name.
For the purposes of this thread, I think all will agree that randomly optimizing systems on random data (or even price data) is useless. But for my purposes - I am using calculated datasets which may actually contain an edge.Quote from dave4532:
True enlightening will come to you when you understand what randonly optimized systems are and how much damage they can do to you.
Quote from TSGannGalt:
Can you clarify your 2nd rule? What do you mean by "High"?
if (C > R)
{
Rand() > 0.666 ? y = "High" : y = ????
}
