MattZ
Sponsor
MotiveWave has full strategy backtesting features and a free Java SDK for programming your own custom strategies.
Good to know. We have requests for Java once in a while.
MotiveWave has full strategy backtesting features and a free Java SDK for programming your own custom strategies.
Thanks everyone, this is extremely helpful. I'm very new to trading so could you give a quick step by step summary as to where you first get the data to then backtest your strategies? Am I right in thinking, it's all already within the backtest program? So for instance, if I want to look at all tickers from floats under $100m over the past 18 months that have a share price of $25> and the share price rose by 200% or more within any 7 day period before falling by at least 50% I just need to enter these parameters in the backtesting program? I don't need to import the data in from anywhere right? E.g. my broker platform?
so what would be the final manual step to get historic data according to my parameters, as you are right, scanners only give a real time scan of the market and not historic so where would I go for that info?
%%As per the title, what software/ website do you use?
I would approach things as follows:
Hope this helps,
- create a coarse universe, which should include all stocks you might be interested in
- make sure you have all the data available. Price shouldn't be your biggest issue, fundamentals might be more complicated. Possibly, you can use a criterion that is derived from daily traded dollars, as the product of volume and price instead?
- run a simulation, taking note of every stock meeting your criteria, and the resulting time frames of interest. Dump this list at the end of the simulation.
- run more simulations, using the information created in the step before
Cheers,
Felix