PureBytes Links
Trading Reference Links
|
I agree,
Thomasz works very hard in providing us with fabulous software, afl
coding, all at a very nominal fee.
Please keep your Amibroker license current and enjoy the benifits of
using one of the top programmers software not to mention the best
support in the industry.
Regards
Jim
--- In amibroker@xxxxxxxxxxxxxxx, "Prashanth" <prash454@xxxx> wrote:
> Hi,
>
> This issue is not about right or wrong, it deals with more basic
issue such as Piration, If One is neither a S & C subscriber nor has
a legal version of AmiBroker then I dont think it is fair for him to
get something that only paid ones get.
>
> Just to help might be fine, but in the members area it is clearly
mentioned
>
> REMINDER: You are NOT allowed to distribute information / code
provided here to non-registered users
>
> If everyones keeps that in mind it would very much be HELPFULL.
>
> Regards
>
> Prashanth
>
>
> --- In amibroker@xxxxxxxxxxxxxxx, "Brian" <brian@xxxx> wrote:
> > Dimitris,
> >
> > Because somebody might find it helpful?
> >
> > If you are a board moderator I do not see a yellow (or blue) star
> > next to your posts. Tomasz's posts also do not appear to have a
> blue
> > star associated with them.
> >
> > Perhaps these should be assigned if they are not assigned already.
> >
> > Thanks,
> >
> > Brian
> >
> > --- In amibroker@xxxxxxxxxxxxxxx, "DIMITRIS TSOKAKIS"
> > <TSOKAKIS@xxxx> wrote:
> > > Brian,
> > > The code is already in the members zone
> > > http://www.amibroker.com/members/traders/06-2004.html
> > > There are some reasons to be there.
> > > Is there any reason to post the code in this [open] forum ?
> > > Dimitris Tsokakis
> > > --- In amibroker@xxxxxxxxxxxxxxx, "Brian" <brian@xxxx> wrote:
> > > > /*
> > > > Volume Flow Indicator
> > > > */
> > > >
> > > > Period = Param("VFI Period",26,26,1300,1);
> > > > Coef=0.2;
> > > > VCoef=Param("Max. vol. cutoff",2.5,2.5,50,1);
> > > >
> > > > inter = log(Avg)-log(Ref(Avg,-1));
> > > > Vinter = StDev(inter,30);
> > > > Cutoff=Coef*Vinter*Close;
> > > > Vave=Ref(MA(V,Period),-1);
> > > > Vmax=Vave*Vcoef;
> > > > Vc=Min(V,VMax);
> > > > MF=Avg-Ref(Avg,-1);
> > > > VCP=IIf(MF>Cutoff,VC,IIf(MF<-Cutoff,-VC,0));
> > > > VFI=Sum(VCP,Period)/Vave;
> > > > VFI=EMA(VFI,3);
> > > > Plot(VFI,"VFI",colorBlack,styleThick);
> > > > Plot(EMA(VFI,10),"EMA10 or VFI",colorBrown);
> > > > Plot(0,"",colorSeaGreen,styleNoLabel);
> > > > Plot(V,"Volume",IIf(VCP>0,colorGreen,IIf
> > (VCP<0,colorRed,colorBlue)),
> > > > styleHistogram | styleOwnScale | styleNoLabel);
>
>
>
> 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
>
>
>
> Yahoo! Groups Sponsor
> ADVERTISEMENT
>
>
>
>
>
>
>
> --------------------------------------------------------------------
------------
>
> Yahoo! Groups Links
>
> a.. To visit your group on the web, go to:
> http://groups.yahoo.com/group/amibroker/
>
> b.. To unsubscribe from this group, send an email to:
> amibroker-unsubscribe@xxxxxxxxxxxxxxx
>
> c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/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
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> 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/
|