PureBytes Links
Trading Reference Links
|
Hi Preston,
I had posted this sometime back at the forum. This doesn't plot
peaks/troughs formed at more than double volume. It plots other
peaks & troughs as well (i.e. those formed at less than double avg
vol). This will be evident from the length of volume bar directly
below the plotted peaks/troughs.
I want to find out and plot only those peaks/troughs formed at more
than double average volume and leave the rest.
Periods := Input("Number of volume periods",5,120,60);
n := Input("Number of times average volume",2,10,2);
Pk:=ValueWhen(1,V>(n*Mov(V,Periods,S)),Peak(1,H,0.5););
Tr:=ValueWhen(1,V>(n*Mov(V,Periods,S)),Trough(1,L,0.5);
Pk;
Tr
Kind regards
Arun
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/equismetastock/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:equismetastock-digest@xxxxxxxxxxxxxxx
mailto:equismetastock-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|