PureBytes Links
Trading Reference Links
|
Anthony,
I have added and uploaded a code in the timeframe dll( third party )
that is
Plot( afEMA ( afC() ,10) ,"",colorWhite,1);
that one give exactly the same value of weekly ema chart on last day
of week.
stephane
> The two formulas are.
>
> //Title="Average Weekly Bars";
>
> weekprice=TwC();
>
> Plot(C,"close",1,64);
> Plot( TwEMA (WeekPrice,10) ,"Average Weekly Bars"+"
> "+"WkEMAavg",colorWhite,1);
> /**********************************/
>
> Plot(C,"close",1,64);
> Plot( EMA(C,10) ,"",colorWhite,1);
>
>
> Stephane Carrasset wrote:
>
> >
> >
> >
> > Yahoo! Groups Sponsor
> ADVERTISEMENT
>
>
> >
> > Post AmiQuote-related messages ONLY to: amiquote@xxxx
> > (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.
|