Thinkorswim Alert TTM Trend 30


Finally, an Alert Based on TTM Trend

Responding to numerous requests from viewers like you, this video shows how to add an Alert to the TTM Trend.

Thinkorswim Alert TTM Trend

Thinkorswim Alert TTM Trend

The TTM Trend is a licensed Study listed in Thinkorswim under the category name John Carter. For some reason the built in version does not provide audible alerts when the colors change from red to blue and back again. Well fortunately Thinkorswim provides a way to accomplish this without violating any copyright laws.

 

In this brief video you will see how the TTM Trend indicator is referenced from inside a custom study. We’ll explain how this is possible and then show you how to simply add a few lines of code to include the Alert feature.

Lean More:

Would you like to learn how to master the chart settings on Thinkorswim? Click here for our 3 part series: Thinkorswim Chart Settings Tutorial

DISCLAIMER: I AM NOT A CERTIFIED FINANCIAL ADVISOR AND NOTHING IN THIS VIDEO OR TEXT IS AN ADVERTISEMENT OR RECOMMENDATION TO BUY OR SELL ANY FINANCIAL INSTRUMENT. NOR IS THIS VIDEO OR TEXT INTENDED TO INSTRUCT YOU ON HOW TO MAKE BUY OR SELL DECISIONS USING ANY OF THESE INDICATORS.

*Thinkorswim is a chart analysis platform offered by TD Ameritradewww.tdameritrade.com

TD Ameritrade provides financial services including the trading of Stocks, Futures, Options and Forex.

 

Please be sure to share this page with your friends and colleagues. Leaving comments below is the best way to help make the content of this site even better.

 

Watch the video, Thinkorswim Alert TTM Trend below:

input compBars = 6;
input paintBars = yes;
def upTrend = TTM_Trend(compBars, paintBars).TrendUp;
def downTrend = TTM_Trend(compBars, paintBars).TrendDown;
def bullReversal = upTrend and downTrend[1] == yes;
Alert(bullReversal, "Bullish Trend", Alert.BAR, Sound.RING);
def bearReversal = downTrend and upTrend[1] == yes;
Alert(bearReversal, "Bearish Trend", Alert.BAR, Sound.RING);

About Pete Hahn

For those trying to contact me about our professional services you will find all those details here: https://www.hahn-tech.com/about/ Any questions not related to our professional services or premium indicators should be directed to the comment section of the applicable video or you may post a question in our Q&A Forum: https://www.hahn-tech.com/thinkorswim-forum-topics/

Questions? Comments? Post a review?

30 thoughts on “Thinkorswim Alert TTM Trend

  • Bob

    Pete, is there a way to trigger this alert without switching to the symbol in TOS? Idea is that I have 10 stocks in my watchlist and I would like to get an alert when any of them get the TTM Trend Alert you helped us create here. I could then switch over to that symbol on my chart. Is this possible?

  • John

    Hey Pete I was wondering if you can create one for the Hieken ash i or Renko charts with arrows and a scanner that can scan for stocks changing renko color bars after a series of red or green candles.

    Is it possible to have it for all time frames also l. I would be more than happy to know if this is possible, especially if we can get the alerts sent directly to our phones based on the watch list we select.

  • Armand

    Hi Peter there is a way you can make a TMF for the TTM squeeze but for the histogram ? I have the one for the Dots but i culd not find one the show the color for the histogram . thanks what you do is very helpful

    • Pete Hahn Post author

      I have no idea what “TMF” stands for. But if you have found the video for the TTM_Squeeze Dots then you will find the one for the TTM_Squeeze Histogram is listed immediately above it in the left-hand sidebar, under the TOS Watchlists topic.

    • Pete Hahn Post author

      Well it either works or it doesn’t. And if it doesn’t that most likely means you have not setup any of the notifications settings for your platform. Top right corner: Setup –> Application Settings –> Notifications

  • DAVID LOUDEN

    It seems as if the window in TOS 2020 is different than what shows up in your video in 2016. Also I can’t get the plot and the chart graph to show up in the same window. I can scroll way up and get plot but when I scroll down obviously the plot disappears. Do you have any ideas as to what is happening?

    • Pete Hahn Post author

      Tough to assist without a screenshot. The only thing that comes to mind is a chart setting named “Fit studies”. It’s listed under the “General” tab of the chart settings. Uncheck that if it’s checked and see if that clears up the chart. If not, consider posting a new question in the Q&A forum were you can provide a screenshot showing what you see on your chart.