Skip to main content

Stochastic CCI Afl for Amibroker (AFL)

sachin22022 about 15 years ago Amibroker (AFL)

  • Rating:
    5 / 5 (Votes 1)
  • Tags:
    oscillator, amibroker

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

2. joeoil
about 15 years ago

EliStern

Here is a simple buy/sell statement to the StochCCI:

UpperL = 80;
LowerL = 20;

Buy = Cross(StochCCI, LowerL);
Sell = Cross(StochCCI, UpperL);

Leave Comment

Please login here to leave a comment.