Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

Recommended Posts

Here is a 'very inexpensive' alternative to Juriks Moving Average contributed in Easy Language by John D. McCormick (TS handle = JDM, see jmactrader.com).

 

Moving Averages are used to remove noise. By “noise” is meant the apparently random motion up and down of the prices around their average price. This shows up on a moving average as a jagged appearance on an otherwise smooth line. The jaggedness can trigger false buy and sell signals or simply make the indicator hard to read, so we try to smooth out the average, i.e. remove the noise.

 

Lagging or lateness is the bane of moving averages. You make them longer (average in more bars) and the moving average is smoother, but now it lags way behind the actual price movement.

 

The ideal moving average should filter out noise and respond quickly – and – it would be a plus if it was fast calculating. That’s kind of like having your cake and eating it too.

 

Nevertheless, here’s one, I call it Quick MA, that seems to work as well as any I’ve seen.

 

Full thread is at https://www.tradestation.com/Discussions/Topic.aspx?Topic_ID=77583&SearchTerm=a%20better%20moving%20average&txtExactMatch=

Posted with his permission. Please retain his 'copyright' info in the code. Many thanks to JDM.

QUICK.ELD

Edited by zdo
add TS link, etc

Share this post


Link to post
Share on other sites

And here is the source in readable text

 

Indicator

 

//
//	Plots a fractional-bar Quick Moving Average 
//	with the option to select gapless daily opens.
//
//	copyright 2008 John McCormick jmactrader.com
//
//	feel free to copy and use this code royalty free
//	as long as it retains the above acknowledge
//

inputs:
Price(Close),
Quick_Length(9),
displace(0),
gapless(0);	// set gap to a non-zero value to skip over opening daily gaps

Var: Length(maxlist(1,Quick_Length));

// GapLess

Vars:			// gapless O,H,L,C where O=C[1]
RelO(0),
RelH(0),
RelL(0),
RelC(0),
gap(0),
Accum(0),
WtMean(0);

if date<>date[1] then begin
gap		=	O-C[1];
Accum	=	Accum+gap;
end;

RelO	=	O-Accum;
RelC	=	C-Accum;
RelH	=	H-Accum;
RelL	=	L-Accum;

			// Gapless bars - end

WtMean = (RelH+RelL+RelC)/3;

// End Gapless

if gapless=0 
then plot1[displace](FMA_Smooth(price,length),"FMA_Quick")
else plot1[displace](FMA_Smooth(RelC,length)+accum,"FMA_Quick");

 

 

Function

 

//  generates very smooth and responsive moving average
// 	copyright 2008 John McCormick  jmactrader.com
//	feel free to copy and use this code royalty free 
//  as long as you don't remove the above acknowledgement
//		

Inputs: 
Price(numericseries), 
Length(numericsimple);

Vars:
j(0),
workinglen(maxlist(1,absvalue(Length))),
peak(workinglen/3),
tot(0),
divisor(0);

Array:
val[100](0);

if workinglen>100 then workinglen=100;  //  use larger array to handle lengths over 100


tot=0;
divisor=0;
for j=1 to floor(workinglen+1) begin
if j<=peak then val[j]=j/peak
else val[j]=(workinglen+1-j)/(workinglen+1-peak);
tot=tot+price[j-1]*val[j];
divisor=divisor+val[j];
end;
if divisor<>0 then FMA_smooth=tot/divisor;

Share this post


Link to post
Share on other sites

Here is a comparison of JurikMA (cyan) and QuickMA (yellow)

 

The arrows show spots where JMA beat QMA to the turn

(Note, though, there may be instances off this chart where QMA leads JMA)

Enjoy

compareQuickVsJurik.thumb.jpg.a61a5b9f770463c292075d4b4c285b4e.jpg

Share this post


Link to post
Share on other sites

Wow! Here's the best I could do in that same time period (6/4 YM 1 min).

 

I'm very impressed by how smooth both of those are.

 

There's three in this pic: the light blue was my attempt at smoothing the thin pink one. The other thin pink one was another smooth attempt but it wasn't good.

 

Those up there are very, very smooth.

5aa70e8cad01c_fastmas.thumb.jpg.31b81e042922b635185619ed41e84636.jpg

Share this post


Link to post
Share on other sites
zdo, your graph show the Quick MA as yellow, and "AMA" as cyan... not JMA. Can you post another graph that have the QuickMA, AMA and JMA on 1 graph?

 

Thanks

 

rurimoon,

 

Yellow is QuickMA

Cyan is really Jurik

