The Universe of ThinkScript - Your One Stop Research Shop!

I call this "thermomixIndicator"

Code:
#Name: ChrisStoplight
#Programmed By: Chris Ball (xxx) on #1/31/09
#Added Choppiness and Squeeze Indicator by Mobius@Thinkscript Lounge
#Added FW_Mobo_Basic
#Modified to add/change indicators
declare lower;
input showlabels = no;
input showclouds = yes;
input rsilength = 5;
def c = close;
def h = high;
def l = low;
def o = open;

#MOMENTUM
input lengthmo = 5;
def Momentum = c - c[lengthmo];
plot mopos = if Momentum >= 0 then 3 else 2;
mopos.SetDefaultColor(Color.GREEN);
plot moneg = if Momentum < 0 then 3 else 2;
moneg.SetDefaultColor(Color.RED);
AddCloud(if showclouds then mopos else Double.NaN, if showclouds then moneg else Double.NaN, Color.GREEN);

#CCI
input lengthcci = 13;
def pricecci = c + l + h;
def linDev = LinDev(pricecci, lengthcci);
def CCI = if linDev == 0 then 0 else (pricecci - Average(pricecci, lengthcci)) / linDev / 0.015;
plot cci1 = if CCI >= 0 then 4 else 3;
cci1.SetDefaultColor(Color.GREEN);
plot cci2 = if CCI < 0 then 4 else 3;
cci2.SetDefaultColor(Color.RED);
AddCloud(if showclouds then cci1 else Double.NaN, if showclouds then cci2 else Double.NaN, Color.GREEN);

#RSI
def rsi = reference RSI(length = rsilength)."RSI";
plot rsi1 = if rsi >= 50 then 5 else 4;
plot rsi2 = if rsi < 50 then 5 else 4;
rsi1.SetDefaultColor(Color.GREEN);
rsi2.SetDefaultColor(Color.RED);
AddCloud(if showclouds then rsi1 else Double.NaN, if showclouds then rsi2 else Double.NaN, color1 = Color.GREEN);

#Bollinger Bands MOBO
input lengthmobo = 10;
input Num_Dev_Dn = -0.8;
input Num_Dev_up = 0.8;

def sDev = StDev(data = c, length = lengthmobo);

def Midmobo = Average(c, length = lengthmobo);
def Lowermobo = Midmobo + Num_Dev_Dn * sDev;
def Uppermobo = Midmobo + Num_Dev_up * sDev;
def upmobo = if upmobo[1] == 0 and c >= Uppermobo then 1 else if upmobo[1] == 1 and c > Lowermobo then 1 else 0;
def upmo = if upmobo and c > Uppermobo then 1 else 0;
def dnmo = if !upmobo and c > Lowermobo then 1 else 0;
plot mobo1 = if upmobo == 1 then 6 else 5;
mobo1.SetDefaultColor(Color.GREEN);
plot mobo2 = if upmobo == 0 then 6 else 5;
mobo2.SetDefaultColor(Color.RED);
AddCloud(if showclouds then mobo1 else Double.NaN, if showclouds then mobo2 else Double.NaN, Color.GREEN);

#Trend
#Choppiness Indicator from Mobius @My Trade with color changes by Lar
#Set ADX & SMA to how you trade
#Indicates Trending or Chop along with current ADX level

def ADXLength = 5; #TOS default 10
input AverageType = AverageType.HULL;
def AvgLength = 5; #TOS default 8
def Lengthchop = 8;
def Signal = 3;
def Choppy = 61.8;
def MidLine = 50;
def Trending = 38.2;


def ADX = Round(reference ADX(length = ADXLength), 0);
def AVG = MovingAverage(AverageType = AverageType, c, AvgLength);
def CIB = ((Log(Sum(TrueRange(h, c, l), Lengthchop) /
(Highest(if h >= c[1] then h else
c[1], Lengthchop) -
Lowest( if l <= c[1] then l else c[1], Lengthchop)))
/ Log(10)) / (Log(Lengthchop) / Log(10))) * 100;
def CI = CIB;

