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: mv2000
About
User Name: mv2000
Groups: Gold User, Member, Platinum User, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Gender:
Statistics
Joined: Monday, April 16, 2012
Last Visit: Thursday, December 19, 2013 5:57:28 PM
Number of Posts: 2
[0.00% of all post / 0.00 posts per day]
Avatar
Last 10 Posts
Topic: How to export watchlist?
Posted: Sunday, September 15, 2013 2:33:34 PM

I would like to export a watchlist to Excel for further study - not just the symbols, but the indicators, too.  Any format will do, CSV, whatever.  TC2000 must have this ability.  Why can't I find it?

Topic: ConnorsRSI
Posted: Wednesday, August 21, 2013 11:00:26 AM

Bruce, you may be closer to Connors RSI than you think.  I have implemented it in C# on another platform, and I can tell you that Worden’s RSI(3) is the same as mine.  That’s one third of the composite indicator.  If Worden developers added the following three items, we could assemble Connors RSI on our own:

1)  We need the “streak” indicator, consecutive days closing up or down.

2)  We need an RSI function that takes streak, or any other series, as input.   

3)  We need a percentage rank function.  This is a function you ought to have in any case, and you have the data for a nice, long (fixed) lookback period.   

The PCF code for Connors RSI would then be: (RSI(C,3) + RSI(STK,2) + RANK(C/C1-1))/3.  You already know that, of course.  My point is that, by breaking the work into pieces, you add flexibility rather than a single (proprietary) indicator.

I also have an EasyScan that checks the other elements of Connors’ system, like ADX and close in range.  These are straightforward PCF.  By the way, I see Matt Radtke on this thread.  He works for Connors Research, and he graciously reminds us that you can test your results against free data on his site. 

I hope this helps.  Best of luck.