I have problem in RSI indicator

TeeChart for ActiveX, COM and ASP
Post Reply
Jameh2020
Newbie
Newbie
Posts: 25
Joined: Fri Apr 08, 2005 4:00 am

I have problem in RSI indicator

Post by Jameh2020 » Sat Mar 04, 2006 6:38 am

Hi

it s great ocx

but ,,,, in RSI Function
i try to flow values between teechart and metastock ,,, but there is different between the two values

i try many thing but still same problem

can you help me

thanks

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Mon Mar 06, 2006 9:37 am

Hi Jameh2020,

Can it be that TeeChart uses a different aproach for RSI function than Metastock? We heard of several ways of calculating that function and this is how TeeChart does it:
Description
RSIFunction is a LineSeries derived class that calculates a percent value based on Financial data. RSIFunction must be connected to a CandleSeries or any derived Series class (like CandleSeries). Like a MovingAverageFunction, RSI will calculate a new point Y value by using previous Period points.

The used formula is:

Add all Close prices greater than Open prices and divide by ocurrences (Ups).

Add all Close prices lower than Open prices and divide by ocurrences (Downs).

RSI := 100.0 - ( 100.0 / ( 1.0 + Abs( Ups / Downs ) ) )

TeeChart Pro ActiveX Control Documentation. Copyright 1997-2004 Steema Software SL.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Jameh2020
Newbie
Newbie
Posts: 25
Joined: Fri Apr 08, 2005 4:00 am

Post by Jameh2020 » Mon Mar 06, 2006 10:00 am

Thanks Narcís

Post Reply