PureBytes Links
Trading Reference Links
|
I am attempting to do a study of what happens to stocks after they
make a new high over various time frames, i.e. 1 yr high, 2 yr high
etc.
When I use the following code:
NewHighs= IIf(H>Ref(HHV(H,252),-1),1,0);
VW=ValueWhen(NewHighs,C,1.2);
Filter=NewHighs AND BarCount>252;
AddTextColumn(FullName(),"Name",10);
AddColumn(VW,"Close",1.2);
AddColumn(Ref(C,63),"3 Months",1.2);
AddColumn(Ref(C,126),"6 Months",1.2);
AddColumn(Ref(C,189),"9 Months",1.2);
If a stock makes continuous new highs (which happens often) it just
repeats day after day. Any Ideas on how to eliminate that by having
the stock correct first before making another new high?
Thanks in advance for any help.
Bill
Please note that this group is for discussion between users only.
To get 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/
|