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.

Do Or Die

Relative Strength - Internal

Recommended Posts

How is is that you connected the highs on the divergences, but you connected all the other lows on the previous up trend? I know that you connect lows for up trend and highs for down trend, but if you connect the peaks of the up trend just like the divergence, then the price constantly rises while the RSI falls.

 

Thats a good detail question.

 

Uptrend is always marked by connecting lows; downtrend is always marked by connecting highs... you can take it as 'first law of chart reading" ;)

 

If you are connecting peaks on the chart, you have to connect them on the oscillator as well. You cannot connect peaks on the chart and compare against lows on the oscillator.

 

Hope this in reference to my previous post clarifies.

Share this post


Link to post
Share on other sites

Ok so in the case of the divergence: the price increased (the second peak is obviously higher) yet the indicator (in this case the RSI) decreased. So, since you drew a line connecting the highs, are you saying that when looking for divergences, the indicator is priority?

 

What I mean is, normally ignoring indicators, if I were to draw a trend line of the price at the point of those highs, I would draw it at the lows rather than then highs. But in this case you drew the lines on the highs (up trend) so the RSI was the focus of the trend lines.

 

I hope I explained myself clearly. Sorry if it's a little hard to follow.

Share this post


Link to post
Share on other sites

What I mean is, normally ignoring indicators, if I were to draw a trend line of the price at the point of those highs, I would draw it at the lows rather than then highs. But in this case you drew the lines on the highs (up trend) so the RSI was the focus of the trend lines.

 

I hope I explained myself clearly. Sorry if it's a little hard to follow.

 

Yes right, for marking bearish divergence we need to connect highs, no exception.

 

The fact that bearish divergence mostly occur in a uptrend is another matter.

Share this post


Link to post
Share on other sites

Another attempt to measure internal RS:

 

The Choppiness Index was mentioned by Bill Dreiss in early 90's. The CI calculates the relative position between the Sum of daily trading ranges during a given period of time against the total range for that period. Bill Dreiss says "high CI readings can be used to indicate that a consolidation is about to end and a position should be entered or a breakout anticipated." Similarly, low readings in the CI correspond closely with the end of strong impulsive movements either up OR down, while High readings occur after significant consolidations in the price. Extended periods of trendless price movement are reflected in extended periods of above-average readings of the CI.

 

It's a little more complicated was to measure internal RS and seemingly less effective (see attached chart).

 

attachment.php?attachmentid=26000&stc=1&d=1314970446

aapl.thumb.png.3fd374f51667688261dec0878c3b09ec.png

Share this post


Link to post
Share on other sites

The Amibroker code for choppiness index is:

range = Param("Periods", 14, 5, 252, 1 );
MaxH = Max(H, Ref(C, -1));
MinL = Min(L, Ref(C, -1));
HMax = HHV(MaxH, range);
LMax = LLV(MinL, range);
TR = ATR(range);
SumTR = (Sum(TR,range)) / (HMax - LMax);
logsum = log10(SumTR);
LOGn = log10(range);
Choppiness = 100 * logsum / LOGn;
Plot (Choppiness, "Choppiness Index", colorBlack, styleLine);

 

 

For the sake of reference, there is another indicator called b-indicator.

attachment.php?attachmentid=26001&stc=1&d=1314970904

 

Amibroker code:

function PiecewiseEMA( array, range, sincebar )
{
 factor = IIf( sincebar, 1, 2/(range+1) );
 return AMA2( array, factor, 1-factor );
//ama2( ARRAY, SMOOTHINGFACTOR, FEEDBACKFACTOR )
}
// parameters
smoothing=Param("smooth",4,0,100,1);
//m=4;
n=250;
// generate reversal signals based on EMA crossover rule
Lpf1 = EMA( C, 7  );
Lpf2 = EMA( C, 15 );
CrossPoint = Cross( Lpf1, Lpf2 ) OR Cross( Lpf2, Lpf1 );
Periods = BarsSince( CrossPoint );
// variable bar sum
DC = Close - Ref( Close, -1 );
CPC = Sum( DC, Periods );
// smooth CPC by piecewise 4 bar EMA
Trend = PiecewiseEMA( CPC, smoothing , CrossPoint );
// noise
DT = CPC - Trend;
Noise = 2 * sqrt( MA( DT^2, n ) );
// alternative 'linear' noise calculation
// Noise = 2 * MA( abs( DT ), n ) );
BIndicator = (abs(Trend)/(abs (Noise)+abs(Trend))) * 100;
Plot( Bindicator, "Bindicator", colorBrightGreen, 1);
PlotGrid( 0 );
PlotGrid( 20 );
PlotGrid( 40 );
PlotGrid( 60 );
PlotGrid( 80);
PlotGrid(100);
//--Tomasz Janeczko, AmiBroker.com
GraphXSpace = 3;

