Welcome to the Traders Laboratory Forums.
Coding Forum Collaborate, receive help, or discuss coding related issues.

Reply
Old 08-15-2008, 09:10 AM   #1

Join Date: Apr 2007
Location: Denver
Posts: 7
Ignore this user

Thanks: 5
Thanked 0 Times in 0 Posts

Stochastic-RSI

I was wondering if anyone has a tradestation Stochastic-RSI indicator. I found this for Metastock and am not able to convert to Easylanguage. Many thanks and appreciate this site and forum.

Stochastic RSI - Various Options
Mov((RSI(14)-LLV(RSI(14),9))/(HHV(RSI(14),9)-(LLV(RSI(14)+.00001,6))), 4,E)*100
khagans is offline  
Reply With Quote
Old 08-15-2008, 03:12 PM   #2
forsearch

Status: Guest
Posts: n/a
Ignore this user


Re: Stochastic-RSI

Try this:

Code:
Type : Indicator, Name : StochRSI 
Input: RSILen(13), LBLen(8), WAvgLen(5); 

Var: RS(0),RSIL(0),RSIH(0),StochRSI(0);

RS=RSI(C,RSILen);
RSIL = Lowest(RS,LBLen);
RSIH = Highest(RS,LBLen);

StochRSI = (RS - RSIL)/(RSIH-RSIL);

Plot1(WAverage(StochRSI,WAvgLen),"Stoch RSI");



-fs
 
Reply With Quote
Old 08-15-2008, 03:46 PM   #3

Join Date: Apr 2007
Location: Denver
Posts: 7
Ignore this user

Thanks: 5
Thanked 0 Times in 0 Posts

Re: Stochastic-RSI

Thank you so much. I will give it a try. Appreciate your prompt response. Have a nice weekend.
khagans is offline  
Reply With Quote

Reply

Thread Tools
Display Modes Help Others By Rating This Thread
Help Others By Rating This Thread:


Similar Threads
Thread Thread Starter Forum Replies Last Post
slow stochastic overlayed on RSi/BB sergej Coding Forum 4 09-10-2007 09:12 AM

All times are GMT -4. The time now is 09:48 AM.
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
CS to VB integration by DeskLancer
©2006-2011 Traders Laboratory, All Rights Reserved.