Download software Tutorial videos
Subscription & data-feed pricing Class schedule


New account application Trading resources
Margin rates Stock & option commissions

Attention: Discussion forums are read-only for extended maintenance until further notice.
Welcome Guest, please sign in to participate in a discussion. Search | Active Topics |

Profile: afhale
About
User Name: afhale
Groups: Gold User, Member, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Gender:
Statistics
Joined: Friday, March 26, 2010
Last Visit: Sunday, May 5, 2019 12:22:33 PM
Number of Posts: 3
[0.00% of all post / 0.00 posts per day]
Avatar
Last 10 Posts
Topic: stocks and commodities magazine trading tips for rocketrsi
Posted: Tuesday, July 10, 2018 9:37:43 AM

thanks

Topic: stocks and commodities magazine trading tips for rocketrsi
Posted: Monday, July 9, 2018 3:46:26 PM
can anyone covert this to pcf  fot tc2000
 
 
   MyRSI Indicator     (C) 2005-2018   John F. Ehlers } Inputs: SmoothLength(8), RSILength(10); Vars: a1(0), b1(0), c1(0), c2(0), c3(0), Filt(0), count(0), CU(0), CD(0), MyRSI(0); //Compute Super Smoother coefficients once If CurrentBar = 1 Then Begin 
 a1 = expvalue(-1.414*3.14159 / (SmoothLength)); b1 = 2*a1*Cosine(1.414*180 / (SmoothLength)); c2 = b1; c3 = -a1*a1; c1 = 1 - c2 - c3; End; //SuperSmoother Filter Filt = c1*(Close + Close[1]) / 2 + c2*Filt[1] + c3*Filt[2]; //Accumulate "Closes Up" and "Closes Down" CU = 0; CD = 0; For count = 0 to RSILength -1 Begin If Filt[count] - Filt[count + 1] > 0 Then CU = CU + Filt[count] - Filt[count + 1]; If Filt[count] - Filt[count + 1] < 0 Then CD = CD + Filt[count + 1] - Filt[count]; End; If CU + CD <> 0 Then MyRSI = (CU - CD) / (CU + CD); Plot1(MyRSI); Plot2(0);
 

 

RocketRSI Indicator (C) 2005-2018 John F. Ehlers } Inputs: SmoothLength(8), RSILength(10); Vars: a1(0), b1(0), c1(0), c2(0), c3(0), Filt(0), Mom(0), count(0), CU(0), CD(0), MyRSI(0), RocketRSI(0); //Compute Super Smoother coefficients once If CurrentBar = 1 Then Begin a1 = expvalue(-1.414*3.14159 / (SmoothLength)); b1 = 2*a1*Cosine(1.414*180 / (SmoothLength)); c2 = b1; c3 = -a1*a1; c1 = 1 - c2 - c3; End; //Create half dominant cycle Momentum Mom = Close - Close[RSILength - 1]; //SuperSmoother Filter Filt = c1*(Mom + Mom[1]) / 2 + c2*Filt[1] + c3*Filt[2]; //Accumulate "Closes Up" and "Closes Down" CU = 0; CD = 0; For count = 0 to RSILength -1 Begin If Filt[count] - Filt[count + 1] > 0 Then CU = CU + Filt[count] - Filt[count + 1]; If Filt[count] - Filt[count + 1] < 0 Then CD = CD + Filt[count + 1] - Filt[count]; End; If CU + CD <> 0 Then MyRSI = (CU - CD) / (CU + CD); //Limit RocketRSI output to +/- 3 Standard Deviations IF MyRSI > .999 Then MyRSI = .999; If MyRSI < -.999 Then MyRSI = -.999; //Apply Fisher Transform to establish Gaussian Probability Distribution RocketRSI = .5*Log((1 + MyRSI) / (1 - MyRSI)); Plot1(RocketRSI); Plot2(0); R

Topic: stocks and commodities magazine trading tips for rocketrsi
Posted: Saturday, July 7, 2018 6:39:27 PM

can any one make a pcf for the indicator rocketrsi in the may issue