Stock Portfolio Organizer
The ultimate porfolio management solution.
Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Cuan Helper Osc for Amibroker (AFL)
Rating:
2 / 5 (Votes 4)
Tags:
oscillator, amibroker
oscilator to help looking up gain price candle
Indicator / Formula
Copy & Paste Friendly
_section_begin("choMA");
ChOperiods=50;
AMAAvg=200;
trgAvg=5;
C=avg*v;
SumU=Sum(IIf(C>Ref(C,-1),(C-Ref(C,-1)),0), ChOperiods);
SumD=Sum(IIf(C<Ref(C,-1),(Ref(C,-1)-C),0), ChOperiods);
ChO=100*(SumU-SumD)/(SumU+SumD);
Plot(ChO,"ChOmA",colorCustom12,styleLine);
ChOAvg=dema(ChO,AMAAvg);
trig=DEMA(ChOAvg,trgAvg);
Plot(ChOAvg,"ChOAvg",colorBlack,style=styleLine|styleOwnScale|styleThick,-100,100);
0 comments
Leave Comment
Please login here to leave a comment.
Back