#Choppiness/Trend Indicator
plot chop = if CI > MidLine then 7 else 6;
chop.SetDefaultColor(Color.YELLOW);
plot trend1 = if CI < MidLine and c > AVG then 7 else 6;
trend1.SetDefaultColor(Color.GREEN);
plot trend2 = if CI < MidLine and c < AVG then 7 else 6;
trend2.SetDefaultColor(Color.RED);
AddCloud(if showclouds then chop else Double.NaN, if showclouds then trend1 else Double.NaN, Color.YELLOW, Color.GREEN);
AddCloud(if showclouds then chop else Double.NaN, if showclouds then trend2 else Double.NaN, Color.YELLOW, Color.RED);

#Overall
plot uptrend = if mopos == 3 and cci1 == 4 and rsi1 == 5 and mobo1 == 6 then 8 else 7;
uptrend.SetDefaultColor(Color.GREEN);
plot dntrend = if moneg == 3 and cci2 == 4 and rsi2 == 5 and mobo2 == 6 then 8 else 7;
dntrend.SetDefaultColor(Color.RED);
AddCloud(uptrend, dntrend, Color.GREEN, Color.RED);


#Squeeze by Mobius @ My Trade with color mod by Lar
#Look at Cloud Color as a possible indication of direction once squeeze ends
def nK = 1.5;
def nBB = 2.0;
def lengthsqueeze = 20;

def BBHalfWidth = StDev(c, lengthsqueeze);
def KCHalfWidth = nK * Average(TrueRange(h, c, l), lengthsqueeze);
def isSqueezed = nBB * BBHalfWidth / KCHalfWidth < 1;

#Squeeze for Longer Term Trend Indicator

plot BBS_Ind = if isSqueezed then 8.2 else Double.NaN;
BBS_Ind.SetDefaultColor(Color.DARK_ORANGE);
BBS_Ind.SetPaintingStrategy(PaintingStrategy.POINTS);
BBS_Ind.SetLineWeight(2);
BBS_Ind.HideBubble();

#Line Spacer
plot line9 = 9;
line9.SetDefaultColor(Color.DARK_GRAY);

AddLabel(showlabels, "MOMENTUM " + Round(Momentum, 3), if Momentum >= 0 then Color.GREEN else Color.RED);
AddLabel(showlabels, "CCI " + Round(CCI, 0), if CCI >= 0 then Color.GREEN else Color.RED);
AddLabel(showlabels, "RSI " + Round(rsi, 0), if reference RSI(length = rsilength)."RSI" >= 50 then Color.GREEN else Color.RED);
AddLabel(showlabels, if upmobo and upmo then "Mobo Above Upper" else if !upmo and dnmo then "Mobo Below Lower" else "Mobo Inside", if upmobo == 1 then Color.GREEN else Color.RED);
AddLabel(showlabels, if CI > MidLine then "CHOP " + Round(CI, 0) else "TRENDING " + Round(CI, 0), if CI > MidLine then Color.YELLOW else Color.WHITE);
AddLabel(showlabels, "ADX " + ADX, if CI > MidLine then Color.YELLOW else Color.WHITE);
AddLabel(showlabels, if uptrend == 8 then "Trend All Up " else if dntrend == 8 then "Trend All Down " else "Trend Mixed ", if uptrend == 8 then Color.GREEN else if dntrend == 8 then Color.RED else Color.GRAY);
#Count of Periods in consecutive squeeze
#rec count = if isSqueezed then count[1] + 1 else 0;
#AddLabel(yes, if isSqueezed then Concat("Squeeze ", count) else "No Squeeze", Color.DARK_ORANGE);


495f458da3765299f6716b521b0619fc.png
@ugaotrader Thanks for posting but this one is missing labels. We already have the original in Tutorials Section. The title is Multicolinearity.
 
