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 ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

CCI ZERO CROSS WITH ALERT for Amibroker (AFL)

Rating:
4 / 5 (Votes 2)
Tags:
oscillator, trading system, amibroker

CCI 20 ZERO CROSS WITH ALERT

Similar Indicators / Formulas

Rahul Mohindar Oscillator (RMO)
Submitted by kaiji over 14 years ago
Volatility System
Submitted by kaiji about 14 years ago
NIFTYTIGER'S MAGIC LINES
Submitted by niftytiger almost 12 years ago
Zerolag MACD
Submitted by myth.goa over 11 years ago
MACD Prediction
Submitted by EliStern about 13 years ago
MACD MT4/MT5
Submitted by vivek998877 over 11 years ago

Indicator / Formula

Copy & Paste Friendly
Buy=CCI(20)>0;
Sell=CCI(20)<0;

PlotShapes(IIf(Buy,shapeUpArrow,shapeNone) ,colorBrightGreen);
PlotShapes(IIf(Sell,shapeDownArrow,shapeNone),colorRed);

4 comments

1. anuraghsr

error in formula

2. joeoil

You must use semicolon ; after buy and sell rule.

3. rajeshck32

CAN ANY BODY CORRECT THIS FORMULA

4. mrbar2000
Buy=CCI(20)>0;
Sell=CCI(20)<0;
Buy=ExRem(Buy, Sell);
Sell=ExRem(Sell, Buy);

Plot(CCI(20), "CCI", colorBlack, styleHistogram);
PlotShapes(IIf(Buy,shapeUpArrow,shapeNone) ,colorBrightGreen);
PlotShapes(IIf(Sell,shapeDownArrow,shapeNone),colorRed);

Leave Comment

Please login here to leave a comment.

Back