PureBytes Links
Trading Reference Links
|
An adaptive moving average loosely based on the volatility of the RSI.
Cum(1) is used to load a value for close if it is less than the number
of periods in this case 20.
Load just this part of the indicator:
Period := Input("Period",1,10000,20);
sc := Abs(RSI(Period)/100 - .5)*2;
sc;
Then play around with the sc values. The ABS and -.5 are not necessary.
Preston
--- In equismetastock@xxxxxxxxxxxxxxx, "p99gm" <p99gm@xxxx> wrote:
> Who can help me to explain on following formula?
>
> Period := Input("Period",1,10000,20);
> sc := Abs(RSI(Period)/100 - .5)*2;
> If(Cum(1) <= Period, CLOSE, PREV + sc*(CLOSE - PREV));
>
> Q1: What's the meaning of Cum(1) though I knew cum iS an abbreviation
> of CUMULATE. cumulate one for what?
> Q2:What is PREV? previous for CLOSE or what?
>
> Thanks for your help in advance.
------------------------ Yahoo! Groups Sponsor --------------------~-->
Help Sudanese refugees rebuild their lives through GlobalGiving.
http://us.click.yahoo.com/hjNroD/EbOLAA/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/
|