Last edited:

Join useThinkScript to post your question to a community of 21,000+ developers and traders.

Welcome, @ugaotrader your contributions are welcome. Please be sure that we don't already have it. Use the search at top right of page.

- The Universe of Thinkscript is extremely deep. I noticed that you posted a few items from JQ. His OneNote is kept for all of us as a way of giving back. Take time to read thru that and get familiar to what is in there.
One caution, many of his scripts are experiments to learn about how studies work. He may or may not actually use them.

- If a study, scan, watchlist, or strategy is asked about, go ahead and answer it if your sure of the answer. Just don't post for the sake of posting.

- If something works for you, go ahead and say so in the appropriate forum, as you have done. Feel free to explain how what you do works.

- Sometimes I have mentioned a website too often and @BenTen has had to shut me down as well. Leave those videos out until there is an appropriate & specific thread for it.

Please fill out your signature line, and welcome from Spain.
We are now world-wide @BenTen ! Singapore to Spain, useThinkscript has things covered! 🌐🆒
 
Hi @RobertPayne I don't have any pull with the curator of our OneNote. I'd be happy to if I could, but he's not a member here.
JohnnyQuotron is the name of the Gent that keeps this updated. He can be reached via mytrade or in TSL.
I wish I had better news for you.
 
I attended the Trader Expo this week and today (2/22) I watched and had a chance to speak with Cindy Faber and learn so much from her. I've been using the TOS platform for nearly a decade and I learn some great tips. She mentioned that all of the past swimlessons on scripts have been archived, so I email TOS support to get a list of them all.

Here is the list. This is an incredible wealth of scripts. Enjoy all.

(To add the script or chart setup, copy the URL, select "Setup" on the upper right and select "Open shared item")


alert Relative Vol Std Dev: https://tos.mx/ozZx1u
alert price 10% or more lower than yesterday's close: https://tos.mx/xh6qx6
NOTE: automatic reset is already in this alert
but you need to click on tiny padlock to unlock it, and How to Notify to make desired selection



chart grid Pre-Market view: https://tos.mx/Ci0eVH
chart grid Weekend Routine: https://tos.mx/cG2W4T



chart setup Bierman Basic: https://tos.mx/Errsr8
chart setup Bierman Paralax View: https://tos.mx/khnxFi
chart setup Bierman Quad (Futures-Based Intraday): https://tos.mx/Cyjtr6
chart setup Bierman Quad: https://tos.mx/app4nE
chart setup Intraday Contrarian: https://tos.mx/R7A6kU
chart setup Intraday Momentum: https://tos.mx/jeYjiN
chart setup Intraday Support/Resistance: https://tos.mx/Cyjtr6
chart setup SPX with ImpVolatility study and VIX comparison: https://tos.mx/B5AKB2



chart strategy Donchian_Channel DOWNtrend: https://tos.mx/chn8QV
chart strategy Donchian_Channel UPtrend: https://tos.mx/ZR7BfU



chart study ADX with reminder labels: https://tos.mx/ZDjng8
chart study Binary Scan: https://tos.mx/5YNPNG
chart study Bollinger_Cloud: https://tos.mx/az0yT6
chart study CamarillaPoints cloud: https://tos.mx/BA4lre
chart study count times VIX over 26: https://tos.mx/d9slfB
chart study Daily_change_labels: https://tos.mx/JcO0Fu
chart study DMI with ADX line: https://tos.mx/XwtHSD
chart study DMI with ADX line and Alerts: https://tos.mx/5kaZG7

updated chart study earnings alert for your TOS chart (includes MMM in dollars, percent, and as a shaded rectangle on the chart)
NOTE: use Edit Studies box to turn off vertical lines and arrows at past earnings dates
https://tos.mx/EZHe9a