aapl1.thumb.png.0dfeb8a62bd97f0e1f2b24662de6e985.png

Share this post


Link to post
Share on other sites

Hey Do or Die,

 

I've been practicing using the RSI now for a while and I believe I'm getting good at it. I would just like to ask you: How reliable is it? Would you base an entire trade on it?

 

When I look for a company to trade, I look at their chart first, then the moving averages, then RSI then I look at the earning and fundamentals (although I know for short term technical analysis it doesn't matter what the fundamentals are but I still like to know that they're doing good).

 

Specifically, I noticed that Ford Motor Company (F) has had strong support at around 9.90 and has been forming a bullish RSI divergence since August 8th. It seems to be a perfect textbook example of a bullish RSI divergence. What is your opinion?

Share this post


Link to post
Share on other sites
Hey Do or Die,

 

I've been practicing using the RSI now for a while and I believe I'm getting good at it. I would just like to ask you: How reliable is it? Would you base an entire trade on it?

It can help you time the market with great precision, see here a live example.

When I look for a company to trade, I look at their chart first, then the moving averages, then RSI then I look at the earning and fundamentals (although I know for short term technical analysis it doesn't matter what the fundamentals are but I still like to know that they're doing good).

 

Specifically, I noticed that Ford Motor Company (F) has had strong support at around 9.90 and has been forming a bullish RSI divergence since August 8th. It seems to be a perfect textbook example of a bullish RSI divergence. What is your opinion?

 

Yes it is a good approach. F is definitely a great pick, actually it looks too cheesy to work :p. For investing with horizon of >6 months, half can be bought here with stoploss 9.80.

 

Why half size? for trading on longer time frames, scaling-in works better than stop loss and scaling out works better than profit targets.

 

attachment.php?attachmentid=26163&stc=1&d=1316333266

F.PNG.28fe910ccc489e98e096b03d2db5f7e5.PNG

Share this post


Link to post
Share on other sites

Thanks DD! I told you I've been practicing! I'm glad it's paying off and I seem to be learning properly.

 

Do you think you could explain "scaling in" and "scaling out" because I don't really know what that means? Thanks!

Share this post


Link to post
Share on other sites

Scaling-in or continuity trades means buying in parts at different prices rather than buying all at one price level. For example, you buy half shares at current price and half shares (anticipatory) near 6.00 which is historically important support. Or, 40% shares at current price, 30% at 8.0 and 30% at 6.0. You can still maintain a hard-stop of 5.0 (say) for all of your position. With scaling-in, If the stock is dragged down by overall weak market, you are not stopped out. Even if it flies off from here you still have nearly half shares so it means good profit.

 

Similarly scaling out means selling your shares in parts at different price levels rather than selling all at stoploss or profit target. For example, suppose your stock hits the profit target and you book profit on all shares. Sometimes the stock will continue to run upwards and you miss part of profits. An example of scaling out will be to use profit target for half of position and use trailing stop for other half of position.

 

If you plan to hold a trade for more than 100 bars (say) this soothes the equity curve to a good extent. You can backtest on what difference it makes. This is one of the simplest approach to trade management, and you should be able to learn quickly. A more 'advanced approach' is to buy/sell each time the market gives you information about upcoming moves, discussed as the 'combination approach' in this article: http://www.traderslaboratory.com/forums/psychology/10512-sin-predicting-anticipatory-trading.html

Share this post


Link to post
Share on other sites

Interesting. I have never heard of that before but I definitely think I'm going to do that with Ford. That sounds perfect. I don't want to miss out on the potential rally if the divergence is correct, so I could buy half the shares now, and if it rallies, then I won't miss out entirely. If it falls to meet my original buy price, I would just average down and let it continue as planned. That's perfect! I will continue reading about scaling in or out, but thank you for letting me know.

Share this post


Link to post
Share on other sites

As a counter-view F has been in a downtrend. You can see that it has been coming down since last 6 months or so. It's RS peaked out in April and shows no improvement.

 

You might have remembered AOL, we discussed here and here. It was similar to F and broke down. I had the view that AOL should only be bought after breakout from range which it never did. (BTW the other two 'survivor' stocks after crash AAPL and KO have gone up nicely)

 

The point I want to make is divergence signal a reversal and as such more often initiate a trade against current trend. Hence it is good to look for some confirmation. Buy above 11.00 (upper part of range, near breakout), not immediately.

F.thumb.PNG.550a381dc96531ea32f94a3434f64b42.PNG

