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

Floor Pivots for Amibroker (AFL)

Rating:
3 / 5 (Votes 4)
Tags:
amibroker, pivots

This formula calculates the floor pivots on a daily basis.

Screenshots

Similar Indicators / Formulas

Pivots and prices
Submitted by kaiji about 14 years ago
Pivots
Submitted by kkumar almost 12 years ago
Pivots And Prices And Swing Volume
Submitted by esnataraj almost 14 years ago
Camarilla Pivots
Submitted by novicetraders almost 14 years ago
Pivot Trading All-In-One
Submitted by kirthi1987 almost 14 years ago
Daily, Weekly and Monthly Pivots
Submitted by sam_u6 almost 14 years ago

Indicator / Formula

Copy & Paste Friendly
// Calculate the daily Pivot and S/R //

TimeFrameSet(inDaily);
PPFloor = (H + L + C)/3;
R1Floor = (PPFloor * 2) - L;
R2Floor = PPFloor + H - L;
R3Floor = H + 2 * (PPFloor - L);
S1Floor = (2 * PPFloor) - H;
S2Floor = PPFloor - H + L;
S3Floor = L - 2 * (H - PPFloor);

TimeFrameRestore();

// Plot the Pivot Point //

Plot(TimeFrameExpand(PPFloor,inDaily,expandLast), "Pivot Point", colorLightBlue, styleThick);

// Plot the Resistance Level Clouds and Line //

Plot(TimeFrameExpand(R1Floor,inDaily,expandLast), "R1", colorGreen, styleThick);
Plot(TimeFrameExpand(R2Floor,inDaily,expandLast), "R2", colorGreen, styleThick);
Plot(TimeFrameExpand(R3Floor,inDaily,expandLast), "R3", colorGreen, styleThick);

// Plot the Support Levels Clouds and Lines //

Plot(TimeFrameExpand(S1Floor,inDaily,expandLast), "S1", colorRed, styleThick);
Plot(TimeFrameExpand(S2Floor,inDaily,expandLast), "S2", colorRed, styleThick);
Plot(TimeFrameExpand(S3Floor,inDaily,expandLast), "S3", colorRed, styleThick);

0 comments

Leave Comment

Please login here to leave a comment.

Back