chart study (example of work around for being able to access Bid or Ask in a custom chart study): https://tos.mx/yGUo11

chart study fib fans: https://tos.mx/X3JtZh
chart study fib retracements with alerts: https://tos.mx/pv4Iep
chart study fib time series: https://tos.mx/XBsqDr
chart study for monthly expiration Friday: https://tos.mx/hGGaN9
NOTE: setlement symbols in a label + settlement vs prior day close

chart study horizontal line between current price bar and price bubble on right side of the chart: https://tos.mx/kGquYz

chart study Horizontal Line at current price: https://tos.mx/ZbnRy4
NOTE: default extends 60 bars into the past, Edit Study from 60 to 1 to only have it extend into the future

chart strategy Ichimoku cloud: https://tos.mx/0ZnlcN
chart study Ichimoku_with_alerts: https://tos.mx/Inwq67
chart study Ichimoku with arrows at bull/bear triggers: https://tos.mx/HatlSA
chart study Ichimoku with instructions and alerts: https://tos.mx/Inwq67
chart study Index Watch (4 indexes vs highs): https://tos.mx/GbX2JS
NOTE: This study works on any stock or ETF symbol to show how much each index has dropped from its 52-week high

chart study ImpVolatility with horizontal line at 16: https://tos.mx/y7xP1x
NOTE: sq. root of 252 = 16 therefore IV of 16 implies a 1% 1-day expected move

updated chart study ImpVolatility for futures charts (includes IV percentile and IV percentile rank labels): https://tos.mx/PHC0uy
updated chart study IV percentile vs. IV percentile rank and "normal" IV: https://tos.mx/efI2EX
chart study IV percentile rank with HINTS: https://tos.mx/X094cx
chart study IV percentile oscillator: https://tos.mx/TokDpV
chart study label $TICK at extremes: https://tos.mx/upLe4A
chart study label Change from Open: https://tos.mx/KzmR5E
chart study label Earnings Alert with MMM: https://tos.mx/GQkloD
updated chart study label Day Net and Percent Change: https://tos.mx/RKfPQW
chart study label Day volume: https://tos.mx/Is31p9
chart study label Index Watch (percent off 52-wk high): https://tos.mx/GbX2JS

chart study label Percent off High: https://tos.mx/OXyWGT
HINT: Try this custom study on chart of $DJSH Shanghi Index and on chart on new 52-wk high today to see how it works on a symbol that is down and a symbol that hit new 52-week high today

chart study label for MMM expressed in dollars and percent (but invisible if no MMM top of Trade tab): https://tos.mx/9GuAoP
chart study label MMM with bubbles and shaded MMM range: https://tos.mx/I4PNN5
chart study label new 52-wk high/low: https://tos.mx/7ZRmeB
chart study label $TICK at extremes: https://tos.mx/upLe4A
chart study label VIX all time low: https://tos.mx/SnACKr
chart study label VWAP: https://tos.mx/goEvi8
chart study label What Day is It? https://tos.mx/Uq76Vk
chart study label YTD-MTD-WTD percent returns: https://tos.mx/TTNql7
updated chart study label YTD-MTD-WTD percent returns: https://tos.mx/8ewB8Q
chart study label percent off 52-week high: https://tos.mx/OXyWGT
NOTE: Try this custom study on chart of $DJSH Shanghi Index and on chart of a symbol hitting new 52-week high today to see how it works on a symbol that is down and a symbol that hit new 52-week high today


chart study LeBron James Index (switch symbols and shares to create your own custom index): https://tos.mx/QNfOwj

chart study LinearReg with Channel based on ATR: https://tos.mx/QBPsN0
chart study MarketForecast with reversal levels: https://tos.mx/QGyhbj
chart study Market Forecast with labels: https://tos.mx/j0yiZy

chart study for monthly expiration Friday: https://tos.mx/hGGaN9
NOTE: setlement symbols in a label + settlement vs prior day close

