<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Learn to Trade</title>
	<atom:link href="http://getstockideas.com/learn-to-trade/feed/" rel="self" type="application/rss+xml" />
	<link>http://getstockideas.com/learn-to-trade</link>
	<description>learn to trade stocks online</description>
	<lastBuildDate>Wed, 18 Aug 2010 02:31:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Price Channel</title>
		<link>http://getstockideas.com/learn-to-trade/price-channel/</link>
		<comments>http://getstockideas.com/learn-to-trade/price-channel/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 15:30:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Chart Overlays]]></category>
		<category><![CDATA[Learn Stock Charts]]></category>

		<guid isPermaLink="false">http://www.stockhideout.com/stock-blog/?p=601</guid>
		<description><![CDATA[PRICE CHANNEL the pattern Commodity or stock prices go up and down from time to time. When you draw a pair of parallel lines to approximate the trend of the prices, you are creating a price channel. When the prices pass through the channel and stays through a trend indicating resistance or support, there exists [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://getstockideas.com/learn-to-trade/wp-content/uploads/2010/01/price-channel.gif"><img src="http://getstockideas.com/learn-to-trade/wp-content/uploads/2010/01/price-channel.gif" alt="price channel" title="price-channel" width="514" height="320" class="aligncenter size-full wp-image-602" /></a></p>
<p><strong>PRICE CHANNEL</strong><br />
the pattern</p>
<p>Commodity or stock prices go up and down from time to time. When you draw a pair of parallel lines to approximate the trend of the prices, you are creating a price channel. When the prices pass through the channel and stays through a trend indicating resistance or support, there exists a “breakout”.</p>
]]></content:encoded>
			<wfw:commentRss>http://getstockideas.com/learn-to-trade/price-channel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving Average</title>
		<link>http://getstockideas.com/learn-to-trade/moving-average/</link>
		<comments>http://getstockideas.com/learn-to-trade/moving-average/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 15:10:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Chart Overlays]]></category>
		<category><![CDATA[Learn Stock Charts]]></category>

		<guid isPermaLink="false">http://www.stockhideout.com/stock-blog/?p=594</guid>
		<description><![CDATA[MOVING AVERAGE the mean When dealing with time series data, a moving average smooths out short-term fluctuations. It also highlights long-term trends. Practical applications of the moving average would be in the analyses of technical data like trade volumes, stock prices, gross domestic product (GDP), employment, and other time-series data. Simple Moving Average The term [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://getstockideas.com/learn-to-trade/wp-content/uploads/2010/01/moving-average.gif"><img class="aligncenter size-full wp-image-595" title="moving-average" src="http://getstockideas.com/learn-to-trade/wp-content/uploads/2010/01/moving-average.gif" alt="" width="501" height="176" /></a></p>
<p><strong>MOVING AVERAGE</strong><br />
the mean</p>
<p>When dealing with time series data, a moving average smooths out short-term fluctuations. It also highlights long-term trends. Practical applications of the moving average would be in the analyses of technical data like trade volumes, stock prices, gross domestic product (GDP), employment, and other time-series data.</p>
<p><strong>Simple Moving Average</strong></p>
<p>	The term simply means the unweighted mean of the previous n data points.<br />
	Example: Computing for a 10-day simple moving average of price is the mean of the previous 10 day prices. If the prices are pM, pM-1 , … , pM-9 then the formula is<br />
SMA = { pM + pM-1 + … + p_{M-9} / 10 }<br />
	When dealing with successive values, a new value is used and an old value is removed.<br />
	SMAtoday = SMAyesterday – {p(M-n) / n} + {p(M) /n}<br />
	Moving average levels may be used to show support in a rising market or resistance in a falling market. The moving average always lags behind the most recent data point. Old data points may also affect the average in a negative manner. To address this concern, weighted and exponential moving averages may be used.</p>
<p>	If the data have periodic fluctuations, applying a simple moving average on that time period will remove that variation.</p>
<p><strong>Cumulative Moving Average</strong></p>
<p>	If an investor wants to look at more data points, he might want to use the cumulative moving average (CMA). This is the average of all the data points up to the current time. For example, the CMA price of stock A from January 1 to March 8 is the average of all the prices of stock A from January 1 to March 8. On March 9, there is a new CMA price since the March 9 price is now going to be added in the computations.</p>
<p>	In equation form, the CMA is the unweighted average of the sequence of i values x1, …, xi up to the current time:<br />
CAi = {{x1 + … + xi}  / i}<br />
To update the cumulative average if a new datum xi+1 arrives, this formula is used:<br />
CAi+1 = {{xi+1 + i CAi}  /  {i+1}}, where CA0 can be taken to be equal to 0.</p>
<p><strong>Weighted Moving Average</strong></p>
<p>	The simple moving average and cumulative moving average does not take into account the weights. The weighted moving average (WMA) has weights that decrease. Given n days, the latest day has n as its weight, the second latest has n-1, and so on, until zero. The formula is:</p>
<p>	WMAM = { n pM + (n-1) pM-1 + … + 2 pM-n+2 + pM-n+1 / n + (n-1) + … + 2 + 1}<br />
Note: the denominator can be computed using the formula [n(n+1)/2].</p>
<p><strong>Exponential Moving Average</strong></p>
<p>	The exponential moving average applies weights that exponentially decreases. The later data gets heavier weights as compared to the earlier data points.<br />
1.	The decrease in the weights is expressed as a constant smoothing factor α, a number between 0 and 1. This factor can be expressed as a percentage, so a value of 20% is equivalent to α = 0.2. If there is a higher α, the older observations are decreased faster. The α may also be expressed in terms of N time periods, where α = 2/(N+1). For example, N = 9 is equivalent to α = 0.2. The half-life of the weights is approximately N/2.8854 and is within 1% if N > 5.<br />
2.	The observation at a time period t is designated Yt, and the value of the EMA at any time period t is designated St.<br />
Note:  The half-life of the weights is the interval over which the weights decrease by a factor of two<br />
The S1 is undefined. S2 is commonly set to Y1, or one may also set S2 to be the average of the first 4 or 5 observations. Smaller α values make the S2 choice relatively more important as compared to larger α values.</p>
<p><strong>The Formula:</strong><br />
The formula for calculating the EMA at time periods t > 2 is as follows,<br />
St = α * Yt-1 + (1-α) * St-1<br />
This is according to Hunter (1986). The weights will obey α(1 − α)x Yt − (x + 1). An alternate approach by Roberts (1959) uses Yt instead of Yt−1:<br />
St,alternate = α * Y_t + (1-\alpha) \times S_{t-1}<br />
It can also be expressed as follows:<br />
EMAtoday = EMA yesterday + α * (price today – EMAyesterday)<br />
Expanding out EMA {yesterday} each time will result in the power series, expressed below:<br />
EMA = α * (p1 + (1-α) p2 + (1-α)2 p3 + (1-α)3 p4 + … )<br />
The one above is an infinite sum with decreasing terms.<br />
In an N-day EMA, the N periods only specify the α factor. For sufficiently large N, The first N data points represent 86% of the total weight in the calculations:<br />
α * {1 + (1-α)+(1-α)2 + … +(1-α)N} / {α * { 1 + (1-α)+(1-α)2 + … +(1-α)∞} = 1 – { 1 – (2 / N+1 ) } N+1<br />
i.e. lim N to ∞ [ 1 - (1 - (2 / N+1) )N+1] ,… tends to 1-e-2 = 0.8647</p>
<p>The formula above gives a starting value for a particular day. After which, the successive days formula shown first could be applied. How far back to go for an initial value depends on the data. If one assumes that prices don’t vary too much, then he can just consider the weighting. The weight omitted by stopping after k terms is found as follows:<br />
α * [ (1-α)k + (1-α)k+1 + (1-α)^k+2 + ... ],<br />
which is<br />
α * (1-α)k * (1 + (1-α) + (1-α)2 + … ]<br />
i.e. a fraction<br />
(1 – α)k<br />
out of the total weight.<br />
As an example, to have 99.9% of the weight,<br />
k = log (0.001) / log (1-α)<br />
terms must be used. Since log,(1-α) approaches -2 / N+1 as N increases, this can then be simplified to approximate<br />
k = 3.45(N+1)<br />
for this example (99.9% weight).</p>
<p><strong>Modified Moving Average:</strong><br />
This is also called running moving average (RMA), or smoothed moving average.<br />
MMAtoday = (N – 1) * MMA yesterday + price / N<br />
This is therefore an EMA, with α = 1 / N.</p>
]]></content:encoded>
			<wfw:commentRss>http://getstockideas.com/learn-to-trade/moving-average/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pivot Point</title>
		<link>http://getstockideas.com/learn-to-trade/pivot-point/</link>
		<comments>http://getstockideas.com/learn-to-trade/pivot-point/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 14:24:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Chart Overlays]]></category>
		<category><![CDATA[Learn Stock Charts]]></category>

		<guid isPermaLink="false">http://www.stockhideout.com/stock-blog/?p=588</guid>
		<description><![CDATA[PIVOT POINT predictive indicator of market movement It is Simply an Average A pivot point is calculated as an average of significant prices, namely the High, Low, and Close from the performance of a market in the previous trading period. If the market in the following period trades above the pivot point it is usually [...]]]></description>
			<content:encoded><![CDATA[<p><strong>PIVOT POINT</strong><br />
predictive indicator of market movement</p>
<p><strong>It is Simply an Average</strong></p>
<p>A pivot point is calculated as an average of significant prices, namely the High, Low, and Close from the performance of a market in the previous trading period. If the market in the following period trades above the pivot point it is usually evaluated as a bullish feeling.  On the other hand, trading below the pivot point is viewed as bearish. It is a price level of significance in analysis of a financial market. Traders use this as a predictive indicator of market movement.</p>
<p>In a market, a pivot point, its associated support and resistance levels, are often turning points for the direction of price movement. If the market is trending up, the pivot point and the resistance levels may represent a ceiling level in price above which the uptrend is no longer sustainable. A reversal may also occur when this happens.  A pivot point and the support levels may represent a low price level of stability or a resistance to further decline in a declining market.</p>
<p>The custom is to calculate additional levels of support and resistance, below and above the pivot point, respectively, by subtracting or adding price differentials calculated from previous trading ranges of the market.</p>
<p><strong>How to Compute For the Pivot Point</strong><br />
There are many methods for calculating the pivot point (P) of a market. Most commonly, it is the arithmetic average of the high (H), low (L), and closing (C) prices of the market in the prior trading period:<br />
P = (H + L + C) / 3.</p>
<p>Sometimes, the average also includes the previous period or the current period’s opening price (O):<br />
P = (O + H + L + C) / 4.<br />
In other situations, the traders like to highlight the closing price, P = (H + L + C + C) / 4, or the present period’s opening price, P = (H + L + O + O) / 4.</p>
<p><strong>Price Support and Resistance Levels: Key Trading Tools</strong><br />
In any market, price support and resistance levels are key trading tools.  Depending on whether the price level is approached in an up-trending or a down-trending market, their roles may be interchangeable. It is calculated from the range of price movement in the previous trading period, added to the pivot point for resistances and subtracted from it for support levels.</p>
<p>By recognizing the upper and the lower halves of the prior trading range, the first and the most significant level of support (S1) and resistance (R1) is obtained. It is defined by the trading above the pivot point (H − P), and below it (P − L). The first resistance on the up-side of the market is given by the lower width of prior trading added to the pivot point price and the first support on the down-side is the width of the upper part of the prior trading range below the pivot point.<br />
•	R1 = P + (P − L) = 2P – L<br />
•	S1 = P − (H − P) = 2P − H</p>
<p>This level may be calculated by subtracting the previous low (L) and high (H) price, respectively, from twice the pivot point value.</p>
<p>The second set of resistance (R2) and support (S2) levels are above and below the first set.  It is determined from the full width of the prior trading range (H − L), added to and subtracted from the pivot point, respectively:<br />
•	R2 = P + (H − L)<br />
•	S2 = P − (H − L)</p>
<p>A third set is calculated again, as common practice.  This represents another higher resistance level (R3) and a yet lower support level (S3).  Here, the method of the second set is continued by doubling the range added and subtracted from the pivot point:<br />
•	R3 = P + 2(H − L)<br />
•	S3 = P − 2(H − L)</p>
<p>Furthermore, this concept is sometimes extended to a fourth set.  The tripled value of the trading range is used in the calculation.</p>
<p>For quality, the second and higher support and resistance levels are always located symmetrically around the pivot point.  Unless the pivot point happens to divide the prior trading range exactly in half, this is not the case for the first levels.</p>
<p><strong>The Pivot Point can be Used as a Trading Tool</strong><br />
Depending on the overall market condition, the pivot point itself represents a level of highest resistance or support. If the market is direction-less, meaning it is undecided, prices will often fluctuate greatly around this level.  The fluctuation will not stop until a price breakout develops.  The pivot point is a leading indicator  that provides advanced signaling of potentially new market highs or lows within a given time frame.</p>
<p>We can use the support and resistance levels calculated from the pivot point and the previous market as exit points of trades. It is however rarely used as entry signals. As an example, if the market is trending upwards and breaks through the pivot point, the first resistance level is usually a good target to close a position.  This is because the chance of resistance and reversal increases by much.</p>
]]></content:encoded>
			<wfw:commentRss>http://getstockideas.com/learn-to-trade/pivot-point/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bollinger Bands</title>
		<link>http://getstockideas.com/learn-to-trade/bollinger-bands/</link>
		<comments>http://getstockideas.com/learn-to-trade/bollinger-bands/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 14:08:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Chart Overlays]]></category>
		<category><![CDATA[Learn Stock Charts]]></category>

		<guid isPermaLink="false">http://www.stockhideout.com/stock-blog/?p=585</guid>
		<description><![CDATA[BOLLINGER BANDS measure the height of the price relative to previous trades This is a technical analysis tool invented by John Bollinger in the 1980s. This evolved from the concept of trading bands. Bollinger Bands are typically used to measure the highness or lowness of the price relative to the trades previously made. Composition of [...]]]></description>
			<content:encoded><![CDATA[<p><strong>BOLLINGER BANDS</strong><br />
measure the height of the price relative to previous trades</p>
<p>This is a technical analysis tool invented by John Bollinger in the 1980s. This evolved from the concept of trading bands. Bollinger Bands are typically used to measure the highness or lowness of the price relative to the trades previously made.</p>
<p>	<strong>Composition of Bollinger Bands:</strong><br />
1.	a middle band being an N-period simple moving average (MA)<br />
2.	an upper band at K times an N-period standard deviation above the middle band (MA+K*sigma)<br />
3.	a lower band at K times an N-period standard deviation below the middle band (MA-K*sigma)</p>
<p>Typical values for N and K are 20 and 2, respectively. The default choice for the average is a simple moving average, but other types of averages can be employed as needed. A common second choice is exponential moving averages. Usually the same period is used for both the middle band and the calculation of standard deviation.</p>
<p>	<strong>Purpose</strong><br />
Bollinger Bands are there to provide a relative definition of high and low.  Prices are high at the upper band and low at the lower band. This definition can help in pattern recognition and is also useful in comparing price action to the action of indicators to arrive at systematic trading decisions.</p>
<p>	<strong>Indicators derived from Bollinger Bands</strong><br />
There are two indicators derived from Bollinger Bands, %b and BandWidth:<br />
%b, pronounced ‘percent b’, is derived from the formula for Stochastics and tells you where you are in relation to the bands. %b equals 1 at the upper band and 0 at the lower band. Writing upperBB for the upper Bollinger Band, lowerBB for the lower Bollinger Band, and last for the last (price) value:<br />
%b = (last – lowerBB) / (upperBB – lowerBB)<br />
BandWidth tells you how wide the Bollinger Bands are on a normalized basis. Writing the same symbols as before, and middleBB for the moving average, or middle Bollinger Band:<br />
BandWidth = (upperBB – lowerBB) / middleBB<br />
Using the default parameters of a 20-period look back and plus/minus two standard deviations, BandWidth is equal to four times the 20-period coefficient of variation.<br />
Uses for %b include system building and pattern recognition. Uses for BandWidth include identification of opportunities arising from relative extremes in volatility and trend identification.</p>
<p>	<strong>Interpretation</strong><br />
The use of Bollinger Bands varies much among traders. Some buy when price touches the lower Bollinger Band and some exit when price touches the moving average in the center of the bands. Others buy when price goes above the upper Bollinger Band or sell when price falls below.  The use of Bollinger Bands is not confined to stock traders; options traders, most notably implied volatility traders, often sell options when Bollinger Bands are historically far apart or buy options when the Bollinger Bands are historically close together. In both instances, they are expecting volatility to go back towards the average historical volatility level for the stock.</p>
<p>When the bands lie close together this indicates a period of low volatility in stock price. On the other hand, if they are far apart this indicates a period of high volatility in price. The price of a stock is predictably found to go up and down between the bands, as though in a channel, if the bands have only a slight slope and lie approximately parallel for an extended time.</p>
<p>Together with other indicators, many traders often use Bollinger Bands to see if there is confirmation. It is common practice to use a non-oscillator indicator like chart patterns or a trendline, with an oscillator like Bollinger Bands; through these indicators the recommendation of the Bollinger Bands is confirmed and the trader will have greater evidence that what the Bands forecast is true.</p>
<p>	<strong>Bollinger Bands and Statistics</strong><br />
Security prices usually have no known statistical distribution bet ir normal or not. They are characterized to have fat tails versus the Normal. The sample size typically used, which is 20, is too small to be reliable for conclusions to be derived from statistical techniques such as the Central Limit Theorem. For this reason, these techniques usually require the sample to be independent and identically distributed. This is not the case for a time series like security prices.</p>
<p>Because of these reasons, it is wrong to assume that the percentage of the data outside the Bollinger Bands will always be limited to a certain amount. Therefore, instead of finding about 95% of the data inside the bands, as would be the expectation with the default parameters and a normal distribution, one should find less. How much less is a function of the volatility of the security.</p>
]]></content:encoded>
			<wfw:commentRss>http://getstockideas.com/learn-to-trade/bollinger-bands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learn to Trade Stocks</title>
		<link>http://getstockideas.com/learn-to-trade/learn-to-trade-stocks/</link>
		<comments>http://getstockideas.com/learn-to-trade/learn-to-trade-stocks/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 14:32:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Learn to Trade (Featured)]]></category>
		<category><![CDATA[Stock Blog Update]]></category>

		<guid isPermaLink="false">http://www.stockhideout.com/stock-blog/?p=576</guid>
		<description><![CDATA[Sure, who doesn&#8217;t love a free stock screener?  However, all the technicals in the world are world nothing without a bit of stock trading knowledge under your belt.  We highly recommend that you take a few minutes and tune-up on your stock trading knowledge with the following learn-to-trade tutorials and definitions. Here&#8217;s a quick overview [...]]]></description>
			<content:encoded><![CDATA[<p>Sure, who doesn&#8217;t love a <a href="http://getstockideas.com">free stock screener</a>?  However, all the technicals in the world are world nothing without a bit of stock trading knowledge under your belt.  We highly recommend that you take a few minutes and tune-up on your stock trading knowledge with the following learn-to-trade tutorials and definitions.</p>
<p>Here&#8217;s a quick overview of our current educational sections.</p>
<h3>Candlestick Charts</h3>
<p>Candlesticks are usually composed of the body (black or white), and an upper and a lower shadow (wick). The wick illustrates the highest and lowest traded prices of a security during the time interval represented. The body illustrates the opening and closing trades. If the security closed higher than it opened, the body is white or unfilled, with the opening price at the bottom of the body and the closing price at the top. If the security closed lower than it opened, the body is black, with the opening price at the top and the closing price at the bottom. A candlestick need not have either a body or a wick.</p>
<ul>
<li><a title="View all posts filed under Bearish Candlesticks" href="../category/learn-stock-charts/candlestick-charts/bearish-candlesticks/">Bearish Candlesticks</a>
<ul>
<li><a title="View all posts filed under 1. High Reliability (bearish)" href="http://getstockideas.com/learn-to-trade/category/learn-stock-charts/candlestick-charts/bearish-candlesticks/1-high-reliability-bearish/">1. High Reliability</a></li>
<li><a title="View all posts filed under 2. Medium Reliability (bearish)" href="http://getstockideas.com/learn-to-trade/category/learn-stock-charts/candlestick-charts/bearish-candlesticks/2-medium-reliability-bearish/">2. Medium Reliability</a></li>
<li><a title="View all posts filed under 3. Low Reliability (bearish)" href="http://getstockideas.com/learn-to-trade/category/learn-stock-charts/candlestick-charts/bearish-candlesticks/low-reliability-bearish-bearish-candlesticks-candlestick-charts-learn-stock-charts/">3. Low Reliability</a></li>
</ul>
</li>
<li><a title="View all posts filed under Bullish Candlesticks" href="../category/learn-stock-charts/candlestick-charts/bullish-candlesticks/">Bullish Candlesticks</a>
<ul>
<li><a title="View all posts filed under 1. High Reliability (bullish)" href="http://getstockideas.com/learn-to-trade/category/learn-stock-charts/candlestick-charts/bullish-candlesticks/high-reliability-bullish-bullish-candlesticks-candlestick-charts-learn-stock-charts/">1. High Reliability</a></li>
<li><a title="View all posts filed under 2. Medium Reliability (bullish)" href="http://getstockideas.com/learn-to-trade/category/learn-stock-charts/candlestick-charts/bullish-candlesticks/medium-reliability-bullish-bullish-candlesticks-candlestick-charts-learn-stock-charts/">2. Medium Reliability</a></li>
<li><a title="View all posts filed under 3. Low Reliability (bullish)" href="http://getstockideas.com/learn-to-trade/category/learn-stock-charts/candlestick-charts/bullish-candlesticks/low-reliability-bullish/">3. Low Reliability </a></li>
</ul>
</li>
</ul>
<h3><a href="http://getstockideas.com/learn-to-trade/category/learn-stock-charts/chart-overlays/">Chart Overlays</a></h3>
<p>These are usually used to help stock traders smooth out a stock chart, or to quick see when a stock might be going lower or higher than usual.</p>
<p><a href="http://getstockideas.com/learn-to-trade/category/learn-stock-charts/chart-overlays/">Read more about chart overlays&#8230;</a></p>
<h3><a href="http://getstockideas.com/learn-to-trade/category/learn-stock-charts/technical-indicators/">Technical Indicators</a></h3>
<p>Chart Technicals are commonly used by stock trader to forecast the future movement of a stock.  They make no guarantees of futures price patterns.  However, they do help investors anticipate what is likely to occur.  Many technicals, for example, show when a stock seems to have become oversold or overbought, allowing an investor to help plan their trades.</p>
<p><a href="http://getstockideas.com/learn-to-trade/category/learn-stock-charts/technical-indicators/">Read more about technical indicators&#8230;</a></p>
<h3><a href="http://getstockideas.com/learn-to-trade/category/learn-stock-charts/chart-patterns/">Chart Patterns</a></h3>
<p>Another way to help predict price patterns in a stock is to use specific chart patterns.  Certain pattern types can help an investor recognize an upcoming bullish move or caution them of a possible upcoming bearish pullback.</p>
<p><a href="http://getstockideas.com/learn-to-trade/category/learn-stock-charts/chart-patterns/">Read more about chart patterns&#8230;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://getstockideas.com/learn-to-trade/learn-to-trade-stocks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chart Overlays</title>
		<link>http://getstockideas.com/learn-to-trade/chart-overlays/</link>
		<comments>http://getstockideas.com/learn-to-trade/chart-overlays/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 19:06:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Introduction]]></category>

		<guid isPermaLink="false">http://www.stockhideout.com/stock-blog/?p=573</guid>
		<description><![CDATA[Learn about Bollinger Band, Price Channels and more&#8230;]]></description>
			<content:encoded><![CDATA[<p>Learn about Bollinger Band, Price Channels and more&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://getstockideas.com/learn-to-trade/chart-overlays/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Technical Indicators</title>
		<link>http://getstockideas.com/learn-to-trade/technical-indicators/</link>
		<comments>http://getstockideas.com/learn-to-trade/technical-indicators/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 18:58:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Introduction]]></category>

		<guid isPermaLink="false">http://www.stockhideout.com/stock-blog/?p=570</guid>
		<description><![CDATA[Learn how to use various technical indicators to help you find chart patterns.]]></description>
			<content:encoded><![CDATA[<p>Learn how to use various technical indicators to help you find chart patterns.</p>
]]></content:encoded>
			<wfw:commentRss>http://getstockideas.com/learn-to-trade/technical-indicators/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Candlestick Charts</title>
		<link>http://getstockideas.com/learn-to-trade/candlestick-charts/</link>
		<comments>http://getstockideas.com/learn-to-trade/candlestick-charts/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 18:56:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Introduction]]></category>

		<guid isPermaLink="false">http://www.stockhideout.com/stock-blog/?p=568</guid>
		<description><![CDATA[Learn to read candlestick charts and to spot bullish and bearish signals&#8230;]]></description>
			<content:encoded><![CDATA[<p>Learn to read candlestick charts and to spot bullish and bearish signals&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://getstockideas.com/learn-to-trade/candlestick-charts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On-Balance Volume</title>
		<link>http://getstockideas.com/learn-to-trade/on-balance-volume/</link>
		<comments>http://getstockideas.com/learn-to-trade/on-balance-volume/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 18:48:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Learn Stock Charts]]></category>
		<category><![CDATA[Learn to Trade (Featured)]]></category>
		<category><![CDATA[Technical Indicators]]></category>

		<guid isPermaLink="false">http://www.stockhideout.com/stock-blog/?p=564</guid>
		<description><![CDATA[ON-BALANCE VOLUME price-volume relationship Based on a cumulative volume, the on-balance volume relates price and volume in the stock market, and it has the formula: OBV = OBVprev + volume … if close > closeprev then { + volume} + 0 … if close = closeprev then { + 0} - volume … if close [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://getstockideas.com/learn-to-trade/wp-content/uploads/2010/01/on-balance-volume.gif"><img class="aligncenter size-full wp-image-657" title="on-balance-volume" src="http://getstockideas.com/learn-to-trade/wp-content/uploads/2010/01/on-balance-volume.gif" alt="" width="503" height="404" /></a></p>
<p><strong>ON-BALANCE VOLUME</strong><br />
price-volume relationship</p>
<p>Based on a cumulative volume, the on-balance volume relates price and volume in the stock market, and it has the formula:</p>
<p>OBV = OBVprev<br />
+ volume … if close > closeprev then { + volume}<br />
+ 0 … if close = closeprev then { + 0}<br />
- volume … if close < closeprev then { – volume}</p>
<p>If the closing price is higher on a particular day, the total volume is assigned a positive value. The reverse is applied if the closing price is lower (a negative value is assigned). So prices and OBV are directly related. If prices are going up, OBV should also be going up.</p>
<p>Woods and Vignolia originally called this technique cumulative volume. In 1946, Joseph Granville termed it on-balance volume. It can be applied to stocks based on their daily upward or downward close. OBV is generally used to check price moves. The general assumption is volume is higher on days where the price move is in the dominant direction. For example, there is more volume on up days than during down days.</p>
]]></content:encoded>
			<wfw:commentRss>http://getstockideas.com/learn-to-trade/on-balance-volume/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Money Flow</title>
		<link>http://getstockideas.com/learn-to-trade/money-flow/</link>
		<comments>http://getstockideas.com/learn-to-trade/money-flow/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 18:47:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Learn Stock Charts]]></category>
		<category><![CDATA[Learn to Trade (Featured)]]></category>
		<category><![CDATA[Technical Indicators]]></category>

		<guid isPermaLink="false">http://www.stockhideout.com/stock-blog/?p=562</guid>
		<description><![CDATA[MONEY FLOW price times volume Money flow approximates the dollar value of a certain day’s trading. The formula is price multiplied by volume. Generally, a value of 80 is counted as overbought while a value of 20 is considered as oversold. Differences in the MFI (money flow indicator) and price action are significant. If the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://getstockideas.com/learn-to-trade/wp-content/uploads/2010/01/money-flow.gif"><img class="aligncenter size-full wp-image-655" title="money-flow" src="http://getstockideas.com/learn-to-trade/wp-content/uploads/2010/01/money-flow.gif" alt="money flow" width="503" height="402" /></a></p>
<p><strong>MONEY FLOW</strong><br />
price times volume</p>
<p>Money flow approximates the dollar value of a certain day’s trading. The formula is price multiplied by volume. Generally, a value of 80 is counted as overbought while a value of 20 is considered as oversold. Differences in the MFI (money flow indicator) and price action are significant. If the price makes a new rally high but the MFI high is lower than the previous high, then it is counted as a weak advance. And this situation is likely to reverse.</p>
<p>Furthermore, money flow refers to dollar volume, the total value of shares traded. It should be differentiated from money “flowing into” the stock. An up day represents the enthusiasm of the buyers while the down day represents the enthusiasm of the sellers. An excessive proportion to a certain direction will likely result in a price reversal.</p>
<p>MFI and RSI (relative strength index) have a similarity. Both look at up days against total up plus down days, but what is accumulated on those days, is dollar volume for the MFI, as opposed to price change amounts for the RSI.</p>
]]></content:encoded>
			<wfw:commentRss>http://getstockideas.com/learn-to-trade/money-flow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

