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.

aaa

ATR = Exponential Average of the True Range ?

Recommended Posts

Hello

 

I looked inside the function AvgTrueRange

 

AvgTrueRange = Average( TrueRange, Len ) ;

 

I thought that The AvgTrueRange was the Exponential Average of the True Range

 

So it should be

 

AvgTrueRange = XAverage( TrueRange, Len ) ;

 

Anyone can tell which average to use ?

Share this post


Link to post
Share on other sites

Your choice...depends on your needs. I doubt if ATR application originators (LeBeau, etc) have made one way 'official'

 

Average will give you the central tendency for all the ranges in the sample (length)

xAverage will give more weight to more recent ranges in the sample (length)

 

An exceptionally large recent range will push ATR number higher with xAvg than with Avg...

A sample with an exceptionally large range in it will stay up longer with Avg than with xAvg as the large range fades to the bottom of the sample (length)

 

Long length with Avg works pretty well if you're doing any std dev work

Shorter length with xAvg works pretty well if you need higher sensitivity to recent activity...etc

 

Which one suits your needs better?

Share this post


Link to post
Share on other sites

ThanX zdo

 

They is an other way to compute the ATR Grrrrrrr... :angry:

 

ATR.TrueRange = ( 9 * ATR.TrueRange-1 + TrueRange ) / 10 ;

 

if we look at the pix below the 3 are very differents !!

 

 

I'm suprised that there is no "official" ATR

 

I don't look to tweak it only to know the most popular one

 

I try to stay basic

 

If TS or MC (I've checked 2 others soft) uses Average they will be a lot of traders in this way !?

 

Is anyone uses xAverage for ATR ?

 

attachment.php?attachmentid=14161&stc=1&d=1255170681

Snap1.thumb.jpg.428758f5dc68db21fa073114983cc373.jpg

Share this post


Link to post
Share on other sites
p.s. nice print out !

 

Coz I've started with a nice teacher...

 

When it's bad Tams says it...

 

And when it's good ,Tams also says it.

 

But I'm always happy with both when it comes from my TamTams :D

 

Have a nice WE

 

PS I've an other idea...

Share this post


Link to post
Share on other sites

With all respect...

 

an exponential moving average would NOT result in an ATR. Period. The "Average" is mathematically well defined. Same with a normal moving average - which is why the exponential moving average has a different name.

 

Assuming the ATR is not a normal average is a little - sorry - dump. It says clearly it is the AVERAGE of the true range, which definitely IS officially defined.

Share this post


Link to post
Share on other sites
With all respect...

 

an exponential moving average would NOT result in an ATR. Period. The "Average" is mathematically well defined. Same with a normal moving average - which is why the exponential moving average has a different name.

 

Assuming the ATR is not a normal average is a little - sorry - dump. It says clearly it is the AVERAGE of the true range, which definitely IS officially defined.

 

Where do you get your official definition of Average from that Average means Normal Average? According to Wikipedia, Average can mean different things and not Normal Average when someone say Average. What source did you use?

 

Btw, what does "a little dump mean"? Is that when someone think dump is the same as dumb or that their assumptions make something official?

Share this post


Link to post
Share on other sites

It is called brain usage. Any non-normal average says so. THis is why the "moving average" is the normal one, and guess what - the "exponential moving average" is - the exponential one.

 

Normal means normal. Anything else is not normal.

 

Some people think too complex and fail to see the obvious, and obviously the OP belongs into that category.

Share this post


Link to post
Share on other sites
It is called brain usage. Any non-normal average says so. THis is why the "moving average" is the normal one, and guess what - the "exponential moving average" is - the exponential one.

 

Normal means normal. Anything else is not normal.

 

Some people think too complex and fail to see the obvious, and obviously the OP belongs into that category.

 

Please point out a source saying that Moving Average means Normal Moving average as in your statement I have marked in bold above. The definition says Average, not Normal Average. I have referred you to a source showing that Average can mean different things. All you have is your assumption that Average means Normal average and call anyone who disagree with your assumption dumb. (errr.. dump). "Brain usage" is not a valid reason to prove something.

Share this post


Link to post
Share on other sites

Hello

 

I've changed Data ranged from 2500 bars to 2550 bars

 

Surprise !

 

The result is different

 

Then from 2500 to 2450

 

The same surprise

 

-my strategiet is not robust ?

 

-Backtesting is not the way to this question ?

 

-Can we trust Backtesting ?

Share this post


Link to post
Share on other sites
....-Can we trust Backtesting ?

 

 

well, have you heard of the term GIGO ?

 

Garbage In, Garbage Out...

 

 

for useable backtesting results... you must start with good data

 

good data means more than data integrity.

 

of course you have to start with data that are clean -- i.e. with no holes or bad ticks in them.

 

good data also means that the sample is a representation of the population.

 

e.g. if your data range is between Sept 08 to Nov 08, you will see a very biased downtrend in the market,

any trend following system, especially down biased system, will do well.

But the same system might fall flat on the face when the sample data range is changed.

 

 

 

these are just some thoughts to get the thinking going...

Share this post


Link to post
Share on other sites

...

 

these are just some thoughts to get the thinking going...

 

Dear Tams

 

Everybody would be happy to share thoughts with someone

 

So I am !

 

If the question is concerning enough peole, there is always here someone to share thoughts with

 

This is why I like this site

 

It's like a big brain

 

-----------------------------------------------------------------------------

 

well, have you heard of the term GIGO ?

 

Yes sir !

 

In French with a T at the end, It is a very good part of the lamb to eat ;=)

 

