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

Many Charts in One for Amibroker (AFL)

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

Can Draw Different charts in single window using parameter.

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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
/*
You can differnt charts using the parameter windows
*/
 
_N( Title = StrFormat( "{{NAME}} - {{INTERVAL}} {{DATE}} {{OHLCX}} Vol %.0f {{VALUES}}", V ) );
 
Plot( C, "Close", colorBlack, styleThick, 0, 0, 1 );
 
abc = Param( "Length", 14, 7, 21, 7 );
 
//Keltner Band Code
MidLine = MA( Close, 20 );  //Middle Line//Could use EMA
ATRPeriod = 10;         //ATR Period//Could use 5
KFactor = 2;            //Multiplier
KVal = ATR( ATRPeriod ) * KFactor;
KTop = MidLine + KVal;  //Upper Band
KBottom = MidLine - KVal;   //Lower Ban
 
NRx = ParamList( "Plot I", "ADX|AMA|AMA2|BB|BBBot|BBTop|CCI|Chaikin|DEMA|MA|EMA|KC|MACD|MDI|MFI|NVI|OBV|OscP|OscV|PDI|PVI|RMI|RWI|Signal|StochD|StochK|TEMA|Trix|TSF|Ultimate|Wilders|WMA" );
 
 
if( NRx == "ADX" )
{
    Plot( ADX( abc ), "ADX", colorRedstyleLine | styleOwnScale | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "AMA" )
{
    Plot( AMA( C, 2 ), "AMA", colorRed, styleLine | styleOwnScale | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "AMA2" )
{
    Plot( AMA2( C, 2, 1 - 2 ), "AMA2", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "BB" )
{
    Plot( BBandTop( C, abc, 2 ), "BBTop", colorBluestyleLine | styleOwnScale, Null, Null, 1 );
    Plot( BBandBot( C, abc, 2 ), "BBBot", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
 
if( NRx == "BBBot" )
{
    Plot( BBandBot( C, abc, 2 ), "BBBot", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "BBTop" )
{
 
    Plot( BBandTop( C, abc, 2 ), "BBTop", colorBluestyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "CCI" )
{
    Plot( CCI( abc ), "CCI", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "Chaikin" )
{
    Plot( Chaikin( 9, 14 ), "Chaikin", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "DEMA" )
{
    Plot( DEMA( Close, abc ), "DEMA", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "EMA" )
{
    Plot( EMA( C, abc ), "EMA", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "KC" )
{
    Plot( MidLine + ATR( abc ) * KFactor, "KTop", colorBluestyleLine | styleOwnScale, Null, Null, 1 );
    Plot( MidLine + ATR( abc ) - KFactor, "KBot", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "MA" )
{
    Plot( MA( C, abc ), "MA", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "MACD" )
{
    Plot( MACD( 12, 26 ), "MACD", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "MDI" )
{
    Plot( MDI( abc ), "MDI", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "MFI" )
{
    Plot( MFI( abc ), "MFI", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "NVI" )
{
    Plot( NVI(), "NVI", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "OBV" )
{
    Plot( OBV(), "OBV", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "OscP" )
{
    Plot( OscP( 9, 18 ), "OscP", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "OscV" )
{
    Plot( OscV( 9, 18 ), "OscV", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
 
if( NRx == "PDI" )
{
    Plot( PDI( abc ), "PDI", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "PVI" )
{
    Plot( PVI(), "PVI", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "RMI" )
{
    Plot( RMI( 14, 5 ), "RMI", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "RWI" )
{
    Plot( RWI( 9, 14 ), "RWI", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "Signal" )
{
    Plot( Signal( 12, 26, 9 ), "Signal", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "StochD" )
{
    Plot( StochD( 14, 3, 3 ), "StochD", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "StochK" )
{
    Plot( StochK( 14, 3 ), "StochK", colorBluestyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "TEMA" )
{
    Plot( TEMA( Close, abc ), "TEMA", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "Trix" )
{
    Plot( Trix( abc ), "TRIX", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "TSF" )
{
    Plot( TSF( C, abc ), "TSF", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "Ultimate" )
{
    Plot( Ultimate( 7, 14, 28 ), "Ultimate", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "Wilders" )
{
    Plot( Wilders( C, abc ), "Wilders", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}
 
if( NRx == "WMA" )
{
    Plot( WMA( C, abc ), "WMA", colorRedstyleLine | styleOwnScale, Null, Null, 1 );
}

3 comments

1. ll98123

Thanks

2. umeshpanchal

NOT UPDATING SHOWING ONLY ADX

3. administrator

No problems here.

Leave Comment

Please login here to leave a comment.

Back