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

Pivot s/r for Amibroker (AFL)

Rating:
5 / 5 (Votes 1)
Tags:
support, resistance, pivot, amibroker

Got this great afl from traderji.com. Thought to share it here. The credit goes to the original writer/coder… I dont know about him..
Regards

Screenshots

Similar Indicators / Formulas

Dynamic Support & Resistance
Submitted by cnbondre over 13 years ago
Automatic Support and Resistance with Channel
Submitted by kaiji over 14 years ago
price support resistance
Submitted by icemanc almost 13 years ago
Support and resistance range
Submitted by mediaworks over 13 years ago
Tom DeMark Trend Lines
Submitted by kaiji about 14 years ago
Support/Resistance Modified
Submitted by dkeleher about 13 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("5 MA PIVOT SUP RES");
x=Param("Average ",5,1,21);
P = ( H+ L + C )/3;
HP1 = (P + (P - L));
LP1 = (P - (H - p));

HP2 = (P + 2*(P - L));
LP2 = (P - 2*(H - p));

PAV = (HP1 - LP1);
s=MA(PAV,x);
U=EMA(P,x);
Up=(s + U);
Lo=(U - s );
Plot (Up,"PIVOT RESISTANCE",ParamColor( "Color", colorCycle ), ParamStyle("Style"));
Plot (Lo,"PIVOT SUPPORT",ParamColor( "Color", colorCycle ), ParamStyle("Style"));

ChartStyle = ParamStyle("Chart Type", styleBar, maskAll);
Plot(C, "", colorGrey50, ChartStyle);

GraphXSpace=3;
_SECTION_END();

1 comments

1. niklravi

friend
let me know how u trade on this afl and time frame

ravinikl@yahoo.com

Leave Comment

Please login here to leave a comment.

Back