MH's Buy and Sell Signals for ThinkorSwim

BenTen

Administrative
Staff member
Staff
VIP
Lifetime
A simple buy and sell signals indicator based on volume and price for ThinkorSwim. Not much was written about it.

Finding the high winning percentage trade signals.

WgnrOxf.png

7NcNAdz.png


thinkScript Code

Code:
# MH's Buy and Sell Signals
# Assembled by BenTen at useThinkScript.com
# Converted from https://www.tradingview.com/script/rEmMdtXy-Buy-Sell-Signals/

def signal = volume[3] < volume[2] and volume[2]<volume[1] and volume[1] > volume;
def bullish = close[3] < open[3] and close[2]<open[2] and close[1]<open[1];
def bearish = close[3] > open[3] and close[2]>open[2] and close[1]>open[1];
def bullish_signal = bullish and signal;
def bearish_signal = bearish and signal;

# Plot Signals
plot bull = bullish_signal;
bull.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP);
bull.SetDefaultColor(Color.CYAN);
bull.SetLineWeight(1);
plot bear = bearish_signal;
bear.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_DOWN);
bear.SetDefaultColor(Color.MAGENTA);
bear.SetLineWeight(1);
 

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

I like the simplicity of this one. I don't have any feedback on the intraday signals it provides, but I've glanced over this in combination with the wave trend and market force indicators on the one-year chart, and I like the signals I've seen to this point. Thanks for sharing!
 
im trying to make a scanner but i dont see any signal on my chart. do you have a scanner on this for bull or bear signal?

Code:
# MH's Buy and Sell Signals
# Assembled by BenTen at useThinkScript.com
# Converted from https://www.tradingview.com/script/rEmMdtXy-Buy-Sell-Signals/

def signal = volume[3] < volume[2] and volume[2]<volume[1] and volume[1] > volume;
def bullish = close[3] < open[3] and close[2]<open[2] and close[1]<open[1];
def bearish = close[3] > open[3] and close[2]>open[2] and close[1]>open[1];
plot bullish_signal = bullish and signal;
#def bearish_signal = bearish and signal;
 
@AshtheMan
  • There is nothing in this code to prevent it working on all timeframes. Apply it to what works best with your strategy.
  • There is no white plot line associated with this indicator. The only plots in this code are the arrows.
 

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
448 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