updated chart study MMM label and horizontal lines at MMM: https://tos.mx/NOR22H
chart study OnBalanceVolume with ZeroLine: https://tos.mx/iXm5Zm
chart study percent_return labels: https://tos.mx/9P5nMg
chart study Projected SMA Price: https://tos.mx/gEAxhK
chart study PPO (from North V at TOS/TD): https://tos.mx/zQ6P90
chart study PSAR with Alerts: https://tos.mx/hT2e3M
chart study put call ratio: https://tos.mx/5yrvUw
chart study Single Period Percent Change: https://tos.mx/XVHcoo
chart study StochasticFull_with_BreakOuts: https://tos.mx/TOLooZchart study SwingThree1: https://tos.mx/ySGzE8
updated chart study for weekly expiry lines: https://tos.mx/vMQL1A
chart study Volume buying-vs-selling: https://tos.mx/X8DGDT
chart study World Trading Hours for intraday chart: https://tos.mx/GRsze1
chart study xx% Stop line vs SMA line with Alert: https://tos.mx/QZPp9E

chart study Sector/IndGroup chart label example: https://tos.mx/FTK84P
NOTE: open ThinkScript code and read the instructions to add YOUR symbols

chart study Volume-by-Price: https://tos.mx/vIRfvi
NOTE: change "Chart" to you desired time period to see net volume across the horizontal bars for your choice of time periods [instead of net total volume for entire chart]



scan Aroon Bearish Cross: https://tos.mx/t8JtPh
scan Aroon Bullish: https://tos.mx/nkfr0F
scan Aroon Overbought: https://tos.mx/mK9L91
scan Aroon Oversold: https://tos.mx/NqVhAQ
scan Bollinger Bandwidth Bulge: https://tos.mx/RC7e2s
scan Bollinger Bandwidth Squeeze: https://tos.mx/sjeXSi
scan Bollinger Percent B Zero Line: https://tos.mx/2u6i2D
scan candle patterns bearish: https://tos.mx/w3VMTZ
scan candle patterns bullish: https://tos.mx/2crV3F
scan CMF Bearish Crossover: https://tos.mx/RHAMzC
scan CMF Bullish Crossover: https://tos.mx/WjwYHK
scan Darvas Box: https://tos.mx/Pw8NIs
scan Darvas Box Bullish: https://tos.mx/lIKuGK
scan DIPlus/DIMinus Bullish: https://tos.mx/baA0d5
scan DMI Bearish: https://tos.mx/iQ5KZR
scan DMI Bullish: https://tos.mx/v3TeR4
scan DMI Stoch Extreme Overbought Cross: https://tos.mx/5FyuTT
scan divergence MACD bearish: https://tos.mx/TEd14y
scan divergence RSI bearish: https://tos.mx/23UUr4
scan divergence Stochastic bearish: https://tos.mx/5RuNzL
scan divergence both Stochastic and MACD bearish: https://tos.mx/wWbj1c
scan Earnings: https://tos.mx/SmaiUB
scan Fisher Transform Bullish: https://tos.mx/rja4nu
scan Ichimoku bearish: https://tos.mx/T6uE46
scan Ichimoku bullish: https://tos.mx/spOXRc
scan LinearReg Bearish: https://tos.mx/gM0601
scan MACD and Stochastic overbought: https://tos.mx/u4qxV5
scan Market Forecast Bearish: https://tos.mx/4FJ6Zo
scan Market Forecast Bullish: https://tos.mx/4x5sK0
scan Marubozu Bearish (3 bars): https://tos.mx/GCWdme
scan MFI Overbought Crossover: https://tos.mx/5uF1L1
scan MFI Oversold Crossover: https://tos.mx/1mdwuR
scan Potential Breakout: https://tos.mx/B0nMQe
scan price within xx% of MA line (edit it to your desired % and your desired MA line): https://tos.mx/djMBV5

