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: warmuth327
About
User Name: warmuth327
Groups: Gold User, Member, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Gender:
Statistics
Joined: Tuesday, January 24, 2012
Last Visit: Tuesday, May 7, 2013 4:07:01 PM
Number of Posts: 4
[0.00% of all post / 0.00 posts per day]
Avatar
Last 10 Posts
Topic: Colored indicators
Posted: Tuesday, May 7, 2013 3:26:59 PM

Hi...I see in another Worden product you can use paint schemes...is this possible in TC2000?

 

For example, if I have a moving average, can I have the bar green when it closes the bar up...red when it closes down...and yellow when it closes at the same value?

 

Thanks

Darren

Topic: Help converting tc2000 indicator to Thinkorswim
Posted: Friday, May 3, 2013 12:18:43 PM

Thanks Bruce,

That is what I had figured.  Still not getting alignment....will keep trying.

 

Cheers,

Darren

Topic: Help converting tc2000 indicator to Thinkorswim
Posted: Friday, May 3, 2013 11:36:34 AM

Here is the code from Thinkorswim if it helps.

input RSI_length = 14;
input over_bought = 80;
input over_sold = 20;
input RSI_choice = {default "RSI Wilder", "RSI EMA"};
input RSI_price = close;
input KPeriod = 14;
input DPeriod = 3;
input slowing_period = 1;
input smoothingType = {Default SMA, EMA};

def RSI;
switch (rsi_choice) {
case "RSI EMA":
    RSI = RSI_EMA(price = RSI_price, length = RSI_length);
case "RSI Wilder":
    RSI = RSIWilder(price = RSI_price, length = RSI_length);
}

plot FullK = StochasticFull(over_bought, over_sold, KPeriod, DPeriod, RSI, RSI, RSI, slowing_period, smoothingType).FullK;
plot FullD = StochasticFull(over_bought, over_sold, KPeriod, DPeriod, RSI, RSI, RSI, slowing_period, smoothingType).FullD;
plot OverBought = over_bought;
plot OverSold = over_sold;

 

Darren

Topic: Help converting tc2000 indicator to Thinkorswim
Posted: Friday, May 3, 2013 11:09:27 AM

Hi,

Have developed a trading strategy in TC2000 based on 15 minute StochRSI with the following parameters.  12,5,K3,D2.

Trying to duplicate the chart in Thinkorswim so I can put triggers on the indicator, but can't get the values to agree.

Here are the values available for StockRSI in TOS

RSI length  (assuming this is the 12 in TC2000)

K

D

RSI Type - Wilder's or EMA

Slowing (assuming 5 in TC2000)

Smoothing type - EMA or SMA

Price (close, open, high, low, hl/2, hlc/3, ohlc/4)

Any help lining these up so they match would be greatly appreciated.

 

Thanks,

Darren