Seriously, My Data source are the 30 stocks of the DJ offLine

 

Is it A good representation of the population.?

 

I've checked that they are no holes in

 

-----------------------------------------------------------------------------------------------

 

e.g. if your data range is between Sept 08 to Nov 08, you will see a very biased downtrend in the market,

any trend following system, especially down biased system, will do well.

But the same system might fall flat on the face when the sample data range is changed.

 

I've used 2500 bars (10 years of test )

 

How Changing only +- 50 bars/days days could change so much the result ?

 

-------------------------------------------------------------------

 

Some Other thoughts :

 

Hazard effects

 

Optimization paradoxe

 

Overfitting

 

 

Kind Regards

 

aaa

Edited by aaa

Share this post


Link to post
Share on other sites
...

e.g. if your data range is between Sept 08 to Nov 08, you will see a very biased downtrend in the market,

any trend following system, especially down biased system, will do well.

But the same system might fall flat on the face when the sample data range is changed.

 

I've used 2500 bars (10 years of test )

 

How Changing only +- 50 bars/days days could change so much the result ?

...

 

 

if you can pin point the 50 bars that made the difference...

all you need is to hand calculate the variables to find out the pivotal factor.

 

 

 

Seriously, My Data source are the 30 stocks of the DJ offLine

 

Is it A good representation of the population.?

 

I've checked that they are no holes in

 

 

are you talking about a portfolio back testing of 30 stocks?

the permutation can be exponential.

Share this post


Link to post
Share on other sites

all you need is to hand calculate the variables to find out the pivotal factor.

 

very interesting

 

are you talking about a portfolio back testing of 30 stocks?

the permutation can be exponential.

 

No I 've tested difeerent stocks from the DJ with different period

 

I don't feel confortable with strategie = I'm not sure if it is realistic

 

This is maybe the reason why it influenced with bad vibrations my test !!!

 

Because I'm curious I will certainly ask more question in an other topic about strategie

 

Anyway I choose the arythmetic average for my projects

 

MANY THANKS TO ALL

Share this post


Link to post
Share on other sites

I would use the PRINT statement to extract the variables

 

I've done it

 

With your precious indications from your excellent thread about PRINT

 

I always use sophisticated Print for debug + To file

 

It's now a part of all my codes

 

----------------------------------------------------------------------------------------------

 

I know this indicator Tams

 

I'm the one whom has posted it

 

But I didn't arrived to make it working with MC

 

Tooooo bad it looks interesting

 

 

{== START OF HEADER ==========================================================================

Program:  Open Equity Curve Indicator
Date:     July 2009
Platform: TradeStation v8.5

DESCRIPTION: Display a strategy's open equity curve.

DEVELOPMENT NOTES:

08/02/09 Initial version.

TO-DO LIST:

== END OF HEADER =============================================================================

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Copyright ? 2009. Capital Evolution, LLC. All Rights Reserved.
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

== DEFINE ALL INPUTS AND VARIABLES ==========================================================}

Input: PositiveColor( Green ),
   NegitiveColor( Red ),
   ZeroLineColor( White );

Variables: OpenEq(0);

OpenEq = I_OpenEquity - I_ClosedEquity;
If ( OpenEq > 0 ) Then SetPlotColor( 1, PositiveColor )
Else SetPlotColor( 1, NegitiveColor );
Plot1( OpenEq , "Open P&L" ) ;
Plot2( 0, "Zero Line", ZeroLineColor );

{== END OF MAIN PROGRAM =====================================================================
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Copyright ? 2009. Capital Evolution, LLC. All Rights Reserved.
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++}

Edited by aaa

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.


×
×
  • Create New...

Important Information

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