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 POINT CHANNEL- SUPPORT AND RESISTANCE for Amibroker (AFL)

Rating:
5 / 5 (Votes 1)
Tags:
channel, amibroker, pivots

PIVOT POINT CHANNEL AS PROVIDED BY JOE DUFFY

Screenshots

Similar Indicators / Formulas

Wonderful AFL
Submitted by vishyvishy over 14 years ago
Precious Pivots
Submitted by Divyesh almost 12 years ago
Tomorrow's pivots
Submitted by morgen over 13 years ago
Camarilla Pivots
Submitted by novicetraders over 14 years ago
Woodie's Price Panel With Woodie's Pivots
Submitted by kaiji almost 15 years ago
Wilson Relative Price Channel
Submitted by kaiji almost 15 years ago

Indicator / Formula

Copy & Paste Friendly
/* FLOOR TRADER PIVOT SUPPORT AND RESISTANCE PIVOT*/
/* AFL code by BUVANES*/
//COMMENTS WELCOME buvanes1989@gmail.com
//--------==========pivot point channel-support and resistance===============----------------
_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"));
GraphXSpace=3;
_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.

Back