⭐ 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!
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, ⭐ traderwin and pipseeker 2
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now