Topic: Help code Vidya and Dynamic zone stochastique

Hello,
First of all I wanted to thank you for the FSB. It is really helping me to backtest my own strategies. It is always a pleasure for me to see others bulgarians working on the capital markets.
I wanted just to ask you if you can help me to recode in C# the next code:
REM Vidya Moving Average

REM Paramètres :
REM periods = Période (défaut = 21)
REM Smooth = Coefficient de lissage (défaut = 5)

ONCE SC = 2/(Smooth+1)

AbsCMO = (Abs(Chandle[periods](Close)))/100

IF BarIndex <= periods THEN
     Vidya = Close
ELSE
     Vidya = (SC*AbsCMO*Close)+(1-(SC*AbsCMO))*Vidya
ENDIF

RETURN Vidya AS "Vidya Indicator"

Blagodarq ti predvaritelno, pozdravi ot Sluncheva Nitsa, Mass Trade Services

Re: Help code Vidya and Dynamic zone stochastique

Chande Momentum Oscillator

http://s4.postimage.org/1xDEAS.jpg

VIDYA (Volatility Index Dynamic Average)


http://s3.postimage.org/1NUYRJ.jpg

Post's attachments

Chande Momentum Oscillator.cs 14.04 kb, 43 downloads since 2009-12-04 

Vidya Moving Average.cs 17.89 kb, 41 downloads since 2009-12-04 

You don't have the permssions to download the attachments of this post.

Re: Help code Vidya and Dynamic zone stochastique

Thank you a lot, I really appreciate your help.
Mihail Stefanov