jalabuda 13 posts msg #83334 - Ignore jalabuda |
11/22/2009 9:29:12 AM
http://www.sfomag.com/article.aspx?ID=1423&issueID=c
See article on new approach to using Bollinger Bands by Ed Carlson.
Any way to program this indicator in Stockfetcher?
|
chetron 2,817 posts msg #83335 - Ignore chetron |
11/22/2009 10:02:43 AM
site...........
|
Kevin_in_GA 4,599 posts msg #83339 - Ignore Kevin_in_GA |
11/22/2009 12:11:40 PM
Here goes:
I think you could also use the Relative Volatility Index function, described here:
Relative Volatility Index
|
chetron 2,817 posts msg #83343 - Ignore chetron modified |
11/22/2009 1:11:04 PM
OR EVEN......
OOPS...
OR RVI......
|
trendscanner 265 posts msg #83348 - Ignore trendscanner |
11/22/2009 5:02:09 PM
Great coding on this filter and very interesting article. Thanks for the post and coding. I read through the article twice and still don't understand very clearly how the author suggests using these signals. His example isn't very clear. But I think his first trigger is an exceedance of an upper or lower 20,2 BB. So I think something like the following would be added to the filter to find candidates, then an interpretation of the signal would be applied, per his instructions in the article.
set{UX, Count(close above upper bollinger band (20,2), 1)}
set{DX, Count(Close below lower bollinger band (20,2), 1)}
set{sum, UX + DX}
sum > 0.5
|
chetron 2,817 posts msg #83350 - Ignore chetron modified |
11/22/2009 7:20:23 PM
HOW ABOUT THE HARD WAY....
ALL MIXED UP....
|
chetron 2,817 posts msg #83351 - Ignore chetron modified |
11/22/2009 7:40:29 PM
MODE CHANGER....
|
chetron 2,817 posts msg #83353 - Ignore chetron |
11/22/2009 8:01:16 PM
ALL TOGETHER....
|
chetron 2,817 posts msg #83359 - Ignore chetron |
11/23/2009 6:44:06 AM
MO' BETTER....
|
Kevin_in_GA 4,599 posts msg #83360 - Ignore Kevin_in_GA |
11/23/2009 6:51:23 AM
Chet:
Performance restrictions - can't see the output of the last few filters you posted here. I think I get what you are trying to do from the code, though.
|