PureBytes Links
Trading Reference Links
|
Can someone explain how to use this indicator? is it
oversold/overbought indicator? Thanks
--- In amibroker@xxxxxxxxxxxxxxx, Natasha M S
<dynomitedoll_ddd@xxxx> wrote:
>
>
> Eugene <eugenecpinto@xxxx> wrote:
>
> Has anyone coded this indicator and would like to share?
>
> Thanks
>
> ***************************************
>
> Code for Vidya:
>
> Length=21;
> Smooth=5;
>
> Change = C - Ref( C, -1 );
> SU = Sum( C - Ref( C, -1 ) > 0, Length );
> SD = Sum( C - Ref( C, -1 ) < 0, Length );
> CMO = 100 * ( SU - SD ) / ( SU + SD );
>
> AbsCMO=( abs(CMO) )/100;
>
> SC=2/(Smooth+1);
>
> VIDYA=AMA( C, SC*AbsCMO );
>
> Plot( Close, "Price", 4, 64 );
> Plot( VIDYA, "Vidya", 5 );
>
>
> Just for your info: Vidya in our lang means " Knowledge ".
>
> and Tushar means "fountain"
>
> Have fun.
>
>
>
>
>
>
>
>
>
>
>
> Warm regards,
> Natasha !
>
>
>
>
>
> ---------------------------------
> Do you Yahoo!?
> Yahoo! Search presents - Jib Jab's 'Second Term'
------------------------ Yahoo! Groups Sponsor --------------------~-->
What would our lives be like without music, dance, and theater?
Donate or volunteer in the arts today at Network for Good!
http://us.click.yahoo.com/Tcy2bD/SOnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
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/
|