Stochastic CCI Afl for Amibroker (AFL)
sachin22022 about 15 years ago Amibroker (AFL)
A great tool for trading with CCI and Stochastics
Indicator / Formula
Copy & Paste Friendly
StochCCI=100*(CCI(14)-LLV(CCI(14),14))/(HHV(CCI(14),14)-LLV(CCI(14),14));
Plot(StochCCI,"StochCCI",1,1);
Plot(80,"",2,1);Plot(20,"",2,1);2 comments
Leave Comment
Please login here to leave a comment.
Would you be able to provide Buy & Sell variable for this?
EliStern
Here is a simple buy/sell statement to the StochCCI:
UpperL = 80;
LowerL = 20;
Buy = Cross(StochCCI, LowerL);
Sell = Cross(StochCCI, UpperL);