I posted a question here yesterday about the rsi vs adx:
https://www.elitetrader.com/et/threads/adx-vs-rsi.358968/page-2#post-5392387
However, What I really want to understand is the difference between high momentum stock and a trending stock.
However, there are different explanations of momentum online, got really confused.
One explanation I found interesting online was one that explained the concept relating it to physics.
It said momentum is like velocity and trend is like speed. So if a stock start at $100 goes to 110$ and back to $100, trend is present but momentum is zero.
%%The way I see it trend is the directional path while momentum is the velocity of price change over time. In a trend there can be periods of high momentum.
View attachment 259633
I like your explanation.The way I see it trend is the directional path while momentum is the velocity of price change over time. In a trend there can be periods of high momentum.
View attachment 259633
First concept:
Momentum is like velocity and trend is like speed. So if a stock start at $100 goes to 110$ and ends at $100, trend is present but momentum is zero.
Second Concept:
Momentum measures the slope of a trend.
A stock that is increasing by 2$ everyday has a constant momentum(fixed increase in stock price result in a constant slope).
A stock price that increase by 2$ first day, 9$ on second day, 25$ on third day e.t.c has increasing value of momentum?
Exactly. So if the slope of the stock price is experiencing a high increase. Then there is high momentum.%%
Exactly;
momentum = price speedometer+ tends to get out waaaaaay to early.
A stock that is increasing by 2$ everyday has a constant momentum(fixed increase in stock price result in a constant slope).
perl -e 'use warnings; use strict; my $curPrice = 100; my $incr = 2;
for (my $i = 1; $i <= 10; ++$i)
{
my $slope = $incr / $curPrice;
my $nextPrice = $curPrice + $incr;
print "i $i curPrice $curPrice incr $incr slope $slope nextPrice $nextPrice\n";
$curPrice = $nextPrice;
}'