RSI Laguerre Indicator without Fractal Energy, Red/Green

Join useThinkScript to post your question to a community of 21,000+ developers and traders.

Have Squeeze Dots, Will Travel
I created this short script to overlay any oscillator w/ squeeze dots. I find them handy to overlay: RSI or MACD or TMO. The list is endless.
Add the below study to your chart, drag it up to share the same box as the oscillator to be overlaid. Remember to place it after the oscillator study so the dots will be laid on top of the oscillator instead of behind. The input field "Line" has to be modified to be equal to the value of the mid-line of the study. So to overlay on top of the RSI oscillator the Line field is equal to 0. Other studies may require it set to 50.
HTH
Ruby:
declare lower ;
# ########################################################
#Squeeze by Mobius with mod by Lar
input Line = 0 ;
def BBHalfWidth = StDev(close, 20);
def KCcalc      = Average(TrueRange(high, close, low),  20);
def KCHalfWidth =  1.5 * KCcalc ;
def SqueezeCalc =  2.0 * BBHalfWidth / KCHalfWidth ;
def SqueezeCalc2  = SqueezeCalc ;
def isSqueezed = SqueezeCalc2 < 1 ;
# ########################################################
# charting & formatting
plot TheSqueeze = if isSqueezed then Line else Double.NaN;
TheSqueeze.SetDefaultColor(color.blue);
TheSqueeze.SetLineWeight(2);
TheSqueeze.SetPaintingStrategy(PaintingStrategy.POINTS);
 
@David45 Hey. If you just want to turn off the Fractal Energy, just go to the study and edit it. Change the color of the yellow line or "gamma." Click on the yellow box then click on "more" for color choices. Then go to the HSV tab and change the transparency to 100%. Hope that helps.
 
@horserider Beautiful, that's what I wanted to see. Thank you for helping me. 🙏

@David45 Try this indicator out. Remember that you need to watch price action when polarity changes in the middle of the study. It carries little weight when compared to the line making a complete move. This will work on any time frame. :)
@markos @David45
I'm using RSILaguerre with Fractal energy as intended. Just curious, whats the use-case for just plotting the RSI portion without FractalEnergy/Gamma as requested in this thread.
I plotted both the regular RSI and this version in this thread(without the gamma) on the same 5 min chart and I do see some differences(as in regular RSI was giving faster signals coming out of oversold to upside or out of overbought area to downside) , so curious whats the intention here?. I used the defaults for both the indicators.

I typically use the StochasticSlow for overbought/oversold with 80/20 levels - works great for me..,but just plotted the regular RSI to contrast your version without gamma, out of curiousity!
 

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
480 Online
Create Post

Similar threads

Similar threads

The Market Trading Game Changer

Join 2,500+ subscribers inside the useThinkScript VIP Membership Club
  • Exclusive indicators
  • Proven strategies & setups
  • Private Discord community
  • ‘Buy The Dip’ signal alerts
  • Exclusive members-only content
  • Add-ons and resources
  • 1 full year of unlimited support

Frequently Asked Questions

What is useThinkScript?

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.

How do I get started?

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.

What are the benefits of VIP Membership?
VIP members get exclusive access to these proven and tested premium indicators: Buy the Dip, Advanced Market Moves 2.0, Take Profit, and Volatility Trading Range. In addition, VIP members get access to over 50 VIP-only custom indicators, add-ons, and strategies, private VIP-only forums, private Discord channel to discuss trades and strategies in real-time, customer support, trade alerts, and much more. Learn all about VIP membership here.
How can I access the premium indicators?
To access the premium indicators, which are plug and play ready, sign up for VIP membership here.
Back
Top