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

Trend Finder for Amibroker (AFL)

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

This AFL is based on CCI and values smoothened to confirm the Trend. Enter when oscillator crosses 100 or -100. and Exit when reverses at dotted line. This works on 5 or 15 Min Chart for Day Trading.

Screenshots

Similar Indicators / Formulas

Febo RSI ..real indicator
Submitted by abhinavsingh over 12 years ago
Trading Volume Statistic
Submitted by tuanstock1 almost 10 years ago
Ergodic Oscillator
Submitted by dljtrader over 13 years ago
3 Days Track
Submitted by janet0211 almost 14 years ago
Chande Momentum Oscillator
Submitted by klimpek over 13 years ago
BoH Risk Aversion Indicator
Submitted by genkumag over 12 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("Trend");
///// Trend Identify ////// 
SetChartOptions( Mode = 0, Flags = 0, gridFlags = 0) ;
x=Param("CCI Period 3 - 35",9,3,50,1); 
x1=CCI(x); 
Y=Param("Smooth Factor 3 - 15",5,3,9,1); 
Y2=DEMA(x1,Y); 
Z=Param("Signal Line 3 - 9",3,3,5,1); 
Z2=MA(Y2,Z); 
Plot(Z2," ",colorGreen,4); 
Plot(100,"",colorGreen);
Plot(-100,"",colorRed);
Plot(65,"",colorGreen,styleDashed);
Plot(-65,"",colorRed,styleDashed);
Plot(0,"",colorBlack);
_SECTION_END();

3 comments

1. gangadhar

hi guys, can anyone write scan formula for this afl for buy sell signals cross above -100 and cross below +100.I tested this afl its very good afl if scan formula is here its very good to make money.

2. arm

love it very smooth

3. rajeshck32

CAN ANY BODY GIVE BUY SELL ARROWS FOR THIS AFL

Leave Comment

Please login here to leave a comment.

Back