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

520 Intraday Trading System for Amibroker (AFL)

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

This system works better on 5 Minute Chart. When RSI start rising below from 30 & buy signal occurs, Go Long with a stop loss of recent low. When RSI start downward below from 70 & sell signal occurs, Go Short with a stop loss of recent High.

Similar Indicators / Formulas

Kavach Of Karna v2
Submitted by hbkwarez almost 10 years ago
Advanced Elliott Waves
Submitted by MarcosEn over 12 years ago
3_6Day GuaiLiLv
Submitted by motorfly over 12 years ago
Williams Alligator System
Submitted by durgesh1712 over 12 years ago
*Level Breakout system*
Submitted by Tinych over 12 years ago

Indicator / Formula

Copy & Paste Friendly
//Go Short/Long on Cross over with Stop loss of recent High/Low on 5 Minute Chart
_SECTION_BEGIN("Background_Setting");
SetChartBkGradientFill( ParamColor("BgTop", colorBlack),
ParamColor("BgBottom", colorBlack),ParamColor("titleblock",colorWhite)); 
_SECTION_END();

_SECTION_BEGIN("520 cross");
SetChartOptions(0,chartShowArrows|chartShowDates);
Plot(Close,"Price",colorWhite, styleCandle);
Plot(EMA(Close,5),"5EMA",colorGreen,style=styleThick);
Plot(EMA(Close,20),"20EMA",colorRed,style=styleThick);
Buy=Cross(EMA(Close,5),EMA(Close,20));
Sell=Cross(EMA(Close,20),EMA(Close,5));
Short=Sell;
Cover=Buy;
shape = Buy * shapeSmallUpTriangle + Sell * shapeSmallDownTriangle;
PlotShapes( shape, IIf( Buy, colorGreen, colorRed ), 0, IIf( Buy, Low, High ) );
_SECTION_END();

 
_SECTION_BEGIN("Ribbon");
no=Param( "Swing", 10, 1, 55 );
res=HHV(H,no);
sup=LLV(L,no);
avd=IIf(C>Ref(res,-1),1,IIf(C<Ref(sup,-1),-1,0));
avn=ValueWhen(avd!=0,avd,1);
tsl=IIf(avn==1,sup,res);
 
Plot( 2, "Ribbon",IIf(C>tsl,colorGreen,colorRed),styleOwnScale|styleArea|styleNoLabel, -0.5, 100 );
_SECTION_END();

3 comments

1. Rakesh Kumar

It will work better in trend market. Avoid using it in side way market.

2. nileyshsane

What will be rsi settings?

3. prasadmuni

THANK YOU SIR FOR SHARING
PRASAD

Leave Comment

Please login here to leave a comment.

Back