Jump to content

Recommended Posts

Posted

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,

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 account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...