May I know if this indicator repaints?This setup is most true to the video:
https://usethinkscript.com/threads/follow-line-indicator-for-thinkorswim.9789/page-3#post-100408
May I know if this indicator repaints?This setup is most true to the video:
https://usethinkscript.com/threads/follow-line-indicator-for-thinkorswim.9789/page-3#post-100408
In my observation, this indicator repaints until the candle closes. After that, it does not. I like the indicator.May I know if this indicator repaints?
https://usethinkscript.com/threads/follow-line-indicator-for-thinkorswim.9789/page-4#post-101173I found a very interesting positive youtube video with lots of comments today. It is named as :
FASTEST & Most AGGRESSIVE Best Indicators For ZERO Lag Scalping Trading With Price Action Strategy
can you share the code for your setupGreat Info. I've got these indicators in TOS now and also the Follow Line Indicator. Thanks to you guys. I'm using it to scalp E-mini S&P Futures. (I would put a screen shot but I am new to forum and haven't figured out how to do that yet) I want to use these indicators on a 5 minute candlestick chart but can't get the settings right. It lines up on a 15 minute chart but not on the 5. Anyone got this setup on a 5 minute chart yet?
I downloaded this setup....is this all you use to scalp es minis....if so how are you determining your entries exits etchttp://tos.mx/N05l77W
These are all the indicators you mention on a 5 minute chart. It seems to work well enough-if not can you please be specfic?
https://usethinkscript.com/threads/follow-line-indicator-for-thinkorswim.9789/page-4#post-101173can you share the code for your setup
I downloaded this setup....is this all you use to scalp es minis....if so how are you determining your entries exits etc
I find that using a Multi time frame set up can be useful to this as well. The example I am posting is for a 5/15 minute pairing for both Follow Line and the Hull 55. Learning from my last post, I have turned all the paint candle functionality off, the individual user can decide which indicator/time frame will do that if desired.can you share the code for your setup
I downloaded this setup....is this all you use to scalp es minis....if so how are you determining your entries exits etc
There is no "final" script. There are several scripts of several flavors that posters have provided that fit their style of trading.Liking the look of this setup. I have been running with Confirmation Candles. However looking for a simpler setup that gives buy and sell signals right on chart to use along with some other indicators I use that should work really well.
What post has the final script that was moved to TOS from trading view.
Thanks
https://usethinkscript.com/threads/follow-line-indicator-for-thinkorswim.9789/page-2#post-90045Can someone add an alert to the Follow the Line indicator to ding whenever there is an arrow signal....please and thank you
# Follow Line Indicator
# Coverted to ToS from TV by bigboss. Original © Dreadblitz
input BbPeriod = 21;
input BbDeviations = 1;
input UseAtrFilter = yes;
input AtrPeriod = 5;
input HideArrows = no;
def BBUpper=SimpleMovingAvg(close,BBperiod)+stdev(close, BBperiod)*BBdeviations;
def BBLower=SimpleMovingAvg(close,BBperiod)-stdev(close, BBperiod)*BBdeviations;
def BBSignal = if close>BBUpper then 1 else if close<BBLower then -1 else 0;
def TrendLine =
if BBSignal == 1 and UseATRfilter == 1 then
max(low-atr(ATRperiod),TrendLine[1])
else if BBSignal == -1 and UseATRfilter == 1 then
min(high+atr(ATRperiod),TrendLine[1])
else if BBSignal == 0 and UseATRfilter == 1 then
TrendLine[1]
else if BBSignal == 1 and UseATRfilter == 0 then
max(low,TrendLine[1])
else if BBSignal == -1 and UseATRfilter == 0 then
min(high,TrendLine[1])
else if BBSignal == 0 and UseATRfilter == 0 then
TrendLine[1]
else TrendLine[1];
def iTrend = if TrendLine>TrendLine[1] then 1 else if TrendLine < TrendLine[1] then -1 else iTrend[1];
plot buy = if iTrend[1]==-1 and iTrend==1 and !HideArrows then TrendLine else Double.NaN;
buy.SetPaintingStrategy(PaintingStrategy.ARROW_UP);
buy.SetDefaultColor(Color.GREEN);
buy.SetLineWeight(3);
plot sell = if iTrend[1]==1 and iTrend==-1 and !HideArrows then TrendLine else Double.NaN;
sell.SetPaintingStrategy(PaintingStrategy.ARROW_DOWN);
sell.SetDefaultColor(Color.RED);
sell.SetLineWeight(3);
plot tline = TrendLine;
tline.AssignValueColor(if iTrend > 0 then CreateColor(33,150,243) else CreateColor(255,82,82));
tline.SetLineWeight(2);
What is the best setting for intra-day trading on the 2 or 5 min chart for the /ES
MerryDay, will you please create a scan for me when close crosses above/below the Follow the Line, line? ThanksStock Hacker Scan For The Follow Line Indicator in ThinkOrSwim
Here is a scan link: http://tos.mx/RMnLtWM Click here for --> Easiest way to load shared links
View attachment 14310
@freedom Traders @Tradervic @hockeycoachdoug @darockra3
Great indicator. How would we be able to scan with this?Here is an MTF version
Code:# Follow Line Indicator MTF # Coverted to ToS from TV by bigboss. Original © Dreadblitz input period = AggregationPeriod.FIFTEEN_MIN; input BbPeriod = 21; input BbDeviations = 1; input UseAtrFilter = yes; input AtrPeriod = 5; input HideArrows = no; def h = high(period=period); def l = low(period=period); def c = close(period=period); def ATR = MovingAverage(AverageType.WILDERS, TrueRange(h, c, l), AtrPeriod); def BBUpper=SimpleMovingAvg(c,BBperiod)+stdev(c, BBperiod)*BBdeviations; def BBLower=SimpleMovingAvg(c,BBperiod)-stdev(c, BBperiod)*BBdeviations; def BBSignal = if c>BBUpper then 1 else if c<BBLower then -1 else 0; def TrendLine = if BBSignal == 1 and UseATRfilter == 1 then max(l-ATR,TrendLine[1]) else if BBSignal == -1 and UseATRfilter == 1 then min(h+ATR,TrendLine[1]) else if BBSignal == 0 and UseATRfilter == 1 then TrendLine[1] else if BBSignal == 1 and UseATRfilter == 0 then max(l,TrendLine[1]) else if BBSignal == -1 and UseATRfilter == 0 then min(h,TrendLine[1]) else if BBSignal == 0 and UseATRfilter == 0 then TrendLine[1] else TrendLine[1]; def iTrend = if TrendLine>TrendLine[1] then 1 else if TrendLine < TrendLine[1] then -1 else iTrend[1]; plot buy = if iTrend[1]==-1 and iTrend==1 and !HideArrows then TrendLine else Double.NaN; buy.SetPaintingStrategy(PaintingStrategy.ARROW_UP); buy.SetDefaultColor(Color.GREEN); buy.SetLineWeight(3); plot sell = if iTrend[1]==1 and iTrend==-1 and !HideArrows then TrendLine else Double.NaN; sell.SetPaintingStrategy(PaintingStrategy.ARROW_DOWN); sell.SetDefaultColor(Color.RED); sell.SetLineWeight(3); plot tline = TrendLine; tline.AssignValueColor(if iTrend > 0 then CreateColor(33,150,243) else CreateColor(255,82,82)); tline.SetLineWeight(2);
The ToS app does not allow for the use of MTF scripts in the scan hacker.Great indicator. How would we be able to scan with this?
Join useThinkScript to post your question to a community of 21,000+ developers and traders.
Start a new thread and receive assistance from our community.
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.
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.