PureBytes Links
Trading Reference Links
|
Ed,
Looks like we're having one of those days where it doesn't touch the
pivot today...
--- In amibroker@xxxxxxxxxxxxxxx, "Edward Pottasch" <empottasch@xxx>
wrote:
>
> make that
>
> DH = Ref(H,-1);
> DL = Ref(L,-1);
> DC = Ref(C,-1);
>
> rg = DH - DL;
>
> PV = (DH+DL+DC)/3;
> R1 = 2*PV - DL;
> R2 = PV + rg;
> R3 = PV + 2*rg;
> R4 = PV + 3*rg;
>
> S1 = 2*PV - DH;
> S2 = PV - rg;
> S3 = PV - 2*rg;
> S4 = PV - 3*rg;
>
>
>
> ----- Original Message -----
> From: Edward Pottasch
> To: amibroker@xxxxxxxxxxxxxxx
> Sent: Wednesday, January 28, 2009 4:15 PM
> Subject: [amibroker] interesting article
>
>
>
> hi,
>
> found an interesting article.
>
>
http://finance.yahoo.com/news/Combining-Trading-Strategies-tm-14154609.html
>
> his claims can easily be tested using Amibroker. For instance he
claims that "Over the course of time, stock index markets touch their
daily pivot point values roughly 70% of the time."
>
> this can be tested using:
>
> DH = Ref(H,-1);
> DL = Ref(L,-1);
> DC = Ref(C,-1);
>
> rg = DH - DL;
>
> PV = (DH+DL+DC)/3;
> R1 = PV + (PV - DL);
> R2 = PV + rg;
> R3 = R1 + rg;
> R4 = R2 + rg;
>
> S1 = PV - (DH - PV);
> S2 = PV - rg;
> S3 = S1 - rg;
> S4 = S2 - rg;
>
> // pivot stats
> occ1 = IIf(O < pv AND H >= pv,1,0);
> "retrace up to pivot: " + WriteVal(LastValue(Cum(occ1)/Cum(O < pv)));
> occ1 = IIf(O > pv AND L <= pv,1,0);
> "retrace down to pivot: " + WriteVal(LastValue(Cum(occ1)/Cum(O >
pv)));
>
> for the SPY I get 66.9% (retrace up) and 62.6% (retrace down).
>
> For gaps up and down a gap up (again for SPY) between R1 and R2
has 81.9% chance to retrace back to R1. A gap up between R2 and R3 has
83.1% chance to retrace back to R2. Similar percentages can be found
for downside gaps.
>
> regards, Ed
>
------------------------------------
**** IMPORTANT ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
*********************
TO GET TECHNICAL SUPPORT from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
*********************
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
*********************************
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|