scan PSAR Crossover Bearish: https://tos.mx/Vc1Xqa
scan PSAR Crossover Bullish: https://tos.mx/9DgkEP
scan for range bound symbols (ADX < 20): https://tos.mx/7U02Se
scan RSI Wilder Overbought: https://tos.mx/EpsvVl
scan SMA Crossover: https://tos.mx/hUC0RP
scan StdDevChannel Lower Full Data: https://tos.mx/yziTzm
scan StdDevChannel Upper Full Data: https://tos.mx/ZUB7o9
scan SwingThree1: https://tos.mx/mlvNuD
scan up 100% YTD and near 52-wk high: https://tos.mx/aD6jjF
scan Vortex Bearish: https://tos.mx/tvESKH
scan Vortex Bullish: https://tos.mx/uuQWxB

scan for stocks with earnings and MMM of __ percent: https://tos.mx/9RgQPA

scan range bound with high IV percentile rank (Iron Condor candidates): https://tos.mx/Ny8YRA
scan range bound with low IV percentile rank (Double Diagonal candidates): https://tos.mx/amcl7O
scan short put or short OTM put vertical – stock near lower support (on stock above 200SMA with positive earnings): https://tos.mx/04F555

IMPORTANT: after you import any Scan, go to Scan tab and click on top right menu icon to select the saved query. Then edit the filters and add any extra filters, and select watchlist of symbols with liquid options top left Scan In. Now click on top right menu icon and Save Query to save your changes

scan Retail Buying: https://tos.mx/V56YWM
NOTE: change price Increasing to Decreasing to create Retail Selling scan

updated scan Rising IV (in absence of earnings) – NEED to add either bullish or bearish filters if using to find potential breakouts: https://tos.mx/IlokCg

scan for stocks consolidating (ADX < 20) with ImpVolatility rising ... aka potential breakout trades: https://tos.mx/SKhesv



watchlist column BidAskSpread: https://tos.mx/991uyR
NOTE: you cannot scan for tight Bid Ask spread, but you can create a scan and Save Query ... then open the saved query as a watchlist and sort that watchlist by this custom Bid Ask spread column

watchlist column Down 20% or more (BearTerritory): https://tos.mx/xqVPc9
NOTE: add to watchlist of an index to see what percent of the stocks in an index are now in bear territory

watchlist column below 50 sma: https://tos.mx/ydBCyJ
watchlist column below 200 sma: https://tos.mx/rYEown
HINT: apply below 50sma and below 200sma to watchlist of Public-- >>S&P500 or other index and sort by that column to quickly see how many stocks in that index are currently above/below the 50 or 200 day moving average line

watchlist column Bull Bear: https://tos.mx/1XyUB2
watchlist column Extended Hours Last trade price: https://tos.mx/uWbicV
watchlist column IV percentile (current IV vs. "normal" IV): https://tos.mx/6IlMBw
watchlist column IV percentile rank (same number as bottom of Trade tab): https://tos.mx/CqIAZd
watchlist column MACD: https://tos.mx/tMAOzA
watchlist column MMM: https://tos.mx/QNMRSp
watchlist column MMM percent: https://tos.mx/VeyoaT
watchlist column Moving Avg Crossover: https://tos.mx/xNe8Ls
watchlist column new 52-wk high or new low: https://tos.mx/GQr3sV
watchlist column Next day before x-div: https://tos.mx/YGnP40
watchlist column Next earnings date: https://tos.mx/cnIcIW
watchlist column percent change MTD: https://tos.mx/I7pq6i
watchlist column percent change WTD: https://tos.mx/2Zf5nY
watchlist column percent change YTD: https://tos.mx/oSOAg5
watchlist column PSAR bullish or bearish: https://tos.mx/fp6vKQ
watchlist column RSI Wilder: https://tos.mx/LO9Zsi
watchlist column StockSizzle (unusual underlying volume): https://tos.mx/43abXO

