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.

parliament718

Methods for Identifying Trends

Recommended Posts

I'm sure there are many ways that one can identify a trend in code. For example, one way I found as I'm reading the first few chapters of Peter Kaufman's "New Trading System and Methods" is called body momentum. It determines whether black or white bodies have been dominating recent price movement (using only the bodies of the candles themselves):

 

Body Momentum = number of upBodies / (number of upBodies + number of downBodies)

 

He recommends using 14 as the number of look back bars.

 

if body momentum > .70 ->>> it's an up trend

if body momentum < .20 ->>> it's a down trend

 

 

This is just one method. I'm interested in other methods/logic/formulas you guys use to identify a trend in code. I guess my goal in this thread is the find the most reliable method for this.

 

Thank you!

Share this post


Link to post
Share on other sites

Look at a weekly chart that has at least 150 bars. If it is sloped upward, then it is an uptrend. If it is sloped downward, then it's a down trend. A slope of zero means there is no trend.

 

Then look at a daily chart with at least 150 bars, if it is sloped upward, it is an uptrend. If it is sloped downward, it is a downtrend. A slope of zero means there is no trend.

 

If catching a trend, never trade against the weekly trend. When you enter a trade, there is no good reason to assume that the trend is going to cease in its current direction when you enter. If there is no trend in the weekly, then take trend trades long or short on the daily and expect there to be support or resistance at the bottom and top of the weekly range or bracket.

 

 

Trend detection is far simpler if done visually. A child can do it.

 

I call anything below daily time frame an up move or a down move.

Share this post


Link to post
Share on other sites

Primary method of identifying trend is difference between serial of peaks i.e high and serial of troughs i.e low for taken periods, Period may be upto the trader decision. usually we have take on full period i.e day , week , month ... but weekly and monthly trend analysis will help us trade everyday.

mathematically there is three way analysis.

peaks and troughs in lowering form that is trend goes down - bear

peaks and troughs goes in higher form, that is trend goes up - bull

peaks and troughs are not in uniform that means market is indecision - side way-naroow range

Share this post


Link to post
Share on other sites

Without meaning to sound facetious, eyes. Like MM said, a good trend is easy to spot. So whatever method you employ in code, it shouldn't be picking up on 'trends' which aren't readily visible to your eye. So I'd look towards bands and even the humble trendline with some sort of volatility slack built into it. :2c:

Share this post


Link to post
Share on other sites

Both Frank Hassler and David Varadi create the TSI (Trend Strength Indicator). The TSI, as the name implies, measures the strength of a trend.

 

In general, a higher TSI value means greater likelihood of continued trending behavior in the short term. On the other hand, a lower TSI indicates a greater possibility of mean reversion type behavior. Frank has used a TSI value of 1.65 or larger as the threshold for trending stocks.

 

 

The formula for TSI is:

TSI = Average( Average(Ratio,10), 100 )

Where:

Ratio = Abs( Today’s Close – Close 10 Days Ago ) / 10-Day Average True Range

 

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

Program:  TSI Function
Date:     October 2011
Platform: EasyLanguage v9.0

DESCRIPTION:

Ths function compute the Trend Strength (TSI) based upon a given Short lookback period
and a long lookback period. A TSI score above 1.60 is often considered a strong trend.

For more information see: http://www.systemtradersuccess.com

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

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

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

Input:
ShortLookback( NumericSimple  ),
LongLookback( NumericSimple  );

Variables: 
Ratio(0);

Ratio = AbsValue((close - close[shortLookback])) / AvgTrueRange( ShortLookback );
TSI = Average(Average(Ratio,ShortLookback),LongLookback);

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

Share this post


Link to post
Share on other sites

an UPTREND is when the price is higher than your entry price,

 

a DOWNTREND is when the price is lower than your entry price.

 

All the other complicated theories and magical projections and esoteric calculations are moot.

Nobody can argue that.

Share this post


Link to post
Share on other sites

Body Momentum = number of upBodies / (number of upBodies + number of downBodies)

 

He recommends using 14 as the number of look back bars.

 

if body momentum > .70 ->>> it's an up trend

if body momentum < .20 ->>> it's a down trend

 

 

Here are three suggestions that I hope will be useful:

 

1) You might find it useful to take a look at the formula for Larry William's 'Greatest Swing Value' indicator. This is based upon a very similar concept to the Kaufmann one you discuss, though interestingly Williams recommends a very short lookback setting of just three or four periods.

 

2) Another thing to investigate would be 'Heikin-Ashi' candlesticks. One of the main advantages of these are that they don't contain an variable look-back parameter, so the possibility of curve fitting or over optimisation is removed - handy! A variant of the Heikin-Ashi formula was popularised by the Trade the Markets bunch - it's basically intended to produce a 'less choppy' signal series. Like all such things, it's swings and roundabouts: sometimes it filters false signals, and sometimes it gives delayed signals for true trend changes. I haven't made any direct performance comparisson between traditional Heikin-Ashi and this modified version, so I can't make any authoritative statement about which is the better tool.

 

3) As I'm sure you've heard many times elsewhere, in trading 'simple' is normally 'best'. The best definition of trend you're likely to achieve is with a (correctly) optimised Simple Moving Average.

 

Hope that's useful - has anyone else got any other suggestions on this?

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.