Buy SMI crossover and Sell SMI crossover For ThinkOrSwim

jeffc

New member
Below is the script to buy the SMI crossover and to sell the SMI crossover. This can be done long or short. Arrows on the chart are provided when there is a crossover about to happen on the SMI lower chart. There will be several entries. Works on all time frames. To take the best trades, try using another indicator with it such as the RSI, Momentum, Ema and so on. Practice with it first. Can be used on different time frames. I hope this is gold for someone. Thank you and happy trading.


input SMI_crossover_arrows = yes;

input over_bought = 40.0;
input over_sold = -40.0;
input percentDLength = 3;
input percentKLength = 5;

def min_low = Lowest(low, percentKLength);
def max_high = Highest(high, percentKLength);
def rel_diff = close - (max_high + min_low) / 2;
def diff = max_high - min_low;

def avgrel = ExpAverage(ExpAverage(rel_diff, percentDLength), percentDLength);
def avgdiff = ExpAverage(ExpAverage(diff, percentDLength), percentDLength);

def SMI = if avgdiff != 0 then avgrel / (avgdiff / 2) * 100 else 0;

def avgSMI = ExpAverage(SMI, percentDLength);

# SMI Arrows
plot uparrow = if !SMI_crossover_arrows then Double.NaN
else if SMI[-1] crosses above avgSMI[-1]
then SMI
else Double.NaN;
uparrow.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP);
uparrow.SetLineWeight(3);
uparrow.SetDefaultColor(GetColor(1));

plot downarrow = if !SMI_crossover_arrows then Double.NaN
else if SMI[-1] crosses below avgSMI[-1]
then SMI
else Double.NaN;
downarrow.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_DOWN);
downarrow.SetLineWeight(3);
downarrow.setDefaultColor(Color.Magenta);17183[/ATTACH]']
LrBmFjO.jpg
 

Attachments

  • LrBmFjO.jpg
    LrBmFjO.jpg
    316.2 KB · Views: 222
Last edited:

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

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
308 Online
Create Post

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