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

Plot tomorrows pivots on an intraday database for Amibroker (AFL)
kaiji
about 14 years ago
Amibroker (AFL)

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

I had been struggling with the code to plot todays pivots from yesterdays price when using an intraday database. There were none available in the Amibroker library which plotted correctly the pivots for tomorrow on a intraday database. I checked the Amibroker forum and found the following. Thank you goes to sdebu_2k. If you wish to go to the forum search for “plotting tomorrow pivots”. This routine provides todays quotes in the title bar and holds the todays pivots constant in the title bar as well. The plotted pivots moves to the next day when entering into the next day. Absolutely brilliant! Thank you.

By patrickdoherty

Similar Indicators / Formulas

TTM Hourly Rolling Pivots Indicator Clone
Submitted by kaiji about 14 years ago
Camarilla Indicator for day trading
Submitted by abnash about 13 years ago
Camarilla Pivots
Submitted by novicetraders almost 14 years ago
Tomorrow's pivots
Submitted by morgen almost 13 years ago
Floor Pivots
Submitted by stjeanluc almost 12 years ago
1 Minute inside 6 bar consolidation
Submitted by alvaroaltair about 10 years ago

Indicator / Formula

Copy & Paste Friendly
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) Vol " +WriteVal( V, 1.0 ) +"
{{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 )) ));

Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() );

H1=SelectedValue( TimeFrameGetPrice( "H", inDaily, -1 ));
L1=SelectedValue(TimeFrameGetPrice( "L", inDaily, -1 ));
C1=SelectedValue(TimeFrameGetPrice( "C", inDaily, -1 ));

/*PIVOT Calculation*/
p = ( H1+ L1 + C1 )/3;
s1 = (2*p)-H1;
r1 = (2*p)-L1;
s2 = p -(H1 - L1);
s3 = S1 - (H1-L1);
r2 = p +(H1 - L1);
r3 = R1 +(H1-L1);

Plot (p,"Pivot",25,1);
Plot (r1,"R1",12,1);
Plot (r2,"R2",12,1);
Plot (r3,"R3",12,1);
Plot (s1,"S1",3,1);
Plot (s2,"S2",3,1);
Plot (s3,"S3",3,1);

1 comments

1. shariful

thanks a lot for sharing

Leave Comment

Please login here to leave a comment.

Back