trend

  1. BenTen

    Opening Range Indicator for ThinkorSwim with Fibonacci Levels

    Here is another version of the Opening Range Breakout indicator I mentioned in this post. thinkScript Code # def na=double.nan; # # Define time that OR begins (in hhmm format, # 0930 is the default): # input ORBegin = 0930; # # Define time that OR is finished (in hhmm format, # 10:00 is...
  2. BenTen

    Repaints MTF EBMATRIX Buy and Sell Signals Indicator for ThinkorSwim

    thinkScript Code #EBMATRIX def nan = Double.NaN; # def iData aggregations def h = high; def L = low; def oD = open(period = AggregationPeriod.DAY); def hD = high(period = AggregationPeriod.DAY); def lD = low(period = AggregationPeriod.DAY); def cD = close(period = AggregationPeriod.DAY); def...
  3. BenTen

    Trend Study by Accident Indicator for ThinkorSwim

    input length = 20; input price = OHLC4; def v = volume; def pD = if price - price[1] != 0 then price - price[1] else pD[1]; def pvD = AbsValue(v - v[1]) / pD; script Scale { input c = 0; input Min = 0; input Max = 1; def hh = HighestAll(c); def ll =...
  4. BenTen

    Onset Trend Detector Indicator for ThinkorSwim

    This is the Onset Trend Detector study, a NO-LAG oscillator that assesses trends by John F. Ehlers. This oscillator combines two filters, the Super Smoother Filter and the Roofing Filter, also, designed by Ehlers. The information from these filters goes through an automatic gain control...
  5. BenTen

    Repaints MTF Price Trend Indicator for ThinkorSwim

    This is a fairly simple indicator for ThinkorSwim that shows the price trend in the candles. Created by Drew Griffith. thinkScript Code declare upper; input trail = 1; input displace = 1; input aggregationperiod = aggregationperiod.day; def new_high = close > highest(high(period =...
  6. BenTen

    Trend Quality Indicator (With Alert) For ThinkOrSwim

    This is a Trend Quality Indicator for ThinkorSwim shared by Anupam Bagchi who is a data scientist. This indicator is useful for showing buying, selling, and sideways action. Green = buying pressure Red = selling pressure Yellow = sideways The Trend Quality Indicator (TQI) is an important tool...
  7. BenTen

    Supertrend Indicator by Mobius for ThinkorSwim

    This is a Supertrend indicator for ThinkorSwim created by Mobius. The complete set of discussions from prior to 2021 can be found: https://usethinkscript.com/threads/archived-supertrend-indicator-by-mobius-for-thinkorswim.12346/ thinkScript Code for Supertrend # Mobius # SuperTrend # Chat...
  8. BenTen

    Bollinger Bands and Stochastic Scalping Indicator for ThinkorSwim

    If you like to trade or scalp on the shorter time frame such as the 2m, 5m, and 15m, this indicator is for you. The Scalper indicator generates buy and sell signals based on the Bollinger Bands, Stochastic Full, RSI, MFI, and IMI (Intraday Momentum Index). thinkScript Code # Scalper # Drew...

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