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: tgilbert220
About
User Name: tgilbert220
Groups: Gold User, Member, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Unsure
Statistics
Joined: Monday, March 21, 2005
Last Visit: Friday, July 1, 2016 11:03:22 AM
Number of Posts: 9
[0.00% of all post / 0.00 posts per day]
Avatar
Last 10 Posts
Topic: Copying scan results to a watchlist
Posted: Tuesday, June 28, 2016 10:40:02 AM

How do I copy the results of a scan to a new watchlist, or add the results to an existing watchlist?  It should be simple, but I haven't  found how-to references.  Thanks for your help.

Topic: PCF for weekly WRSI
Posted: Friday, June 24, 2016 11:05:07 AM

How do I write a PCF for a weekly Wilder's RSI, with period 2, having occurred in the past 10  days? 

Is there a method for converting a daily PCF into a longer timeframe -- weekly, monthly, etc?

Thanks much for your help.

Topic: How can I tell a scan I want something to have occurred within the past 5 days?
Posted: Friday, June 10, 2016 3:06:08 PM

OMG, I'm so glad I asked, b/c I'd never have figured it out on my own.  Thank you so much!

Topic: How can I tell a scan I want something to have occurred within the past 5 days?
Posted: Friday, June 10, 2016 12:15:37 AM

For example, I want to have an RSI (period 2) <= 20, within the past 5 days.

I wrote "MIN(WRSI2,5) <= 20" but I&#39;m getting a "Formula Error." 

Thanks for your help.

Topic: How do I duplicate my daily chart and then paste it twice into my layout?
Posted: Thursday, June 9, 2016 11:43:55 PM

Thank you, Bruce.  That worked great.

Topic: How do I duplicate my daily chart and then paste it twice into my layout?
Posted: Thursday, June 9, 2016 1:38:43 PM

I&#39;ve currently got only my Daily chart on my template, along with a scan.  Now I want to use that Daily chart as a template and duplicate it twice, then modify two chart timeframes, so the layout results in Daily, Weekly, and Monthly charts on the template. 

I&#39;ve seen how to duplicate the Daily chart, but it&#39;s floating, so how do I paste them?

Topic: How can I get my TC2000 Stochastics to look like ThinkorSwim?
Posted: Thursday, June 9, 2016 1:26:26 PM

Thank you, Gentlemen.  That looks like it&#39;s a match for TOS.  Genius!

Topic: How can I get my TC2000 Stochastics to look like ThinkorSwim?
Posted: Wednesday, June 8, 2016 11:55:48 PM

I want to make my Stochastics indicator look the same as that in ThinkorSwim. Support recommended I review this article.

http://www.tc2000.com/tc2000help/#Indicators/Stochastics.htm#kanchor83

I did, but I&#39;m still having issues.

This is the code I&#39;m using in TOS.  (Note: you can ignore the extra lines being drawn at the bottom, as I already know who to draw them in TC2K).

#

# TD Ameritrade IP Company, Inc. (c) 2008-2014

# STODTP, Modified from StochasticFull, to add horizontal lines at 38, 50, 62

#

declare lower;

input over_bought = 80;

input over_sold = 20;

input KPeriod = 6;

input DPeriod = 5;

input priceH = high;

input priceL = low;

input priceC = close;

input slowing_period = 3;

input averageType = AverageType.SIMPLE;

def lowest_k = Lowest(priceL, KPeriod);

def c1 = priceC - lowest_k;

def c2 = Highest(priceH, KPeriod) - lowest_k;

def FastK = if c2 != 0 then c1 / c2 * 100 else 0;

plot FullK = MovingAverage(averageType, FastK, slowing_period);

plot FullD = MovingAverage(averageType, FullK, DPeriod);

plot OverBought = over_bought;

plot OverSold = over_sold;

FullK.SetDefaultColor(GetColor(6));

FullD.SetDefaultColor(GetColor(5));

OverBought.SetDefaultColor(GetColor(6));

OverSold.SetDefaultColor(GetColor(6));

 plot line38 = 38;

line38.setDefaultColor(getColor(5));

 plot line62 = 62;

line62.setDefaultColor(getColor(5));

plot line50 = 50;

line50.setDefaultColor(getColor(08));

In TC2K, I&#39;ve set %K = 6; %D = 5; Period = 3; Average Type = Simple

TC2K is close, but still not an exact match for TSO.  What other changes should I make?  Thanks for your help! 

 

 

Topic: Coding a Weekly Stochastic indicator
Posted: Sunday, July 13, 2008 8:58:12 PM
I have a PCF for daily Fast Stochastic coded as "STOC5.2."  How do I code a similar weekly stocastic indicator, using TC2000's STOC?