Quote from jficquette:
I shouldn't have said what I did. I know it sounds discouraging and don't wish to discourage you from using them. Everyone has to find their own style.
I do use indicators for extreme readings to fade moves. RSI(14) readings over 93+ on a 15 min chart will pretty much show a top. HCR gave it today.
John
Quote from jficquette:
Here is the function in easy language:
inputs: r(numericsimple), s(numericsimple), u(numericsimple);
value1= 100* TripleAverage(close-open, r, s, u);
value2= tripleaverage(high-low,r,s,u);
if value2 <> 0 then
blaucsi = value1/value2
else
blaucsi = 0
Then plug that into this:
inputs: r(13), smooth1(5), smooth2(5);
value1 =blaucsi(r,smooth1,1);
value2 = blaucsi(r,smooth1,smooth2);
plot1(value1, "Blaucsi");
plot2(value2, "sigline");
plot3(20,"Overbought");
Plot4(-20, "Oversold");
It takes the gaps out. It's nothing special to it until after the fact.
All indicators are BS as far as I am concerned.
John
PS Blau used 26,5 as the default.
Quote from Tums:
http://www.amazon.com/Momentum-Dire..._bbs_sr_1/104-6373398-1420726?ie=UTF8&s=books
![]()
Momentum, Direction, and Divergence
by William Blau "Our interest in technical analysis is due to our interest in making money..."
Quote from trade4bucks:It takes the gaps out. It's nothing special to it until after the fact.
All indicators are BS as far as I am concerned.
John
PS Blau used 26,5 as the default.