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!
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?
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;
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?
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).
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!
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.
That was simply AMAZING! I am a custom software programmer and that was beyond cool. Thank you!
Thanks for the kind words, Mike! Much appreciated :-).
You explain everything so well, even I can't get it wrong. Thank you!
Thank you, excellent tutorial as always.
My pleasure!
Feels like it is a synergy between setups and edge.
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!
THANKS ALOT THIS IS POWERFUL.
Awesome. Great work keep it up.
Thanks a lot!
Great video! My only question is, how do i write it at the end if I want the scanner to show me both the bearish and the bullish results together?
Create a plot variable that combines both the bullish and bearish signals into one variable.
great video just one ? where did you find the bars at the end of your scan with the different colors
Very helpful tutorial!! Thanks!!!
Thank you!
Thank you !!
nice thanks for staked ema
these are amazing!
I'm glad to hear that :)
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?
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;
Thanks!@@TOSIndicators
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?
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).
@@TOSIndicators Thanks and solid tutorial as usual!
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!
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.
At the " plot" line, line 15 of code, I get an error message that says " no such variable at line 15:1". The spot of "plot". What next?
Hello, on your screen after running bull scan last column with Red & Yellow bars, title just shows MAR…. what would be that column? thanks
Hi Ed - That's the Market Pulse dashboard script, which is available for free download here: tosindicators.com/dashboards/market-pulse-dashboard
does this software works for indian market
Not at the moment
Hi why my def EMA 8 = ExpAverage (close;8 is on Red and don’t let me click ok can you help me thanks
Hi Alejandro - It should be def EMA8 = ExpAverage(close,8);
Thanks now is working
How do you get the squeeze alert
The "SqueezeAlert" plot is built into the indicator as an output.