TradingView
io72signals
21 Haz 2020 17:12

LWMA: Linear Weighted Moving Average 

Euro Fx/U.S. DollarFXCM

Açıklama

Couldn't find searching for Linearly Weighted Moving Average (LWMA) in tradingview. Found one with the LWMA title, but it uses plain WMA calculation without the linearity which more heavily weights recent price data, which I need, so I try to made one.

LWMAs are also quicker to react to price changes than SMA and EMA. If you want a moving average with less lag than an SMA, try a LWMA.

It kind of also have a more clarity in defining the price trend and reversals. Trade signals usually based on crossovers, they can also indicate areas of potential support or resistance. But beware though, multiple false signals may also occur before a significant trend develops. Use a filter, some decent volatility oscillator might do the job.

--
The formula for this Linearly Weighted Moving Average is:

LWMA = ((Pn∗W1)+(Pn−1∗W2)+(Pn−2∗W3)...) / ∑W

​P = Price for the period
n = The most recent period, n-1 is the prior period, and n-2 is two periods prior
W = The assigned weight to each period, with the highest weight going first and then descending linearly based on the number of periods being used.

I hope I'm doing right translating it to Pine Script 4. Let me know if I miss something.


Sürüm Notları

Added directional color change

Sürüm Notları

Added custom weight parameter.

I just realized the native TV's WMA is already using the same linearity result, (maybe) using period value as the weight. So I added custom weight value parameter for this update and modified the function. By default it has a slight difference in plot result with the WMA even if period and weight has the same value.

I've read that most popular choice when using weighted moving averages is to use a higher weighting for recent values. I'm guessing that we can use much lower weight value if need contemporary or faster response (ie. intraday, binary, short-term), and higher weighting than the period for long-term confirmation, but both without losing context or moving away from our chosen lookback period span.

Sürüm Notları

Cleaned up a bit

Sürüm Notları

Added modification of one period factor to the function. Now it match the WMA plot when using same value for period and weight! Thanks to @allanster for spotting this, he gave me code samples comparing previous scripts, which then lead me to this small modification but significant in result. My profitable rate in backtest results has just been upped a notch by 4%! :D

By default the WMA is using period value as its weight so when it reach the last price the weight is 1. A more complex way is to choose a different weight for the most recent value. Which this script trying to do about. Let's say we're using 50-period lookback, but I want the weight is only about half of it, maybe 30. Then each value will need to drop by 30/50 consecutively in each price data. So that when n-49(50th period) is reached the weight is also will be 1.

Sürüm Notları

Just added some small alerts, as requested by @lazarevicivan.
Alert triggers when direction change.
Yorumlar
levith
I tried to change some parameters and found some interesting curves and very good scripts. Thank you very much!
io72signals
@levith, glad to hear it :)
levith
@io72signals, Excuse me,Will you share your Dominant Cycle rsi scripts?
io72signals
@levith, it hasn't finished yet, I'm still working on it. Still on backtesting and forward-testing phase
Tick_Ebb_Flow
Superb. Thanks for your effort...and sharing it.
allanster
Looks nice. I am not sure from your description if your intent was to recreate TradingView's wma() function, but your script's values match their native code.
sickojacko
@allanster, indeed. I just checked and this code has the same result than the native wma() function.
io72signals
@sickojacko, updated :)

Now we can choose a different weight for the most recent value.
io72signals
woow.. first thing first,.. @allanster, you're one of my PineScript hero! :D I've learnt a lot from many of your published script. Guess It's not everyday you got one of your hero as first commenter on your first post :)))

Thanks for the double-check, my bad. I was trying to recreate the LWMA I use in MT4. It has a slight differences with WMA in my backtest result. But looking back, probably it might also had something to do with my other filter, or maybe just the WMA I use is using different equation.

Anyway, I've added the custom weight value input for the above.
allanster
@Aerodynamics, thanks for the kind words and very nice to know I have helped someone else along the way.
Daha Fazla