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

5-34 oscilator for Amibroker (AFL)

Rating:
3 / 5 (Votes 2)
Tags:
oscillator, amibroker

Follow the colors and Zero line….when it crosses zero line and go upward then it is a buy signal and if the crossover is negative then it is a sell signal….and when there is a blue shade entry is risky….u have to wait until the blue shade gone and the black shade comes to give an entry…..

Screenshots

Similar Indicators / Formulas

3 Days Track
Submitted by janet0211 almost 15 years ago
Trading Volume Statistic
Submitted by tuanstock1 over 10 years ago
Ergodic Oscillator
Submitted by dljtrader over 14 years ago
BoH Risk Aversion Indicator
Submitted by genkumag over 13 years ago
Chande Momentum Oscillator
Submitted by klimpek over 14 years ago
%R ++
Submitted by reb almost 15 years ago

Indicator / Formula

Copy & Paste Friendly
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
_SECTION_BEGIN("5-35 OSCILLATOR");
A2 = MA(C,5);
B2 = MA(C,35);
D2 = A2-B2;
 
 
 
XPLUS=IIf(D2>0,D2,0);
XMINUS=IIf(D2<0,D2,0);
 
 
 
PD=periods = Param( "Periods", 15, 1, 200, 1 );
 
Y=EMA(XPLUS,PD);
Z=EMA(XMINUS,PD);
 
DIFF=Param( "DIFF", 0.02, 0.01, 10, 1 );
 
YP=Y+HHV(Y,100)*DIFF;
YM=Y-HHV(Y,100)*DIFF;
 
 
ZP=Z+HHV(Y,100)*DIFF;
ZM=Z-HHV(Y,100)*DIFF;
 
 
PlotOHLC( YP, YP, YM , YM , "",colorYellow, styleCloud | styleNoLabel);
PlotOHLC( ZP, ZP, ZM , ZM , "",colorYellow, styleCloud | styleNoLabel);
 
 
 
 
 
Colorm=IIf(D2>Ref(D2,-1),colorRed,colorDarkRed);
Plot( D2, "535", Colorm, styleHistogram|styleNoLabel );
PlotOHLC( 0, D2, 0 , 0 , "535",Colorm, styleCloud | styleNoLabel);
 
 
 
//////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////
A3 = MA(C,10);
B3 = MA(C,70);
D3 = A3-B3;
 
 
Colorm=IIf(D3>Ref(D3,-1),colorPaleBlue,colorBlue);
Plot( D3, "1070", Colorm, styleHistogram|styleNoLabel );
 
 
 
PlotOHLC( 0, D3, 0 , 0 , "1070",Colorm, styleCloud | styleNoLabel);
 
 
_SECTION_END();

1 comments

1. gajananprofits@yahoo.co.in

probably inspired from Woodie CCI

Leave Comment

Please login here to leave a comment.

Back