Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

I am interested in stochastically modeling whether the market is likely to go on in the same direction(trend), or reverse and head back. This is all for intraday purposes, next 1-2 ticks kind of strategy with 30sec - 3 mins holding times. How can I attack this problem? Where do I start?

share|improve this question
You might want to look at the behavioral finance literature of fundamentalists and chartists in markets. Especially the papers where they apply it to actual data. – user13253 Sep 10 '12 at 4:27
Thanks, anything more concrete? – Viktor Sep 10 '12 at 5:39

5 Answers

Here's an R model of "trending and reversing":

#Plot a random time series
x <- cumsum(rnorm(1000))
plot(x, type="l", main="Trend versus Reverse")

enter image description here Notice that you'll always get trending and reversing, 100% of the time (run the code over and over). And, those so-called "trends" and "reversals" were generated from a random sequence. So, how can you tell the difference between "trending" and "reversing" that's just random, versus "trending" and "reversing" that is due to some trading situation? If you think about it for a while, you'll come to the conclusion that you can't. The whole concept is a waste of time (and it's not just trends/reversals that are a waste of time).

share|improve this answer
I wouldnt jump to the conclusion so quick, even if you can prove that stock price time series is i.i.d (which is obviously not), it still doesnt mean you cannot develop better investment strategy that beat the market with probability one. – user55647 Jan 22 at 6:00
@user55647 - The question was about trends/reversals. All I can say is, if you're trading some trend/reversal scheme and you can't tell the difference in a so-called "meaningful" trend/reversal versus a random trend/reversal, then the scheme, by definition, is worthless. The same argument holds for trading schemes based on some other indicator that can't be separated from chance. A scheme "works" if it has a positive return and can be differentiated from chance. – bill_080 Jan 22 at 19:01
Well, it can, althrough maybe not the way you thought, also, your example is flawed, since we see trends from a collections of thousands of indivial stocks, that demonstrated not much less significant trends comparing to the trends of each indivial stock, and there is very strong correlation between each stock in the market, whilst if trends are made purely by chance like you implied, then the collection of thousands or more stocks should not show any serious "trends", and indivial stock's trend should NOT correlated to each other the way we see in the market. – user55647 Jan 22 at 19:26
@user55647 - Trying to stick with the original question, the issue is short term trends/reversals (1 to 2 ticks, 30 second to 3 minute holding times). Again, if you can't separate chance versus actual, then you have nothing to work with. In terms of correlations, don't all financial instruments respond in some way to the news (i.e. chance) of the week/day/hour/minute/second? Aren't those responses responsible for the correlations? Don't get me wrong, there are ways to make money in the market. It's just not from intra-day trend/reversal schemes. – bill_080 Jan 23 at 15:07

Finding turn points is a very difficult problem. Having a covariate that is correlated at a leading time would help. Covariates in conjunction with noticing a leveling off in the market index would be even better.

share|improve this answer

This is something that I'm looking into at the moment, although I'm using using daily OHLC data rather than tick/intraday data. The approach I've taken is to postulate 5 market types and then generate a large amount of synthetic data that conform to models underlying each respective market type. Using this data, I'm currently training a classification neural net to identify which model/market type "real" data most closely resembles over a specified look back period. Based on this classification one would then choose the most appropriate trading strategy: attempt to pick tops and bottoms in a mean reverting environment, and go with the flow in a trending environment. I'm blogging about my progress with this project on Dekalog Blog.

share|improve this answer

There have been studies that show that technical analysis "works" ie better than random results. http://en.wikipedia.org/wiki/Technical_analysis#Empirical_evidence. Most academic studies have been conducted by people that have never actually traded anything. Whatever method you're using has to be taken in the context of the overall market. A rising tide floats all boats.

share|improve this answer
2  
As you know, your link is a discussion of controversies and mentions most of those positive studies only to point out why they might be of limited use or credibility. Regardless, how do you answer the question in front of us? "How can I attack this problem [of] stochastically modeling" near-term market moves? – whuber Oct 23 '12 at 16:04

I would look at 2nd and 3rd standard deviation Bollinger Bands and take a regression to the mean approach. Another approach would be candlestick analysis. Combine either with volume data obviously. If it's hitting new highs but volume doesn't confirm probably expect a reversal.

share|improve this answer
4  
Can you cite an scientific literature showing that these strategies will predict better than chance whether the market will continue or reverse? I'm not an expert in this area, but I have been under the impression that no such approaches will work & I'd rather not have answers posted on CV that are incorrect. (I apologize for my bluntness here; I'd be happy to delete this comment if I'm wrong, & FTR, I didn't downvote.) – gung Oct 14 '12 at 0:14
@gung I dont discount miracles and I am not agree with jim collins (I have not validated his claim to be honest), but since when successful/profiting strategies get published or at least until they become under-achieving? – user55647 Jan 22 at 20:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.