Edited by Do Or Die
attachment

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

    • How's about other crypto exchanges? Are all they banned in your country or only Binance?
    • Be careful who you blame.   I can tell you one thing for sure.   Effective traders don’t blame others when things start to go wrong.   You can hang onto your tendency to play the victim, or the martyr… but if you want to achieve in trading, you have to be prepared to take responsibility.   People assign reasons to outcomes, whether based on internal or external factors.   When traders face losses, it's common for them to blame bad luck, poor advice, or other external factors, rather than reflecting on their own personal attributes like arrogance, fear, or greed.   This is a challenging lesson to grasp in your trading journey, but one that holds immense value.   This is called attribution theory. Taking responsibility for your actions is the key to improving your trading skills. Pause and ask yourself - What role did I play in my financial decisions?   After all, you were the one who listened to that source, and decided to act on that trade based on the rumour. Attributing results solely to external circumstances is what is known as having an ‘external locus of control’.   It's a concept coined by psychologist Julian Rotter in 1954. A trader with an external locus of control might say, "I made a profit because the markets are currently favourable."   Instead, strive to develop an "internal locus of control" and take ownership of your actions.   Assume that all trading results are within your realm of responsibility and actively seek ways to improve your own behaviour.   This is the fastest route to enhancing your trading abilities. A trader with an internal locus of control might proudly state, "My equity curve is rising because I am a disciplined trader who faithfully follows my trading plan." Author: Louise Bedford Source: https://www.tradinggame.com.au/
    • SELF IMPROVEMENT.   The whole self-help industry began when Dale Carnegie published How to Win Friends and Influence People in 1936. Then came other classics like Think And Grow Rich by Napoleon Hill, Awaken the Giant Within by Tony Robbins toward the end of the century.   Today, teaching people how to improve themselves is a business. A pure ruthless business where some people sell utter bullshit.   There are broke Instagrammers and YouTubers with literally no solid background teaching men how to be attractive to women, how to begin a start-up, how to become successful — most of these guys speaking nothing more than hollow motivational words and cliche stuff. They waste your time. Some of these people who present themselves as hugely successful also give talks and write books.   There are so many books on financial advice, self-improvement, love, etc and some people actually try to read them. They are a waste of time, mostly.   When you start reading a dozen books on finance you realize that they all say the same stuff.   You are not going to live forever in the learning phase. Don't procrastinate by reading bull-shit or the same good knowledge in 10 books. What we ought to do is choose wisely.   Yes. A good book can change your life, given you do what it asks you to do.   All the books I have named up to now are worthy of reading. Tim Ferriss, Simon Sinek, Robert Greene — these guys are worthy of reading. These guys teach what others don't. Their books are unique and actually, come from relevant and successful people.   When Richard Branson writes a book about entrepreneurship, go read it. Every line in that book is said by one of the greatest entrepreneurs of our time.   When a Chinese millionaire( he claims to be) Youtuber who releases a video titled “Why reading books keeps you broke” and a year later another one “My recommendation of books for grand success” you should be wise to tell him to jump from Victoria Falls.   These self-improvement gurus sell you delusions.   They say they have those little tricks that only they know that if you use, everything in your life will be perfect. Those little tricks. We are just “making of a to-do-list before sleeping” away from becoming the next Bill Gates.   There are no little tricks.   There is no success-mantra.   Self-improvement is a trap for 99% of the people. You can't do that unless you are very, very strong.   If you are looking for easy ways, you will only keep wasting your time forgetting that your time on this planet is limited, as alive humans that is.   Also, I feel that people who claim to read like a book a day or promote it are idiots. You retain nothing. When you do read a good book, you read slow, sometimes a whole paragraph, again and again, dwelling on it, trying to internalize its knowledge. You try to understand. You think. It takes time.   It's better to read a good book 10 times than 1000 stupid ones.   So be choosy. Read from the guys who actually know something, not some wannabe ‘influencers’.   Edit: Think And Grow Rich was written as a result of a project assigned to Napoleon Hill by Andrew Carnegie(the 2nd richest man in recent history). He was asked to study the most successful people on the planet and document which characteristics made them great. He did extensive work in studying hundreds of the most successful people of that time. The result was that little book.   Nowadays some people just study Instagram algorithms and think of themselves as a Dale Carnegie or Anthony Robbins. By Nupur Nishant, Quora Profits from free accurate cryptos signals: https://www.predictmag.com/    
    • there is no avoiding loses to be honest, its just how the market is. you win some and hopefully more, but u do lose some. 
    • $CSCO Cisco Systems stock, nice top of range breakout, from Stocks to Watch at https://stockconsultant.com/?CSCOSEPN Septerna stock watch for a bottom breakout, good upside price gap
×
×
  • Create New...

Important Information

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