NexusFi: Find Your Edge


Home Menu

 



Categories Help    






ThinkOrSwim
ThinkOrSwim Downloads / ThinkOrSwim Indicators

Share ThinkOrSwim strategies and indicators.


Sort by
Filter

Show full/short entries Entries
TOS_OBV v1 5 *
This is a copy of Mike's OBV indicator that was being used in the price action thread (elite).

Credit goes to Mike for the logic, I just copied it into thinkscript.
 
Suggest other entries I might like
Details: TOS_OBV v1


November 18th, 2012
Size: 414 bytes
Downloaded: 656 times

Keywords: obv tos
MACD w Alerts, Arrows, Candlesticks and background Change Color 5 *
this is the MACD using 6-16-6 parameters.
When the MACD crosses up the candlestick and background change color.
When the MACD crosses down the candletick and background change color.
Alerts are trigger when the instance occurs. The arrows show on the first occurance.

The study is coded such by going into the the "edit" mode the colors of the arrows, candles and background can be changed to your preference.

RGB color codes can be found at https://www.rapidtables.com/web/color/RGB_Color.html

I am sure there are others where you one can find this information.

Study name describes its functions
 
Suggest other entries I might like
Details: MACD w Alerts, Arrows, Candlesticks and background Change Color


November 11th, 2012
Size: 1.97 KB
Downloaded: 661 times
MACD Dots on Crossover 5 *
# Waylock - 11/5/12 - [email protected]

# MACD Dots on Price Chart
# Shows Primary Signals only. Once a BuyAlert is issued another BuyAlert cannot be issued until after a SellAlert has been issued, etc.
# Change Displace value below to adjust where Dots are placed on the Price Chart

input displace = .001;

input fastLength = 6;
input slowLength = 16;
input MACDLength = 6;
input AverageType = {SMA, default EMA};

def Value = MACD(fastLength, slowLength, MACDLength, AverageType).Value;
def Avg = MACD(fastLength, slowLength, MACDLength, AverageType).Avg;

def BuyAlert = Value > Avg;
def SellAlert = Value <= Avg;

rec count=if BuyAlert==1 and count[1]==0 then 1 else if SellAlert==0 and count[1]>=1 then count[1]+1 else 0;

rec count1=if SellAlert==1 and count1[1]==0 then 1 else if BuyAlert==0 and count1[1]>=1 then count1[1]+1 else 0;

def PrimaryBuyAlert = BuyAlert==1 and count==1;
def PrimarySellAlert = SellAlert==1 and count1==1;

plot DotUp = if PrimaryBuyAlert then Low * (1 - displace) else double.nan;
DotUp.SetPaintingStrategy(PaintingStrategy.POINTS);
DotUp.SetDefaultColor(Color.BLUE);
DotUp.SetLineWeight(5);
DotUp.HideBubble();
DotUp.HideTitle();

plot DotDn = if PrimarySellAlert then High * (1 + displace) else double.nan;
DotDn.SetPaintingStrategy(PaintingStrategy.POINTS);
DotDn.SetDefaultColor(Color.YELLOW);
DotDn.SetLineWeight(5);
DotDn.HideBubble();
DotDn.HideTitle();
 
Suggest other entries I might like
Details: MACD Dots on Crossover


November 5th, 2012
Size: 1.38 KB
Downloaded: 313 times
MACD Colored Candles on Crossover 4 *
Atttached file uses the parameters 6-16-6 EMA vs the code parameters below.

# Waylock on [email protected]
# created 11/5/12

input fastLength = 12;
input slowLength = 26;
input MACDLength = 9;
input AverageType = {SMA, default EMA};

def Value = MACD(fastLength, slowLength, MACDLength, AverageType).Value;
def Avg = MACD(fastLength, slowLength, MACDLength, AverageType).Avg;

# Changes color of bars
AssignPriceColor(if Value > Avg then Color.LIME else if Value < Avg then
color.MAGENTA else color.current);
 
Suggest other entries I might like
Details: MACD Colored Candles on Crossover


November 5th, 2012
Size: 471 bytes
Downloaded: 218 times

Keywords: candles macd colored
CCI Cloud Histogram 5 *
Version 1 - CCI Cloud audible alerts. To have arrows placed on your chart, download the CCI Cloud Arrrows study.

Go to download called CCI - Arrows for the chart arrows to appear.
 
Suggest other entries I might like
Details: CCI Cloud Histogram


August 28th, 2012
Size: 1020 bytes
Downloaded: 582 times
CCI Cloud Arrows
Version 1 - CCI Cloud with arrows. This study only places arrows on your chart. You will need to import the study CCI for the histogram shown in the screenshot.

Go to download called CCI Cloud for the subgraph historgram.
 
Suggest other entries I might like
Details: CCI Cloud Arrows


August 28th, 2012
Size: 1.08 KB
Downloaded: 442 times
MACD color with Alert
MAcd with alert when it crosses 0 line.
Thanks to Richard Housner ( Yahoo thinkorswim )who modified my earlier code. If you choose to modify please post the update for every one to use.
 
Suggest other entries I might like
Details: MACD color with Alert


August 28th, 2012
Size: 1.45 KB
Downloaded: 316 times
RSI with BBands
This study plots Wilder's RSI with Bollinger Band on it.
Based on free Thinkscripter's Bbands_Macd study
 
Suggest other entries I might like
Details: RSI with BBands


March 12th, 2012
Size: 1.42 KB
Downloaded: 520 times
Slope Directional Line 3 *
This is a port of the mq4 slope directional line indicator. From what I have gathered, the basic formula is:

2*WMA(x, period/2) - WMA(x, period);

This indicator is the direct implementation of this formula complete with directional colors.
 
Suggest other entries I might like
Details: Slope Directional Line


May 19th, 2011
Size: 272 bytes
Downloaded: 552 times
Rubber Band 3 *
Port of the rubber band indicator for ToS.
 
Suggest other entries I might like
Details: Rubber Band


December 27th, 2010
Size: 680 bytes
Downloaded: 594 times

Keywords: band rubber
 



 
Category
 




© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top