That was simply AMAZING! I am a custom software programmer and that was beyond cool. Thank you!
@TOSIndicators Жыл бұрын
Thanks for the kind words, Mike! Much appreciated :-).
@marthameredith46156 ай бұрын
You explain everything so well, even I can't get it wrong. Thank you!
@neuvocastezero1838 Жыл бұрын
Thank you, excellent tutorial as always.
@TOSIndicators Жыл бұрын
My pleasure!
@KingSolomon88Ай бұрын
Awesome. Great work keep it up.
@TOSIndicatorsАй бұрын
Thanks a lot!
@dwaynecox68203 ай бұрын
Feels like it is a synergy between setups and edge.
@cryptok70019 ай бұрын
THANKS ALOT THIS IS POWERFUL.
@gulee10 ай бұрын
Very helpful tutorial!! Thanks!!!
@TOSIndicators10 ай бұрын
Thank you!
@tomcalloway-su1zj2 ай бұрын
great video just one ? where did you find the bars at the end of your scan with the different colors
@TheUndertaker199 ай бұрын
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!
@IvyQuinteros10 ай бұрын
Thank you !!
@devonk2985 ай бұрын
these are amazing!
@TOSIndicators5 ай бұрын
I'm glad to hear that :)
@tomardp5596 Жыл бұрын
nice thanks for staked ema
@surrya500 Жыл бұрын
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 Жыл бұрын
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 Жыл бұрын
Thanks!@@TOSIndicators
@serendipity1328 Жыл бұрын
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 Жыл бұрын
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 Жыл бұрын
@@TOSIndicators Thanks and solid tutorial as usual!
@Mark-y7b6f23 күн бұрын
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?
@harirajagopal39797 ай бұрын
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!
@TOSIndicators7 ай бұрын
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.
@edcollinge14228 ай бұрын
Hello, on your screen after running bull scan last column with Red & Yellow bars, title just shows MAR…. what would be that column? thanks
@TOSIndicators8 ай бұрын
Hi Ed - That's the Market Pulse dashboard script, which is available for free download here: tosindicators.com/dashboards/market-pulse-dashboard
@alejandroalvarez94504 ай бұрын
Hi why my def EMA 8 = ExpAverage (close;8 is on Red and don’t let me click ok can you help me thanks
@TOSIndicators4 ай бұрын
Hi Alejandro - It should be def EMA8 = ExpAverage(close,8);
@alejandroalvarez94504 ай бұрын
Thanks now is working
@sranjan68874 ай бұрын
does this software works for indian market
@TOSIndicators4 ай бұрын
Not at the moment
@cashreckless7969 Жыл бұрын
How do you get the squeeze alert
@TOSIndicators Жыл бұрын
The "SqueezeAlert" plot is built into the indicator as an output.