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

SUPPORT AND RESISTANCE WITH FIB for Amibroker (AFL)
siva
almost 14 years ago
Amibroker (AFL)

Rating:
2 / 5 (Votes 3)
Tags:
trading system, amibroker, support, resistance

THIS SUPPORT AND RESISTANCE WITH FIB FORMULA WORKING IN 5MIN CHARTS WELL

Similar Indicators / Formulas

FHB Advanced Trading System
Submitted by vishyvishy about 14 years ago
Trading System by ISFANDI
Submitted by sajid over 13 years ago
Grafic & Linear Regression Channel
Submitted by morgen about 13 years ago
Flower
Submitted by emonsyl about 14 years ago
Sharone System
Submitted by panno over 13 years ago
RAJASWAMY NIFTY CLINIC
Submitted by rajaswamy about 13 years ago

Indicator / Formula

Copy & Paste Friendly
LB= Param("Look Back Periods",10,1,30,1);
mh=ValueWhen(Cross(MA(C,LB),C),HHV(H,LB),1);
ml=ValueWhen(Cross(C,MA(C,LB)),LLV(L,LB),1);

GraphXSpace=4;

b=(mh-ml);
s38=ml+b*23.6/100;
s50=ml+b*50/100;
s61=ml+b*76.4/100;
s127=mh-b*127.2/100;
s161=mh-b*161.8/100;
s261=mh-b*261.8/100;
r127=ml+b*127.2/100;
r161=ml+b*161.8/100;
r261=ml+b*261.8/100;
Plot(s50,"",2,5);
Plot(s127,"",5,5);
Plot(r127,"",4,5);

Buy=Cross( L,r127) ; 
Sell= Cross( r127,H ); 

dist = 1.5*ATR(10); 

for( i = 0; i < BarCount; i++ ) 
{ 
if( Buy[i] ) PlotText( "Buy" + H[ i ], i, L[ i ]-dist[i], colorGreen ); 
if( Sell[i] ) PlotText( "Sell" +L[ i ], i, H[ i ]+dist[i], colorRed, colorYellow ); 
} 

PlotShapes( Buy * shapeUpArrow + Sell * shapeDownArrow, IIf( Buy, colorGreen, colorRed ) );

Buy=Cross( L,s127) ; 
Sell= Cross( s127,H ); 

dist = 1.5*ATR(10); 

for( i = 0; i < BarCount; i++ ) 
{ 
if( Buy[i] ) PlotText( "Buy" + H[ i ], i, L[ i ]-dist[i], colorGreen ); 
if( Sell[i] ) PlotText( "Sell" +L[ i ], i, H[ i ]+dist[i], colorRed, colorYellow ); 
} 

PlotShapes( Buy * shapeUpArrow + Sell * shapeDownArrow, IIf( Buy, colorGreen, colorRed ) );

_SECTION_BEGIN("Price");
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
Plot( C, "Close", colorWhite, styleNoTitle | ParamStyle("Style") | GetPriceStyle() ); 
_SECTION_END();

2 comments

1. siva

GOOD

2. gholamreza

good…………….

Leave Comment

Please login here to leave a comment.

Back