[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [amibroker] Re: Does AB have the capability to project the price into the future ?



PureBytes Links

Trading Reference Links



Greetings --

The code below calculates pivot points based on the latest bar, and plots them one bar ahead.  Is this what you are hoping to do?



//    PivotPoints.afl
//
//    Traditional pivot points.
//    Thought by some to indicate levels of support
//    and resistance.
//R2 = P + (H - L) = P + (R1 - S1)
//R1 = (P x 2) - L
//P = (H + L + C) / 3
//S1 = (P x 2) - H
//S2 = P - (H - L) = P - (R1 - S1)
P = (H + L + C) / 3;
R1 = (P * 2) - L;
S1 = (P * 2) - H;
R2 = P + (R1 - S1); // P + (H - L)
S2 = P - (R1 - S1); // P - (H - L)
Plot(C,"C",colorBlack,styleCandle);
//    Displace the plot of the pivot points one bar
//    to the right.
//    Pivot points are based on the current bar,
//    but are thought to provide indication of
//    support and resistance for the next bar.
//   
Displace=1;
Plot(R2,"R2",colorRed,styleLine,0,0,Displace);
Plot(R1,"R1",colorPink,styleLine,0,0,Displace);
Plot(P,"P",colorBlue,styleLine,0,0,Displace);
Plot(S1,"S1",colorPaleGreen,styleLine,0,0,Displace);
Plot(S2,"S2",colorGreen,styleLine,0,0,Displace);
//Figure 8.5 Pivot Points


Thanks,
Howard



On Tue, Apr 21, 2009 at 6:15 AM, gmorlosky <gmorlosky@xxxxxxxxx> wrote:


After reading the thread mentioned below, I'm thinnking this is very hard to do, and XSHIFT is not the answer ???

I would just like to tell any symbol data set that it should extend into the future based on whatever formula I give it for as many days as I state, and then all my Explores are run against that data.

Basically I'm trying to look at the S&P futures before the market opens and then, based on that direction, see what my indicators "would" alert me to.

Any thoughts



--- In amibroker@xxxxxxxxxxxxxxx, "Mike" <sfclimbers@xxx> wrote:
>
> There was a thread in this forum about how to do it for charting. That might be a good starting point for you...
>
> http://finance.groups.yahoo.com/group/amibroker/message/133704
>
> Mike
>
> --- In amibroker@xxxxxxxxxxxxxxx, "gmorlosky" <gmorlosky@> wrote:
> >
> > Can I somehow have AmiBroker project the price into the future (maybe 1 to 5 days) based on, let's say, the slope of the close for the last 5 days ?
> > Then I could run my Explore against this data and have my alerts based on what might happen tomorrow or next week.
> > I guess this would be good also for doing negative slope for a expected bad week ahead.
> >
>




__._,_.___


**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.

TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com

TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)

For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/





Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___