traderwin Posted May 28, 2012 Report Posted May 28, 2012 Hi, Could anyone share the original TDI (Traders Dynamic Index) for TradeStation that was sold at Compassfx.com? Thank you! Quote
alex_m Posted May 29, 2012 Report Posted May 29, 2012 Tdi Input: Price( Close ); Input: RSIPeriod(13); Input: PriceLinePeriod(2); Input: SignalLinePeriod(7); Input: AverageLinePeriod(34); Input: LevelH(70); Input: LevelM(50); Input: LevelL(30); vars: RSILine(0); vars: PriceLine(0); vars: SignalLine(0); vars: AverageLine(0); vars: BandsLineU(0); vars: BandsLineL(0); RSILine = RSI( Price, RSIPeriod); PriceLine = Average (RSILine,PriceLinePeriod); SignalLine = Average (RSILine, SignalLinePeriod); AverageLine = Average (RSILine, AverageLinePeriod); BandsLineU = BollingerBand (RSILine, 34, 1.62); BandsLineL = BollingerBand (RSILine, 34, -1.62); Plot1( PriceLine, "PriceLine"); Plot2( SignalLine, "SignalLine"); Plot3( AverageLine, "AverageLine"); Plot4( BandsLineU, "BandsUp"); Plot5( BandsLineL, "BandsDown"); Plot6( LevelH, "LevelHigh"); Plot7( LevelM, "LevelMedium"); Plot8( LevelL, "LevelLow"); Maybe this will help, pipseeker and traderwin 2 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.