(through the 90's it was the only adaptive mov avg I considered, hence the indicator label of "AMA" … (and obviously) it uses JMA function)

TS has an AdaptiveMovingAverage built in (Kaufman’s) but I would be afraid to even allow it to open on my screen …seriously and ;)

If you have TS you can try it... if not let me know and I will take some serious pain medication ;) and put up a comparison. Keep in mind though that the kaufman effectively just 'dynamically' varies the length parameter via a stochastic rather than actually doing the 'phasing and whatever' that more recent ama do...

hth

Share this post


Link to post
Share on other sites

zdo or any other who has QuickMA with Tradestation, can you post a chart of the recent ES or YM with QuickMA(9) and possibly HMA(9) on it?

I translated the code to ninjascript but I don't have tradestation to vertify if my code is right or not. I don't think my code is right.

 

It would be great if you post a recent chart so that I can compare my QuickMA in Ninjatrader with yours. Please tell me if below value match.

 

ES0309 on Jan23,5min chart,

11:00amCT: Price close: 815.50, QMA(9) 819.87

11:05amCT: Price close: 817.25, QMA(9) 819.15

11:10amCT: Price close: 816.50, QMA(9) 818.36

Share this post


Link to post
Share on other sites

Here is my chart:

 

es030912320095mintg2.jpg

 

The blue line is my QuickMA and red line is HMA. As you can see, my QuickMA is nowhere as fast as HMA, so I think I may be coding it wrong.. and I need to make sure...

Share this post


Link to post
Share on other sites

Rurimoon,

I don't have TradeStation anymore, but I've converted the QuickMA code from EL and got the exact numbers as you did for the 5min ES. Here's a scrrenshot with my conversion of the QuickMA along with HMA and a conversion I did from what is "supposed to be" JMA converted from Metatrader.

 

Magenta is HMA

Blue is the converted QuickMA

Black is the converted JMA

 

 

VT

MAcomparison.thumb.png.69216c8e1ac856d586cb885f07930b6d.png

Share this post


Link to post
Share on other sites

Thanks to verifying for me. I have always though that QuickMA should be at least on pair with HMA so I don't believe in my coding skill when I see that it lag behind so much. I am in the process of converting JMA from metatrader to ninjascript also. The problem is I have find at least 5 different version of JMA in Metatrader and I have no idea which one produce more accurate result with the real JMA. Can you tell me which version of JMA from metatrader that you are using? (Of course it would be best if you can share your code :)

 

P.S. I have a version of JMA in metatrader that is so cheesy, it has at least 50 variable defined. Basically it change its formula base on which period it used... the code has so many if then else statement that I wonder how long it takes the coder to fine tune all those numbers.

Share this post


Link to post
Share on other sites

Find attached screenshot with

Red = Hull

White = Quick

Blue = Jma

 

All set to 4 periods

 

Hull definitely turns faster

Jma definitely goes flat faster and more smoothly than the other two (and that is about the only utility for mov avgs I have)

Quick came along for free so I shared it for ppl who don’t like to buy closed source products etc.

 

ie best one depends on your own distinctive needs.

 

hth

 

PS rurimoon re "Basically it change its formula base on which period it used"

That particular one is not it... :hmpf:

compareQuikJmaHull.thumb.jpg.3eb8b195d38ebca04c65b69dc8268e43.jpg

Share this post


Link to post
Share on other sites
Find attached screenshot with

Red = Hull

White = Quick

Blue = Jma

 

All set to 4 periods

 

Hull definitely turns faster

Jma definitely goes flat faster and more smoothly than the other two (and that is about the only utility for mov avgs I have)

Quick came along for free so I shared it for ppl who don’t like to buy closed source products etc.

 

ie best one depends on your own distinctive needs.

 

hth

 

PS rurimoon re "Basically it change its formula base on which period it used"

That particular one is not it... :hmpf:

 

Thanks for posting that chart. Would you mind posting another one with the MAs overlaid over the candles, too? I want to see how price bars interact with the MAs.

 

Thanks!

 

btw did something happen to this thread? I got like 50 emails that there were new replies but there was really only one new reply.

Share this post


Link to post
Share on other sites
Thanks for posting that chart. Would you mind posting another one with the MAs overlaid over the candles, too? I want to see how price bars interact with the MAs.

 

 

1st one approx same as time shown above.

2nd one from today... hth

masOverLaid0127.thumb.jpg.ae12a194527ee33f4ecbc2f41f66604d.jpg

