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

2 periods explorer for Amibroker (AFL)
ishlakh
almost 14 years ago
Amibroker (AFL)

Rating:
3 / 5 (Votes 3)
Tags:
amibroker, exploration

Simple 2 periods explorer for shorterm trading

Similar Indicators / Formulas

GapUp and Bearish Close (Reversal) _Daily
Submitted by indraji2001 about 11 years ago
General Market Exploration by XeL
Submitted by xel about 13 years ago
Scanning Gap Up and Gap Down
Submitted by vinodsk almost 12 years ago
Deel - Average Dollar Price Volatility
Submitted by kaiji over 15 years ago
Vol Peak 5 Day [Scan only]
Submitted by lusmomoney almost 12 years ago
TEMA_Regression Crossover
Submitted by marcheur almost 12 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
//2 periods RSI and cummulative 2 periods RSI
 
RSI2min = Param("RSI2min",4.4,2,5,0.2);
RSI2max = Param("RSI2max",97.2,96,100,0.2);
 
RSI0 = RSI(2) ;
RSI1 = Ref(RSI(2),-1) ;
RSI2 = Ref(RSI(2),-2) ;
RSI3 = Ref(RSI(2),-3) ;
 
 
RSIsum = (RSI0 + RSI1 + RSI2)/3 ;
 
Vrx =( V / MA(V,20));
 
Plot(RSI0,"RSI(2)",colorRed);
Plot(RSIsum,"RSIcum",colorBrightGreen);
 
Filter1 = RSI(2) < 10 AND RSIsum < 10 AND V >= 50  ;
Filter2 = Ref(RSI(2),-1) < 10 AND Ref(RSIsum,-1) < 10 AND V >= 50 ;
Filter = Filter1 OR Filter2;
 
SetSortColumns( 6,7 );
AddColumn(C,"Last",1.0);
AddColumn(ROC(C,1),"ROC",1.2, IIf(ROC(C,1)<0,colorRed,colorGreen));
AddColumn(Ref(RSI(2),-1),"RSI(2)-1",1.2);
AddColumn(RSI(2),"RSI(2)",1.2,IIf(RSI(2)>90,colorRed,colorGreen));
AddColumn(RSIsum,"RSI(sum)",1.2);
AddColumn(VrX,"Vrx",1.2);
AddColumn(Ref(V,-1),"Ref(V,-1)",1.0);
AddColumn(V,"Volume",1.0);

0 comments

Leave Comment

Please login here to leave a comment.

Back