watchlist column (meant to be used on Trade tab option chain - turns red when volume > OI at that strike): https://tos.mx/lqD8d0
HINT: add OpenInt, Volume, and this custom column to your option chain to see how it works



Watch List symbols Market Relationships: https://tos.mx/Y19CxH
Watch List symbols Market Relationships (updated): https://tos.mx/cr4gD8
Watch List symbols Morning Radar indices overview: https://tos.mx/s4dE1f
Watch List symbols New World: https://tos.mx/dh4WE4
Watch List symbols optionable sector ETFs: https://tos.mx/MY2OOA


example of how to add a horizontal line(s) to any chart study: https://tos.mx/iXm5Zm
example of how to add a moving average line to any chart study: https://tos.mx/uP6AfE

updated
NOTE: When in a grid you lose the far top right of chart Last trade, Day change, and Percent change label
Use this custom study to have that information on every chart in your grid.
chart study label Day Net and Percent Change with Day volume: https://tos.mx/lZdFsj


chart study line chart of quarterly EPS changes: https://tos.mx/nKN9il
HINT: try this study on a 5-year weekly chart

chart study futures cheat sheet labels: https://tos.mx/3hrCFl
NOTE: this chart study shows tick size, P/L for a 1 tick move, shares equivalent, and risk per contract(futures only)

chart study label $TICK at extremes: https://tos.mx/upLe4A


chart study futures and forex cheat sheet labels: https://tos.mx/mEVIqF
NOTE: this chart study shows tick size, P/L for a 1 tick move, shares equivalent, and risk per contract (futures or forex)
 
For:

chart study put-call ratio: https://tos.mx/5yrvUw

I did the following settings:

period 20
exp 20191118
exp 20191206
exp20191213

However, nothing showing on /CL. Any ideas why is that?

@Nomak Noticed that TOS.MX link you posted was from June 2015, there may be other similar scripts out there that are newer. Run a search on this website. @BenTen has done a stellar job in organizing the info posted here so easy to find.
 
@caique Thanks for pointing this out. Below is the original file from StanL from our Onenote. You can also get a pdf of it below.
Mr Shingler has done a nice job with putting it on his web page.
As a side note, this file is what some of the TOS help desk staff use when they get stuck.
I had to laugh when they directed me to it!
https://onedrive.live.com/redir?res...F file|2dd9ed19-44e9-4f45-a8d7-b00efc857ea5/)
 

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
449 Online
Create Post

Similar threads

Similar threads

The Market Trading Game Changer

Join 2,500+ subscribers inside the useThinkScript VIP Membership Club
  • Exclusive indicators
  • Proven strategies & setups
  • Private Discord community
  • ‘Buy The Dip’ signal alerts
  • Exclusive members-only content
  • Add-ons and resources
  • 1 full year of unlimited support

Frequently Asked Questions

What is useThinkScript?

useThinkScript is the #1 community of stock market investors using indicators and other tools to power their trading strategies. Traders of all skill levels use our forums to learn about scripting and indicators, help each other, and discover new ways to gain an edge in the markets.

How do I get started?

We get it. Our forum can be intimidating, if not overwhelming. With thousands of topics, tens of thousands of posts, our community has created an incredibly deep knowledge base for stock traders. No one can ever exhaust every resource provided on our site.

If you are new, or just looking for guidance, here are some helpful links to get you started.

What are the benefits of VIP Membership?
VIP members get exclusive access to these proven and tested premium indicators: Buy the Dip, Advanced Market Moves 2.0, Take Profit, and Volatility Trading Range. In addition, VIP members get access to over 50 VIP-only custom indicators, add-ons, and strategies, private VIP-only forums, private Discord channel to discuss trades and strategies in real-time, customer support, trade alerts, and much more. Learn all about VIP membership here.
How can I access the premium indicators?
To access the premium indicators, which are plug and play ready, sign up for VIP membership here.
Back
Top