Find TTM Squeeze Setups Easily With This Free Scan

Поделиться
HTML-код
  • Опубликовано: 10 июн 2024
  • Learn how to build a powerful TTM Squeeze scan with just a few lines of code. We'll build a scan to find five red squeeze dots in a row, combined with stacked moving averages.
    Here's the scan we'll build:
    - Five RED squeeze dots in a row
    - Stacked Moving Averages (8, 21, 34 EMA and 50, 200 SMA)
    Download Links:
    ✅ Bullish and Bearish Squeeze Scans (Free) :
    www.tosindicators.com/scans/t...
    ✅ Triple Pro Squeeze Scan (Free for Volatility Box members):
    tosindicators.com/squeeze-cou...
    Not a Volatility Box member?
    ➜ Volatility Box:
    tosindicators.com/volatility-...
    -----------------------------------------------------------
    ⏱️ Here are video timestamps that might come in handy:
    0:00 - Scan Preview
    1:00 - TTM Squeeze Plot Variables
    2:45 - Download Links
    4:05 - Creating a Scan
    4:58 - Five Squeeze Dots in a Row
    9:00 - Stacked Moving Averages
    10:40 - Bringing Variables Together
    12:10 - Conclusion
    -----------------------------------------------------------
    ✅ Download the Futures Volatility Box here:
    www.tosindicators.com/volatil...
    ✅ Download the Stock Volatility Box here:
    www.volatilitybox.com/product...
    ✅ Watch the new Triple Pro Squeeze course here:
    www.tosindicators.com/squeeze...
    #ThinkOrSwim #SwingTrading #TTMSqueeze

Комментарии • 25

  • @marthameredith4615
    @marthameredith4615 11 дней назад

    You explain everything so well, even I can't get it wrong. Thank you!

  • @MikeCombe
    @MikeCombe 7 месяцев назад +6

    That was simply AMAZING! I am a custom software programmer and that was beyond cool. Thank you!

    • @TOSIndicators
      @TOSIndicators  7 месяцев назад

      Thanks for the kind words, Mike! Much appreciated :-).

  • @cryptok7001
    @cryptok7001 3 месяца назад +1

    THANKS ALOT THIS IS POWERFUL.

  • @user-vw9lj4ml6b
    @user-vw9lj4ml6b 3 месяца назад +1

    Thank you !!

  • @neuvocastezero1838
    @neuvocastezero1838 7 месяцев назад +2

    Thank you, excellent tutorial as always.

  • @tomardp5596
    @tomardp5596 7 месяцев назад +1

    nice thanks for staked ema

  • @gulee
    @gulee 4 месяца назад +1

    Very helpful tutorial!! Thanks!!!

  • @TheUndertaker19
    @TheUndertaker19 2 месяца назад +1

    Awesome indicator, man i love your collection, many thanks! im becoming subs very soon i believe. Question, JC's suggest better results when TTMZ being w stacked 8-21-34-55-89 emas, in your experience the 50-200 emas has shown better results or why you actually using them instead of the 55-89. Many thanks!

  • @serendipity1328
    @serendipity1328 7 месяцев назад +1

    Nice Video. Question: Is there a difference in bullStacked variable condition with and without if condition or are they one and the same meaning if condition in that variable is not really needed and just for readability purpose only? Same question for fiveDotsInaRow variables if condition, is that if condition really needed?

    • @TOSIndicators
      @TOSIndicators  7 месяцев назад +1

      The "if ... then 1 else 0" is there for readability only. Without it, you'll still have a boolean variable that returns either true or false (ie. 1 or 0).

    • @serendipity1328
      @serendipity1328 7 месяцев назад

      @@TOSIndicators Thanks and solid tutorial as usual!

  • @surrya500
    @surrya500 6 месяцев назад +1

    Thanks for video. should we not be waiting for one green dot before trading the position? If we wanted one green dot then what additional code would we need for that?

    • @TOSIndicators
      @TOSIndicators  6 месяцев назад +2

      Hi Mushtaq - Ideally, you would want to enter the position before the squeeze fires to capture most of the move. If you wanted to scan for the first green dot, you could use something like this instead:
      plot signal = TTM_Squeeze().SqueezeAlert == 1 and TTM_Squeeze().SqueezeAlert[1] == 0;

    • @surrya500
      @surrya500 6 месяцев назад

      Thanks!@@TOSIndicators

  • @harirajagopal3979
    @harirajagopal3979 20 дней назад

    Thank you for the detailed explanation, just found you guys!
    One question, when I add the code to my Custom study, as soon as I type the 'plot', I am unable to save the study, as in, the Ok button gets disabled.
    This is a real account that I am using.
    Any ideas appreciated. Thanks again!

    • @TOSIndicators
      @TOSIndicators  20 дней назад

      Guessing you might have an error that you'll need to resolve first -- you can check for errors at the bottom of the thinkScript editor window, or the triangle with an exclamation near the title.

  • @edcollinge1422
    @edcollinge1422 2 месяца назад

    Hello, on your screen after running bull scan last column with Red & Yellow bars, title just shows MAR…. what would be that column? thanks

    • @TOSIndicators
      @TOSIndicators  2 месяца назад

      Hi Ed - That's the Market Pulse dashboard script, which is available for free download here: tosindicators.com/dashboards/market-pulse-dashboard

  • @cashreckless7969
    @cashreckless7969 7 месяцев назад

    How do you get the squeeze alert

    • @TOSIndicators
      @TOSIndicators  7 месяцев назад

      The "SqueezeAlert" plot is built into the indicator as an output.