PureBytes Links
Trading Reference Links
|
Here is a cumululative volume indicator.
It keeps jumping in RT eSignal mode - check
daily bars and 15min bars.
And with YahooEOD, it will keep adjusting if u
keep clicking on the chart.
Why does this happen?
It is quite helpful in seeing if vol is behind the
price moves.
feedback appreciated
nand
//===Cumulative Volume====
mp1=3;//Param("Days Volume Summed",3,3,30,1);
mf1=0.1;//Param("Float in Million",0.1,0.1,10000,0.10);
sv=Sum(V,10);
mf2=mf1*100000;
k=IIf(C>O,(Sum(V,mp1)/mf2)*100,0);
kd=IIf(C<O,(Sum(V,mp1)/mf2)*100,0);
K=Gauss2ord(k-kd,5);
d=StDev(k-kd,200);
Plot(k,"",IIf(k>0,6,4),2|styleThick);
Plot(k,"",IIf(k<0,6,4),1|styleThick);
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Get A Free Psychic Reading! Your Online Answer To Life's Important Questions.
http://us.click.yahoo.com/Lj3uPC/Me7FAA/CNxFAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|