Laguerre ZigZag - A Responsive, Non-Repainting ZigZag Indicator

whoDAT

New member
I'm a big fan of ZigZag indicators. A general problem is they are repainters.

A notable exception is the QQE ZigZag, an indicator that I find very useful.
https://usethinkscript.com/threads/...ncl-qqe-non-repainting-for-thinkorswim.12546/

Laguerre filters are fast-acting methods to smooth inputs. John Eulers described a fast Laguerre method to smooth financial market data in his article entitled "Time Warp - Without Space Travel". Speed is good; speed with market data is fast money.
https://www.mesasoftware.com/papers/TimeWarp.pdf

The below code uses a Eulers High-Low Laguerre Filter (EHLLF) to find uptrends and downtrends, creating a responsive, non-repainting ZigZag.

The plots include the LaguerreZigZag, along with Eulers' Filter and Finite ImpulseResponse (FIR).

All plots except the LaguerreZigZag work in TOS Mobile apps (due to the EnableApproximation function). Use the UpSignal and DownSignal with Boolean value, up or down arrows to see where the Zig Zags.

The image shows the QQE ZigZag on the left and the LaguerreZigZag on the right. Both for SPX, 5 minute time frame for the last 5 days.

LaguerreZZ.jpg


Enjoy!

Code:
# Laguerre ZigZag - A responsive, non-repainting ZigZag indicator
# Authored by whoDAT - April 1, 2025

# A HL2 input is typically better to reduce the number of zigs and zags.
# The Gamma is the dampening function.
#  - Increasing Gamma values (approaching 1.0) will dampen the input more, reducing the number of zigs and zags.
#  - Lower Gamma values (approaching 0.0) will make a noisy output with more zigs and zags.
# The LowHighLookBack defines the how far back to look for the lowest or highest value to use when painting the ZigZag line.

input Price = HL2;
input Gamma = 0.80;
input LowHighLookback = 10;

# Laguerre filter
def L0 = (1 - Gamma) * Price + (Gamma * L0[1]);
def L1 = (-1 * Gamma * L0) + L0[1] + (Gamma * L1[1]);
def L2 = (-1 * Gamma * L1) + L1[1] + (Gamma * L2[1]);
def L3 = (-1 * Gamma * L2) + L2[1] + (Gamma * L3[1]);

def Filt = (L0 + (2 * L1) + (2 * L2) + L3) / 6;
def FIR = (Price + (2 * Price[1]) + (2 * Price[2]) + Price[3]) / 6;

# If the Laguerre filter is increasing (or decreasing), this is an uptick (downtick). That is used to make the upward or downward signal to find the zigs and zags.
def Uptick = if (L0 > Filt) then 1 else Double.NaN;
def Downtick = if (L0 < Filt) then 1 else Double.NaN;

def UpSig = if Downtick[1] == 1 and Uptick[0] == 1 then Lowest(low, LowHighLookback) else Double.NaN;
def DnSig = if Uptick[1] == 1 and Downtick[0] == 1 then Highest(high, LowHighLookback) else Double.NaN;

def ZZL = if !IsNaN(UpSig) then UpSig else if !IsNaN(DnSig)  then DnSig else Double.NaN;

plot ZigZagLaguerre = ZZL;
ZigZagLaguerre.EnableApproximation();

plot FilterResponse = Filt;
plot FiniteImpulseResponse = FIR;
plot UpSignal = UpSig;
plot DownSignal = DnSig;

# END OF CODE
 
Last edited:

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

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
371 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