PureBytes Links
Trading Reference Links
|
You're probably right. That looks fruitless, but here's a volume
formula that will give you volume spikes that are useful. On a spike
watch for a price move up. You can rewrite the last line to work for
shorts. Make an indicator and plot this for longs.
Pds:=Input("Moving Average",10,50,10);
R:=Input("Ref Periods",1,4,2);
Percentage:=Input("% Increase",1.1,2.5,1.3);
If(VOLUME >= (Mov(VOLUME,Pds,S)* Percentage )AND (Mov(VOLUME,Pds,S)>0)
AND C>Ref(C,-R),VOLUME,0)
Start with periods around 20, percentages of 1.30 (30% increase) and
ref periods of 2.
Put it in the systems tester for a long buy and use your favorite exit.
I think Larry posted a version of this originally.
I'm getting posting errors. I hope this doesn't post multiple times.
------------------------ Yahoo! Groups Sponsor --------------------~-->
What would our lives be like without music, dance, and theater?
Donate or volunteer in the arts today at Network for Good!
http://us.click.yahoo.com/Tcy2bD/SOnJAA/cosFAA/BefplB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> 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/
|