PureBytes Links
Trading Reference Links
|
Thank's Preston
Thank's Roy
Best regards,
Kwok
[EquisMetaStock Group] Digest Number 1610
10 July, 2006, ( 05:31:19 ), you wrote:
eyc> 4a. Re: Formula for filter in the explorer, help please....
eyc> Posted by: "pumrysh" no_reply@xxxxxxxxxxxxxxx pumrysh
eyc> Date: Sun Jul 9, 2006 11:19 am (PDT)
eyc> Kwok,
eyc> Change the Vidya to:
eyc> Vidya:=(Cum(1)<Pds)*C+(Cum(1)>=Pds)*((Alpha*k*C)+(1-Alpha*k)*PREV);
eyc> Vidya
eyc> The P variable allows you to place a Vidya on any indicator. The
eyc> explorer doesn't like it unless it is attached to a chart first. By
eyc> using C you will eliminate the problem and be able to perform an
eyc> exploration on numerous charts.
eyc> Preston
eyc> --- In equismetastock@xxxxxxxxxxxxxxx, Kwok <grid@xxx> wrote:
>>
>>
>>
>>
>> I use MS Pro 7.0.
>> I use indicator Vidya(Chande):
>>
>> Pds:= Input("Number of Periods?",1,1000,20);
>> Alpha:= 2/(Pds+1);
>>
>> {Chande Momentum Oscillator}
>> {UD = Up day}
>> {DD = Down day}
>> UD:= Sum((C-Ref(C,-1))*(C>Ref(C,-1)),9);
>> DD:= Sum((Ref(C,-1)-C)*(C<Ref(C,-1)),9);
>> CMOsc:= (UD-DD)/(UD+DD);
>>
>> k:= Abs(CMOsc);
>>
>> Vidya:= (Cum(1) < Pds) * P + (Cum(1)>=Pds) * ((Alpha * k * P) + (1-
eyc> Alpha
>> * k) * PREV);
>> Vidya
>>
>>
>> I use periods 5
>> Can someone please help me some formula
>> I want to explore securities in the explore system filter.
>> Close >= Vidya
>>
>> Thank's
>>
>> Best regards,
>> Kwok
>>
eyc> Messages in this topic (3)
eyc> ________________________________________________________________________
eyc> 4b. Re: Formula for filter in the explorer, help please....
eyc> Posted by: "Roy Larsen" rlarsen@xxxxxxxxxxxxxx rlarsen_99
eyc> Date: Sun Jul 9, 2006 3:14 pm (PDT)
eyc> Hi Guys
eyc> VIDYA is the same as the "Var" moving average function. Simplify and speed up explorations by using Mov(C,pds,Var).
eyc> Regards
eyc> Roy
eyc> ----- Original Message -----
eyc> From: pumrysh
eyc> To: equismetastock@xxxxxxxxxxxxxxx
eyc> Sent: Monday, July 10, 2006 6:18 AM
eyc> Subject: [EquisMetaStock Group] Re: Formula for filter in the explorer, help please....
eyc> Kwok,
eyc> Change the Vidya to:
eyc> Vidya:=(Cum(1)<Pds)*C+(Cum(1)>=Pds)*((Alpha*k*C)+(1-Alpha*k)*PREV);
eyc> Vidya
eyc> The P variable allows you to place a Vidya on any indicator. The
eyc> explorer doesn't like it unless it is attached to a chart first. By
eyc> using C you will eliminate the problem and be able to perform an
eyc> exploration on numerous charts.
eyc> Preston
------------------------ Yahoo! Groups Sponsor --------------------~-->
Something is new at Yahoo! Groups. Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/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/
|