PureBytes Links
Trading Reference Links
|
okay, changed it but still the same.
so, problem is somewhere else
nand
--- In amibroker@xxxxxxxxxxxxxxx, "Ara Kaloustian" <ara1@xxxx> wrote:
> You have defined "k" twice... as k and K. I beleive AB considers
upper and lowe case characters as the same...
> ----- Original Message -----
> From: nkis22
> To: amibroker@xxxxxxxxxxxxxxx
> Sent: Tuesday, May 27, 2003 9:10 AM
> Subject: [amibroker] Check this Indicator for me
>
>
> 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
>
>
>
> Send BUG REPORTS to bugs@xxxx
> Send SUGGESTIONS to suggest@xxxx
> -----------------------------------------
> 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 the Yahoo! Terms of
Service.
------------------------ 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/
|