Need help with financial back testing
显示 更早的评论
So I'm trying to back test a strategy using bollinger bands.
I want the short signal to be whenever the high of a day is above the upper band, and I want the exit(buy) signal to be when the low penetrates the middle band. The thing I could think of was this:
s(TestHigh>UPPER)=-1
Where: S= Signal (-1 is short, 1 is long)
TestHigh = High of my data
UPPER = Upper Bollinger Band
But all that does is short whenever the high is above the upper band. So now I really don't know what to do (I just started programming, so I'm very inexperienced).
Any help is appreciated!
1 个评论
Sanjeev
2012-7-1
at any point in time you will not know what the high of the day is. you need to write the strategy for the bck test as if you were walking forward in real time.
you should be generating a signal on closes not highs
even if you are using intra day data you should use the close of the 1min bar, hourly bar or whatever, i hope that helps.
回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Financial Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!