warmuth327 |
Gold User, Member, TeleChart
|
Registered User |
|
|
|
|
Gender: |
|
Tuesday, January 24, 2012 |
Tuesday, May 7, 2013 4:07:01 PM |
4 [0.00% of all post / 0.00 posts per day] |
|
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
|
Thanks Bruce,
That is what I had figured. Still not getting alignment....will keep trying.
Cheers,
Darren
|
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
|
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
|
|