# LRC no Lines Global Color Adj
# With help from coder in TOS chat support 9-18-2020
# Originally: tradingview like Linear Channel w/ fills
# @JonPM Community Request in useThinkscript
# VERSION
# 2020.09.08 V1.0 @diazlaz - Linear Regression Channel with Cloud and variable
# timeframe.
# 2020.09.18 V1.1 @markos - Color Opacity can now be changed via Globals in UI.
input price = close;
input deviations = 1.0; #set your deviation units here.
input length = 80; #set your channel lookback period here.
def regression = InertiaAll(price, length);
def stdDeviation = StDevAll(price, length);
def UpCloud = regression + deviations * stdDeviation;
def DnCloud = regression - deviations * stdDeviation;
def MiddleLine = regression;
DefineGlobalColor("Bullish", Color.light_green);
DefineGlobalColor("Bearish", Color.light_RED);
AddCloud(middleline, upcloud, GlobalColor("Bullish"), GlobalColor("Bullish"));
AddCloud(middleline, dncloud, GlobalColor("Bearish"), GlobalColor("Bearish"));
# End LRC wo Lines
#tradingview like Linear Channel w/ fills
#@JonPM Community Request
#
#VERSION
# 2020.09.08 V1.0 @diazlaz - Linear Regression Channel with Cloud and variable
# timeframe.
#
input price = close;
input deviations = .8; #set your deviation units here.
input length = 100; #set your channel lookback period here.
def regression = InertiaAll(price, length);
def stdDeviation = stdevAll(price, length);
plot UpperLine = regression + deviations * stdDeviation;
plot MiddleLine = regression;
plot LowerLine = regression - deviations * stdDeviation;
AddCloud (MiddleLine, UpperLine, COLOR.GREEN, COLOR.GREEN);
AddCloud (MiddleLine, LowerLine, COLOR.RED, COLOR.RED);
UpperLine.SetDefaultColor(COLOR.GREEN);
MiddleLine.SetDefaultColor(GetColor(8));
LowerLine.SetDefaultColor(COLOR.RED);
#END of tradingview like Linear Channel w/ fills
#tradingview like Linear Channel w/ fills
#@JonPM Community Request
#
#VERSION
# 2020.09.08 V1.0 @diazlaz - Linear Regression Channel with Cloud and variable
# timeframe.
#
input price = close;
input deviations = .8; #set your deviation units here.
input length = 100; #set your channel lookback period here.
input opacity = 50;
def regression = InertiaAll(price, length);
def stdDeviation = stdevAll(price, length);
plot UpperLine = regression + deviations * stdDeviation;
plot MiddleLine = regression;
plot LowerLine = regression - deviations * stdDeviation;
AddCloud(MiddleLine, UpperLine, Color.GREEN, Color.GREEN, opacity);
AddCloud(MiddleLine, LowerLine, Color.RED, Color.RED, opacity);
UpperLine.SetDefaultColor(Color.GREEN);
MiddleLine.SetDefaultColor(GetColor(8));
LowerLine.SetDefaultColor(Color.RED);
#END of tradingview like Linear Channel w/ fills
# LRC no Lines Global Color Adj
# With help from coder in TOS chat support 9-18-2020
# Originally: tradingview like Linear Channel w/ fills
# @JonPM Community Request in useThinkscript
# VERSION
# 2020.09.08 V1.0 @diazlaz - Linear Regression Channel with Cloud and variable
# timeframe.
# 2020.09.18 V1.1 @markos - Color Opacity can now be changed via Globals in UI.
input price = close;
input deviations = 1.0; #set your deviation units here.
input length = 80; #set your channel lookback period here.
def regression = InertiaAll(price, length);
def stdDeviation = StDevAll(price, length);
def UpCloud = regression + deviations * stdDeviation;
def DnCloud = regression - deviations * stdDeviation;
def MiddleLine = regression;
DefineGlobalColor("Bullish", Color.light_green);
DefineGlobalColor("Bearish", Color.light_RED);
AddCloud(middleline, upcloud, GlobalColor("Bullish"), GlobalColor("Bullish"));
AddCloud(middleline, dncloud, GlobalColor("Bearish"), GlobalColor("Bearish"));
# End LRC wo Lines
You don't really trade based on this alone. The green and red zones give you an idea of possible support and resistance as well as the overall trend direction. Just notice how the price seems to bump up and down near the top, bottom and middle.How do you guys trade using this?
phewww you got your work cut out for you. What exactly are you going to use that for? Just curioushow do you code to count the number of times the middle line cuts through the body of the candle? Say input length is 80, so i want to see among the 80 candles, how many of the candle bodies got cut through by the middle line.
well, if the mid line cuts through most of the candle bodies, it means the trend is uniform and when there is pullback, i want to get in.phewww you got your work cut out for you. What exactly are you going to use that for? Just curious
oook, have at it.well, if the mid line cuts through most of the candle bodies, it means the trend is uniform and when there is pullback, i want to get in.
I know you put in the request a LONG time ago, but I had a thought.how do you code to count the number of times the middle line cuts through the body of the candle? Say input length is 80, so i want to see among the 80 candles, how many of the candle bodies got cut through by the middle line.
def pierced_bars = if open > MiddleLine and close < MiddleLine then 1 else 0;
addLabel(yes, "Pierced Bars Last 80: " + sum(pierced_bars, 80), color.gray);
Join useThinkScript to post your question to a community of 21,000+ developers and traders.
Thread starter | Similar threads | Forum | Replies | Date |
---|---|---|---|---|
W | Scan for Close < Linear Regression Indicator | Questions | 1 | |
M | Create AddOrder statement for Linear Regression Slope | Questions | 1 | |
R | Linear Regression Reversal Scan | Questions | 0 | |
Linear Regression R-Squared | Questions | 1 | ||
G | Linear regression for rsi and slow stochastic | Questions | 1 |
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.