masOverPrice.thumb.jpg.c09b41b4568f30cea1195019fa115644.jpg

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


  • Topics

  • Posts

    • A custom Better Daily Range indicator for MT5 is now available on the Metaquotes website and directly in the MT5 platform. https://www.mql5.com/en/market/product/103800 The Better Daily Range indicator shows the previous trading day's price range on the current day's chart. Many traders mark out the previous day's high, low, and the current day's open before trading. This is not an average true range indicator (ATR). This is not an average daily range indicator (ADR). This is a daily range indicator (DR). This indicator shows horizontal maximum and minimum range lines. If your broker-dealer's MT5 platform shows Sunday bars, Sunday bars are not included as previous days. In other words, Monday uses Friday's price data (skips Sunday). This indicator also shows two 25% (of range) breakout lines: one that is 25% higher than the maximum range line, and one that is 25% lower than minimum range line. A middle range line is also shown. Immediately after the daily close of your broker-dealer, all five range lines update to the new daily values.   Many traders only trade during times of high volume/liquidity. The Better Daily Range indicator also shows five adjustable time separator lines: A local market open time line (a vertical line), A local market middle time A line (a vertical line), A local market middle time B (a vertical line), A local market middle time C (a vertical line), A local market close time (a vertical line), and A local market open price (a horizontal line). The location of the local market open price depends on your input local market open time. In other words, you input your desired market open time according to your local machine/device time and the indicator automatically shows all five session lines. When your incoming price bars reach your input local market open time line, the indicator automatically shows the price to appear at your input local market open time. If your broker-dealer's MT5 platform shows Sunday bars, the time separator lines do not show on a Sunday. Immediately after midnight local machine/device time, the five session time lines (vertical lines) are projected forward into the current day (into the future hours) and the local open price line is erased. The local open price line reappears when the price bars on the chart reach your input local open time (your local machine/device time).   The indicator has the following inputs (settings):   Chart symbol of source chart [defaults to: EURUSD] - Allows you to show data from another chart symbol other than the current chart symbol. Handy for showing standard timeframe data on an MT5 Custom Chart. Local trading session start hour [defaults to: 09] - Set your desired start hour for trading according to the time displayed on your local machine/device operating system (all times below are your local machine/device operating system times). The default setting, 09, means 9:00am. Local trading session start minute [defaults to: 30] - Set your desired start minute. The default setting, 30, means 30 minutes. Both the default hour and the default minute together mean 9:30am. Local trading session hour A [defaults to: 11] - Set your desired middle hour A for stopping trading when volume tends to decrease during the first half of lunch time. The default setting, 11, means 11:00am. Local trading session minute A [defaults to: 00] - Set your desired middle minute A. Both the default hour and the default minute together mean 11:00am. Local trading session hour B [defaults to: 12] - Set your desired middle hour B for the second half of lunch time. The default setting, 12, means 12:00pm (noon). Local trading session minute B [defaults to: 30] - Set your desired middle minute B. Both the default hour and the default minute together mean 12:30pm. Local trading session hour C [defaults to: 14] - Set your desired middle hour C for resuming trading when volume tends to increase. The default, 14, means 2:00pm. Local trading session minute C [defaults to: 00] - Set your desired middle minute C. Both the default hour and the default minute together mean 2:00pm. Local trading session end hour [defaults to: 16] - Set your desired end hour for stopping trading. The default setting, 16, means 4:00pm. Local trading session end minute [defaults to: 00] - Set your desired end minute for stopping trading. Both the default hour and the default minute together mean 4:00pm. High plus 25% line color [defaults to: Red]. High plus 25% line style [defaults to: Soid]. High plus 25% line width [defaults to 4]. High line color [defaults to: IndianRed]. High line style [defaults to: Solid]. High line width [defaults to: 4]. Middle line color [defaults to: Magenta]. Middle line style [defaults to: Dashed]. Middle line width [defaults to: 1]. Low line color [defaults to: MediumSeaGreen]. Low line style [defaults to: Solid]. Low lien width [defaults to: 4]. Low minus 25% line color [defaults to: Lime]. Low minus 25% line style [defaults to: Solid]. Low minus 25% line width [defaults to: 4]. Local market open line color [defaults to: DodgerBlue]. Local market open line style [defaults to: Dashed]. Local market open line width [defaults to: 1]. Local market middle lines color [defaults to: DarkOrchid]. Local market middles lines style [defaults to: Dashed]. Local market middles lines width [defaults to: 1]. Local market close line color [default: Red]. Local market close line style [Dashed]. Local market close line width [1]. Local market open price color [White]. Local market open price style [Dot dashed with double dots]. Local market open price width [1].
    • A custom Logarithmic Moving Average indicator for MT5 is now available for MT5 on the Metaquotes website and directly in the MT5 platform. https://www.mql5.com/en/market/product/99439 The Logarithmic Moving Average indicator is a moving average that inverts the formula of an exponential moving average. Many traders are known to use logarithmic charts to analyze the lengths of price swings. The indicator in this post can be used to analyze the logarithmic value of price on a standard time scaled chart. The trader can set the following input parameters: MAPeriod [defaults to: 9] - Set to a higher number for more smoothing of price, or a lower number for faster reversal of the logarithmic moving average line study. MAShift [defaults to: 3] - Set to a higher number to reduce the amount of price crossovers, or a lower for more frequent price crossovers. Indicator line (indicator buffer) can be called with iCustom in Expert Advisors created by Expert Advisor builder software or custom coded Expert Advisors: No empty values; and No repainting.
    • A custom Semi-Log Scale Oscillator indicator is now available for MT5 on Metaquotes website and directly in the MT5 platform. https://www.mql5.com/en/market/product/114705 This indicator is an anchored semi-logarithmic scale oscillator. A logarithmic scale is widely used by professional data scientists to more accurately map information collected throughout a timeframe, in the same way that MT5 maps out price data. In fact, the underlying logic of this indicator was freely obtained from an overseas biotech scientist. A log-log chart displays logarithmic values on both the x (horizontal) and y (vertical) axes, which generally produces a straight line that points up, down, or remains flat. A straight line is not very useful for trading markets because such a straight line is so smoothed that actual price values that appear over time are very far away from the line study. In contrast, a semi-log chart is only logged on one axis--generally, the y axis. Such a semi-log chart is well suited for trading markets because the time (x) axis is preserved in its original form while at the same time, providing a graduated y scale where the distance between price increments progressively increases as price rises higher (and decreases as price falls lower). This allows us to establish a zero level for a low price, clearly view trends on straighter angles, and clearly observe amplified price spikes at high prices. Accordingly, this indicator employs a semi-log scale on the y axis only. This indicator is anchored because it allows you to specify a start time for calculation of price bars. The settings are as follows: Year.Month.Day Hour:Minute - defaults to 1970.01.01 00:01 - if left on default setting, the indicator automatically detects the earliest price bar in chart history--even where the year 1970 is not in history. Notes appear in the indicator settings window. Size of first pip step to log - defaults to 135 - this default is suitable for higher timeframes such a MN1 (monthly), while 5 is suitable for lower timeframes such as M1 (minute). Ultimately, optimal settings will depend on the timeframe that you attach the indicator to, the level of price volatility within that timeframe, and start time that you choose. Remember... The semi-log formula calculates from low to high, so your start time must always be a major swing low. Again, notes appear in the indicator settings window. The standard (built-in) MT5 indicators that can be applied to the "Previous indicator's data" can be applied to this indicator. Indicator lines (indicator buffers) can be called with iCustom in Expert Advisors created by Expert Advisor builder software or custom coded Expert Advisors. The log scale Open, High, Low, and Close prices are buffers: No empty values; and No repainting.
    • A custom Gann Candles indicator is now available for MT5 on the Metaquotes website and directly in the MT5 platform. https://www.mql5.com/en/market/product/126398 This Gann Candles indicator incorporates a series of W.D. Gann's strategies into a single trading indicator. Gann was a legendary trader who lived from 1878 to 1955. He started out as a cotton farmer and started trading at age 24 in 1902. His strategies included geometry, astronomy, astrology, times cycles, and ancient math. Although Gann wrote several books, none of them contain all of his strategies so it takes years of studying to learn them. He was also a devout scholar of the Bible and the ancient Greek and Egyptian cultures, and he was a 33rd degree Freemason of the Scottish Rite. In an effort to simplify what I believe are the best of Gann's strategies, I reduced them into one indicator that simply colors your preexisting price bars when those strategies are in-sync versus out-of-sync. This greatly reduces potential chart clutter. Also, I reduced the number of input settings down to only two: FastFilter, and SlowFilter Both FastFilter and SlowFilter must be set to 5 or more, as noted in the Inputs tab upon attaching the indicator to your chart. Gann Candles works on regular time-based charts (M5, M15, M20, etc.) and custom charts (Renko, range bars, etc.). The indicator does not repaint. When using the default settings, blue candles form bullish price patterns, gray candles form flat (sideways) price patterns, and white candles form bearish price patterns. The simplest way to trade Gann Candles is to buy at the close of a blue candle and exit at the close of a gray candle, and then sell at the close of a white candle and exit at the close of a gray candle.
    • A custom Anchored VWAP with Standard Deviation Bands indicator for MT5 is now available on the Metaquotes website and directly through the MT5 platform. https://www.mql5.com/en/market/product/99389 The volume weighted average price indicator is a line study indicator that shows in the main chart window of MT5. The indicator monitors the typical price and then trading volume used to automatically push the indicator line toward heavily traded prices. These prices are where the most contracts (or lots) have been traded. Then those weighted prices are averaged over a look back period, and the indicator shows the line study at those pushed prices. The indicator in this post allows the trader to set the daily start time of that look back period. This indicator automatically shows 5 daily look back periods: the currently forming period, and the 4 previous days based on that same start time. For this reason, this indicator is intended for intraday trading only. The indicator automatically shows vertical daily start time separator lines for those days as well. Both typical prices and volumes are accumulated throughout the day, and processed throughout the day. Important update: v102 of this indicator allows you to anchor the start of the VWAP and bands to the most recent major high or low, even when that high or low appears in your chart several days ago. This is how institutional traders and liquidity providers often trade markets with the VWAP. This indicator also shows 6 standard deviation bands, similarly to the way that a Bollinger Bands indicator shows such bands. The trader is able to set 3 individual standard deviation multiplier values above the volume weighted average price line study, and 3 individual standard deviation multiplier values below the volume weighted average price line study. Higher multiplier values will generate rapidly expanding standard deviation bands because again, the indicator is cumulative. The following indicator parameters can be changed by the trader in the indicator Inputs tab: Volume Type [defaults to: Real volume] - Set to Tick volume for over-the-counter markets such as most forex markets. Real volume is an additional setting for centralized markets such as the United States Chicago Mercantile Exchange. VWAP Start Hour [defaults to: 07] - Set according to broker's or broker-dealer's MT5 server time in 24 hour format. For example, in the New York, United States time zone, 07 is approximately the London, United Kingdom business open hour. VWAP Start Minute [defaults to: 00] - Set according to broker's or broker-dealer's MT5 server time in 24 hour format. For example, 00 is on the hour with no delay of minutes within that hour. StdDev Multiplier 1 [defaults to: 1.618] - Set desired standard deviation distance between the volume weighted average price line study and its nearest upper and lower bands. For example, 1.618 is a basic Fibonacci ratio. Some traders prefer 1.000 or 1.250 here. StdDev Multiplier 2 [defaults to: 3.236] - Set desired standard deviation distance between the volume weighted average price line study and its middle upper and lower bands. For example, 3.236 is 1.618 (above) + 1.618. Some traders prefer 2.000 or 1.500 here. StdDev Multiplier 3 [defaults to: 4.854] - Set desired standard deviation distance between the volume weighted average price line study and its furthest upper and lower bands. For example, 4.854 is 1.618 (above) + 3.236 (above). Some traders prefer 3.000 or 2.000 here. VWAP Color [defaults to: Aqua] - Set desired VWAP line study color. This color automatically sets the color of the start time separators as well. SD1 Color [defaults to: White] - Set desired color of nearest upper and lower standard deviation lines. SD2 Color [defaults to: White] - Set desired color of middle upper and lower standard deviation lines. SD3 Color [defaults to: White] - Set desired color of furthest upper and lower standard deviation lines. Just to clarify, popular standard deviation bands settings are: 1.618, 3.236, and 4.854; or 1.000, 2.000, and 3.000; or 1.250, 1.500, and 2.000. Examples of usage *: In a ranging (sideways) market, enter a trade at the extremes of the standard deviation bands (SD3) and exit when price returns to the VWAP line study. Trade between SD1Pos and SD1 Neg, alternately buying and selling from one standard deviation line to the other. In a trending (rising or falling) market, enter a buy when a price bar opens above the VWAP line study, and exit at the nearest standard deviation band above (SD1Pos). Optionally, repeat the same trade but substitute SD1Pos for the VWAP, and SD2Pos for SD1. Reverse for sell; or Trade all lines (VWAP, SD1Pos, SD2Pos, and SD3Pos) in the same way. Again, reverse for sell. Indicator lines (indicator buffers) can be called with iCustom in Expert Advisors created by Expert Advisor builder software or custom coded Expert Advisors: No empty values; and No repainting.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.