Trading With The Heikin-Ashi Candlestick Oscillator

Size: px
Start display at page:

Download "Trading With The Heikin-Ashi Candlestick Oscillator"

Transcription

1 INDICATORS Visual, Digital Candlesticks Trading With The Heikin-Ashi Candlestick Oscillator This visual tool complements candlesticks that will help you enter and exit trades, resulting in higher profits per trade. by Sylvain Vervoort A nalyzing a candlestick chart gives a good idea of what is going on in the market. Candlestick patterns, resistance or support from price pivots, rising or falling windows, and the use of trendlines are all excellent technical trading tools. But initiating a trade and deciding when to close it, candle after candle, remains a difficult task. It would be nice to have a complementary visual aid when looking at a candle chart. Figure 1, a daily chart for Ford Motor Co., uses an expert function for color-coding the candlesticks. On November 21, 2006, the price falls through the uptrend line after a number of green candles. This means it s time to close any long position and open a new short position. As long as there are red candles, we will keep the short trade open. On December 20, 2006, there is a new green candle. Drawing a downtrend line up to this point, we see that it is broken to the upside. It s time to close the short position and open a new long position. On February 13, 2007, we have a first red candle. Drawing the uptrend line, we see that the closing price remains above

2 the uptrend line. As a rule, we will wait for the next day. The price continues above the trendline and the candles are turning green again. On February 22, 2007, there is another red candle. Now, the uptrend line is broken, so we close the long position eventually, opening a new short position. The color-coded candlesticks make daily followup easy and relaxing. Want to know how this is done? Of course you do. THE STARTING IDEA A good starting point is the heikin-ashi chart. In the daily chart of Sysco Corp. in Figure 2, you can see the traditional candlestick chart on the top and the heikinashi chart on the bottom. Visually, the heikin-ashi candles look very consistent. In a downtrend, we see mostly black candles with no or small upper shadows. In an uptrend, there are mostly white candles with no or small lower shadows. First, I am going to color-code the normal candle chart with the information from the heikin-ashi chart. A white heikinashi candle will paint the normal candlestick green and a black heikin-ashi candle will paint the normal candlestick red. The result can be seen in Figure 3. To do this in MetaStock, we create an expert function and link it to the chart. In the highlights tab of the expert editor, we first introduce the formula to create a green candle when the heikin-ashi closing price is greater than or equal to the heikinashi opening price and we link a green color to a positive outcome: November December 2007 February FIGURE 1: COLOR-CODED CANDLESTICKS. A short trade can be opened when price falls through the uptrend line. The short trade is open till the downtrend line is broken to the upside. :=hac>=haopen; We do the same for creating a red candle with this second formula when the heikin-ashi closing price is smaller than the opening price and we link red to it. :=hac<haopen; The execution priority is a green candle followed by a red candle. That way, the red candle function is only executed if the green candle function has a negative outcome (not true) METASTOCK SYSCO Corp. normal candles Heikin-ashi color-coded candles SYSCO Corp. heikin-ashi candles July August September October FIGURE 2: THE HEIKIN-ASHI CHART. Here you see a traditional candlestick chart on the top and a heikin-ashi chart on the bottom. As you can see, the heikin-ashi chart is very consistent July August September October FIGURE 3: COLOR-CODING USING INFORMATION FROM HEIKIN-ASHI. A white heikin-ashi candle will paint the normal candlestick green and a black heikin-ashi candle will paint the normal candlestick red.

3 NOT A PERFECT WORLD Unfortunately, results are not always going to be as positive as what you see in the Sysco chart. In this case, there is a nice range of red candles in the downtrend and a longer series of green candles in the uptrend. Wouldn t it be great if prices were moving like that all the time? But as we know all too well, the market is not going to move perfectly all the time. Note in Figure 4 how the colors are less consistent and much less usable for entering or exiting a trade. It is clear that in any up- or downtrend, there must be room for some price reaction. Let s try some techniques to keep the bars as green as possible during an uptrend, with little delay at turning points. First, we can eliminate all single-day reactions by extending a previous green candle by at least one more bar. In the TWX example, this adds eight more green candles in the uptrend (Figure 5). To do this, we change the green candle and red candle formulas as follows: haopen:=(ref((o+h+l+c)/4,- 1)+PREV)/2; 4+haOpen+Max(H,haOpen)+Min (L,haOpen))/4; :=Alert(haC>=haOpen,2); haopen:=(ref((o+h+l+c)/4,- 1)+PREV)/2; :=Alert(haC<haOpen,2); But a number of red candles are still left that we would like to eliminate in the uptrend. The second step is to see if the new candle comes after a green candle, or if it is a white candle (close above open). If it is the latter, there is no need to change the color because the bars still point in the direction of the uptrend. In Figure 6 you can see that another two red candles are eliminated by this second step. The green candle and red candle formulas have now been changed as follows: 4+haOpen+Max(H,haOpen)+Min (L,haOpen))/4; :=Alert(haC>=haOpen,2); OR (Ref(,-1) AND (C>=O OR C>=Ref(C, February March April May June FIGURE 4: NOT A PERFECT WORLD. Here, the colors are less consistent and cannot be used for entering or exiting a trade March April May FIGURE 5: AS GREEN AS POSSIBLE. All single-day reactions can be eliminated by extending a previous green candle by at least one more bar. 1))) 4+haOpen+Max(H,haOpen)+Min (L,haOpen))/4; :=Alert(haC<haOpen,2); OR (Ref(,-1) AND (C<O OR C<Ref(C,-1))) In the third step, we will use a fast crossover system to allow a minimum price reaction while still being very fast at the turning points. We will employ the zero-lag crossover system that I introduced in my article in the STOCKS & COMMODITIES May 2008 issue. The code can be found here (upper left) in the sidebar, MetaStock crossover formula. We consider an uptrend (green candle) when ZlDif is equal to or greater than zero. I am using a triple exponential moving average (TEMA) of 34 bars. You may want to make that value smaller or bigger if you want to allow less or more price reaction. At the price pivot point levels, often there are doji candles or spinning tops or bottoms with a small body compared to

4 METASTOCK CROSSOVER FORMULA avg:=34; haopen:=(ref((o+h+l+c)/4,-1) + PREV)/2; 4+haOpen+Max(H,haOpen)+Min(L,haOpen))/ 4; ZlDif the high-low price. To eliminate them, I must introduce a last step. That step is not changing the green color when the previous candle is green and the size of the real body is smaller than 35% of the full high low range. In addition, the high must be higher than the previous low to make sure there is no window in between. The final result can be seen in Figure 7. There are now only green candles during the entire uptrend. We get a sell signal on the first red candle. Drawing uptrend lines at this point shows a third, steeper trendline that has been broken downward. This tells us it is time to sell. The complete expert formula _Uptrend_HA can be found in the sidebar MetaStock and the last step. The order of execution is first the formula (green candle) and then the red candle only when the green candle is false. With the green candle uptrend expert we have a useful tool to keep us in an uptrend and detect a downward trend reversal. What we need next is an equally effective expert for a downtrend. For this we can simply reverse the execution order and put a red candle on top of a green candle in the expert editor. Or you can create another expert and call it _Downtrend_HA with the same formulas to be introduced in the expert editor, but now with an inverse execution order formula (red candle) first, followed by the (green candle) formula. Figure 8, a graphic of KBH, shows a downtrend. In the lower part of the chart, we used the expert function _Uptrend_HA. The first red candle here is the reversal signal for going short. The upper part is the expert function _Downtrend_HA. We will stay short as long as there are red candles. With the first green candle, we would close the short position and eventually open a long position. Unfortunately, there is no perfect system. You may receive signals to exit a trade when it is probably better to hold onto the trade. The idea is not to trust this system blindly. When you are faced with a reversal signal, you must use all available technical analysis techniques to make an intelligent decision, preferably supported by more than one technique. Figure 9 illustrates the use of combined techniques. From April May FIGURE 6: DO THE BARS POINT IN THE RIGHT DIRECTION? We can take this one step further and eliminate more red candles in an uptrend. Initiating a trade and deciding when to close it, candle after candle, remains a difficult task. the _Downtrend_HA expert, we receive a buy signal at (1). So we are now looking at the _Uptrend_HA candle chart. We are combining this chart with a fast indicator like my SVAPO (see my article in the November 2007 issue of STOCKS & COMMODITIES) to find out if there is a greater chance for a move up or down. In early March, we had a red selling bar at (2). Here we would hold on to the long position at least for one more day because the closing price remains well above the last support line, and SVAPO is below the lower reference line, suggesting the possibility of an up move for the following bars. We have an uptrend line drawn from the beginning of the up move through the low at (2). We have drawn a parallel line through the previous top to form an uptrend channel. At the end of March, we have a second selling signal at (3). But there are enough reasons to hold onto the position. The price remains above the uptrend line within the uptrend channel and a closing price above the last support while SVAPO is below the lower reference line, suggesting a higher chance of an up move. The next selling signal appears in the first half of April, but the price remains above the uptrend line within the uptrend channel and a closing price above the last support. During this activity, SVAPO is moving up. The price continues to move up and reaches the upper side of the trend channel, making a top above the upper SVAPO reference line. At (5)

5 March April May June FIGURE 7: TWEAKING THE TREND EVEN FURTHER. We can go one more step further and eliminate any dojis, spinning tops or bottoms, and other similar patterns price drops through the last steeper uptrend line and we get another red selling bar. This is a good profit-taking moment. Next, selling signals appear at (6) when the closing price drops through the last support line, and at (7), when price drops out of the trend channel. If you prefer using an oscillator instead of color-coded candlesticks, you can use the heikin-ashi candlesticks oscillator (HACO), which I will explain next. INTRODUCING HACO HACO is a digital oscillator version of the colored candlesticks. It has either a value of zero for a red candle or 1 for a green candle. The basic formula is taken from the green candle and the red candle out of the _Uptrend_HA expert. The MetaStock code for the HACO can be found in the sidebar The heikin-ashi candlestick oscillator (HACO). On the chart of General Electric (GE) in Figure 10, you ll see the HACO on the top subchart. I have colored the price chart so METASTOCK AND THE LAST STEP (Note: The MetaStock expert for an uptrend is _Uptrend_HA ) avg:=34; haopen:=(ref((o+h+l+c)/4,-1) + PREV)/2; keep1:=alert(hac>=haopen,2); keep2:=zldif>=0; keeping:=(keep1 OR keep2); keepall:=keeping OR (Ref(keeping,-1) AND (C>=O) OR C>=Ref(C,-1)); keep3:=(abs(c-o)<(h-l)*.35 AND H>=Ref(L,-1)); utr:=keepall OR (Ref(keepall,-1) AND keep3); keep1:=alert(hac<haopen,2); keep2:=zldif<0; keep3:=abs(c-o)<(h-l)*.35 AND L<=Ref(H,-1); keeping:=keep1 OR keep2; keepall:=keeping OR (Ref(keeping,-1) AND (C<O) OR C<Ref(C,-1)); dtr:=if(keepall OR (Ref(keepall,-1) AND keep3)=1,1,0); upw:=dtr=0 AND Ref(dtr,-1) AND utr; dnw:=utr=0 AND Ref(utr,-1) AND dtr; result:=if(upw,1,if(dnw,0,prev)); result avg:=34; haopen:=(ref((o+h+l+c)/4,-1) + PREV)/2; keep1:=alert(hac>=haopen,2); keep2:=zldif>=0; keeping:=(keep1 OR keep2); keepall:=keeping OR (Ref(keeping,-1) AND (C>=O) OR C>=Ref(C,-1)); keep3:=(abs(c-o)<(h-l)*.35 AND H>=Ref(L,-1)); utr:=keepall OR (Ref(keepall,-1) AND keep3); keep1:=alert(hac<haopen,2); keep2:=zldif<0; keep3:=abs(c-o)<(h-l)*.35 AND L<=Ref(H,-1); keeping:=keep1 OR keep2; keepall:=keeping OR (Ref(keeping,-1) AND (C<O) OR C<Ref(C,-1)); dtr:=if(keepall OR (Ref(keepall,-1) AND keep3)=1,1,0); upw:=dtr=0 AND Ref(dtr,-1) AND utr; dnw:=utr=0 AND Ref(utr,-1) AND dtr; result:=if(upw,1,if(dnw,0,prev)); result=0

6 March April FIGURE 8: DOWNTRENDS. Here you see red candle and green candle formulas. As long as there are red candles, it s best to stay short February March April May 3 SVAPO(1,3) June FIGURE 9: COMBINING TREND CHARTS WITH SVAPO. Using trend charts with a fast indicator like SVAPO adds confirmation to your buy/sell decisions you can easily see the periods with a long position (green) and with a short position (red). HACO is not meant to be an automatic trading system, so when there is a buy or sell signal from HACO, make sure it is confirmed by other technical analysis techniques. HACO will certainly aid in signaling buy and sell opportunities and help you hold onto a trade, making it more profitable. In early 2004, you can probably avoid a short position in GE for just a couple of days, generating more net profit. You can change the input value in the HACO for the zero-lag TEMA in the up and down moves. Basically, you would use the same value for both entries. If you use different values, it will work fine most of the time, but there may be some unexpected results. This is because using different up and down TEMAs will mean no synchronization between the up and down components. The behavior of HACO is closely related to the level and speed of price change. It can be used on charts of any time frame ranging from intraday to monthly. Sylvain Vervoort lives in the Flemish part of Belgium and is a retired electronics engineer, studying and using technical analysis for more than 30 years. He is an independent trader, writer, publisher, and educator in the area of technical analysis and options. Sylvain Vervoort may be reached at his website at ADDITIONAL READING Mulloy, Patrick [1994]. Smoothing Data With Less Lag, Technical Analysis of STOCKS & COMMODITIES, Volume 12: February. Valcu, Dan [2004]. Using The Heikin- Ashi Technique, Technical Analysis of STOCKS & COMMODITIES, Volume 22: February. Vervoort, Sylvain [2008]. The Quest For Reliable Crossovers, Technical Analysis of STOCKS & COMMODITIES, Volume 26: May. [2007]. Short-Term Volume And Price Oscillator, Technical Analysis of STOCKS & COMMODITIES, Volume 25: November.

7 THE HEIKIN-ASHI CANDLESTICK OSCILLATOR (HACO) {HACO} avg:=input( Up TEMA average:,1,100,34); avgdn:=input( Down TEMA Average:,1,100,34); haopen:=(ref((o+h+l+c)/4,-1) + PREV)/2; keep1:=alert(hac>=haopen,2); keep2:=zldif>=0; keeping:=(keep1 OR keep2); keepall:=keeping OR (Ref(keeping,-1) AND (C>=O) OR C>=Ref(C,-1)); keep3:=(abs(c-o)<(h-l)*.35 AND H>=Ref(L,-1)); utr:=keepall OR (Ref(keepall,-1) AND keep3); TMA1:= Tema(haC,avgdn); TMA2:= Tema(TMA1,avgdn); TMA1:= Tema((H+L)/2,avgdn); TMA2:= Tema(TMA1,avgdn); keep1:=alert(hac<haopen,2); keep2:=zldif<0; keep3:=abs(c-o)<(h-l)*.35 AND L<=Ref(H,-1); keeping:=keep1 OR keep2; keepall:=keeping OR (Ref(keeping,-1) AND (C<O) OR C<Ref(C,-1)); dtr:=if(keepall OR (Ref(keepall,-1) AND keep3)=1,1,0); upw:=dtr=0 AND Ref(dtr,-1) AND utr; dnw:=utr=0 AND Ref(utr,-1) AND dtr; result:=if(upw,1,if(dnw,0,prev)); result S.V November 2004 February March April May June FIGURE 10: HACO. The long positions are displayed in green and short positions in red. S&C

Trading Medium-Term Divergences

Trading Medium-Term Divergences TRADING SYSTEMS Spotting Trend Reversals Trading Medium-Term Divergences Detect medium-term divergences by using the zero-lagging exponential moving average, support and resistance lines, and trendlines.

More information

Trendline Tips And Tricks

Trendline Tips And Tricks Tantalizing! Trendline Tips And Tricks How do you capture those medium- to longer-term moves when trying to enter and exit trades quickly? D by Sylvain Vervoort aydreaming about trading? Get in a trade

More information

Alerts & Filters in Power E*TRADE Pro Strategy Scanner

Alerts & Filters in Power E*TRADE Pro Strategy Scanner Alerts & Filters in Power E*TRADE Pro Strategy Scanner Power E*TRADE Pro Strategy Scanner provides real-time technical screening and backtesting based on predefined and custom strategies. With custom strategies,

More information

A Candlestick Primer. By Tom Bierovic

A Candlestick Primer. By Tom Bierovic A Candlestick Primer By Tom Bierovic Introduction Although centuries old, Japanese candlestick charts are relatively new to the West: Steve Nison introduced them here in 1991 in his book, Japanese Candlestick

More information

CHART PATTERNS. www.tff-onlinetrading.com

CHART PATTERNS. www.tff-onlinetrading.com CHART PATTERNS Technical analysis, as you have seen in our Trading Academy videos so far, is not just about charts. It does, however, rely heavily on them and often uses chart patterns to assist in making

More information

Why the E.A.S.Y. Method?

Why the E.A.S.Y. Method? Why the E.A.S.Y. Method? Mark Douglas, author of Trading in the Zone, states: The best traders have developed an edge and more importantly, they trust their edge. Why the E.A.S.Y. Method? My trading edge

More information

Heikin-Ashi-two-Bar-Strategy Guide to Strategic and Tactical Forex Trading Pull the Trigger and Hit your Targets

Heikin-Ashi-two-Bar-Strategy Guide to Strategic and Tactical Forex Trading Pull the Trigger and Hit your Targets Heikin-Ashi-two-Bar-Strategy Guide to Strategic and Tactical Forex Trading Pull the Trigger and Hit your Targets Currency: EUR/JPY, GBP/JPY Time frame: 5 min Indicators: BB 14, 2, ADX 14, SSD 5, 3, 3,

More information

Retracement Or Reversal. Kennsei Trading, Inc. Chief Trader Dinger dinger@kennseitrading.com www.hotstocksforincome.com

Retracement Or Reversal. Kennsei Trading, Inc. Chief Trader Dinger dinger@kennseitrading.com www.hotstocksforincome.com Retracement Or Reversal Kennsei Trading, Inc. Chief Trader Dinger dinger@kennseitrading.com www.hotstocksforincome.com Retracement Or Reversal Most of us have wondered, at some point, whether a decline

More information

The Use of Trend Lines and Charting Patterns in Trading the Forex Markets

The Use of Trend Lines and Charting Patterns in Trading the Forex Markets The Use of Trend Lines and Charting Patterns in Trading the Forex Markets The use of Trends and Trend Lines forms the basis of establishing the support and resistance levels and charting patterns that

More information

Golden Penny Stock Millionaires Golden Market Secrets For Trading Penny Stocks:

Golden Penny Stock Millionaires Golden Market Secrets For Trading Penny Stocks: Golden Penny Stock Millionaires Golden Market Secrets For Trading Penny Stocks: Introduction: Greetings; Hey, I m William Bell, stock analyst with the Golden Penny Stock Millionaires Financial Trading

More information

Stochastic Oscillator.

Stochastic Oscillator. Stochastic Oscillator. By Jay Lakhani www.4x4u.net George Lane was the originator of the stochastic indicator in the 1960 s; the indicator tracks the market momentum. Lane observed that as prices rise

More information

CHART TRADING GUIDE 1

CHART TRADING GUIDE 1 CHART TRADING GUIDE 1 How to understand chart trading This guide is designed to teach you the basics of chart trading- the chart patterns that are covered in this booklet can be used for short and medium

More information

Chapter 6 - Rahul Mohindar Oscillator System

Chapter 6 - Rahul Mohindar Oscillator System Chapter 6 - Rahul Mohindar Oscillator System The Rahul Mohindar Oscillator and its associated tools and indicators were developed by Mr. Rahul Mohindar of VIRATECH (viratechindia.com). In addition to being

More information

Presents. The Trading Information Revealed Here is not the Same as the WizardTrader.com Methods -- But Together They Pack a Powerful Punch

Presents. The Trading Information Revealed Here is not the Same as the WizardTrader.com Methods -- But Together They Pack a Powerful Punch Presents Killer Patterns Now You Can Have These Trading Gems -- Free! The Trading Information Revealed Here is not the Same as the WizardTrader.com Methods -- But Together They Pack a Powerful Punch 1

More information

A GUIDE TO WL INDICATORS

A GUIDE TO WL INDICATORS A GUIDE TO WL INDICATORS GETTING TECHNICAL ABOUT TRADING: USING EIGHT COMMON INDICATORS TO MAKE SENSE OF TRADING What s a technical indicator and why should I use them? What s the market going to do next?

More information

Simpler Options. Indicator guide. An informative reference for John Carter s commonly used trading indicators. www.simpleroptions.

Simpler Options. Indicator guide. An informative reference for John Carter s commonly used trading indicators. www.simpleroptions. Simpler Options Indicator guide An informative reference for John Carter s commonly used trading indicators At Simpler Options you will see a handful of proprietary indicators on John Carter s charts.

More information

New Trendlens Indicators & Functions

New Trendlens Indicators & Functions New Trendlens Indicators & Functions There are 83 new indicators and functions available in TrendLens. Formation Functions Highest Value The Highest Value formation function looks back bar count number

More information

Day Trade System EZ Trade FOREX

Day Trade System EZ Trade FOREX Day Trade System The EZ Trade FOREX Day Trading System is mainly used with four different currency pairs; the EUR/USD, USD/CHF, GBP/USD and AUD/USD, but some trades are also taken on the USD/JPY. It uses

More information

Candlesticks For Support And Resistance

Candlesticks For Support And Resistance NOVICE TRADER Candlesticks For Support And Resistance Even as you read this, the candlestick charting technique, with its origins in Japan, is being absorbed into the ways of Western technical analysis.

More information

Methods to Trade Forex Successfully for Quick Profits

Methods to Trade Forex Successfully for Quick Profits Methods to Trade Forex Successfully for Quick Profits This article is devoted to the techniques that are used to trade Forex on an intraday basis for quick profits. The aim is to make the trading a successful

More information

THE CYCLE TRADING PATTERN MANUAL

THE CYCLE TRADING PATTERN MANUAL TIMING IS EVERYTHING And the use of time cycles can greatly improve the accuracy and success of your trading and/or system. THE CYCLE TRADING PATTERN MANUAL By Walter Bressert There is no magic oscillator

More information

The 15 50 Trading System

The 15 50 Trading System Main Premise: This is considered to be one of the most straight forward systems for a live trading style for day- and/or intraday trading. The 50 SMA is one of the most commonly used moving average numbers

More information

Average True Range Trailing Stops

Average True Range Trailing Stops In this second of a three-part series we will compare trailing-stop methods using an average true range (ATR) trailing stop. he average true range T (ATR) was developed by J. Welles Wilder and introduced

More information

Disclaimer: The authors of the articles in this guide are simply offering their interpretation of the concepts. Information, charts or examples

Disclaimer: The authors of the articles in this guide are simply offering their interpretation of the concepts. Information, charts or examples Disclaimer: The authors of the articles in this guide are simply offering their interpretation of the concepts. Information, charts or examples contained in this lesson are for illustration and educational

More information

Understanding the market

Understanding the market Understanding the market Technical Analysis Approach: part I Xiaoguang Wang President, Purdue Quantitative Finance Club PhD Candidate, Department of Statistics Purdue University wang913@purdue.edu Outline

More information

www.tradingeducators.com

www.tradingeducators.com The following is provided by www.tradingeducators.com Trading Educators, Inc. 1814 Carriage Club Dr Cedar Park, TX 78613 USA Phone: 800-476-7796 or 512-249-6930 Fax: 512-249-6931 Email: support@tradingeducators.com

More information

The Magic Momentum Method of Trading the Forex Market

The Magic Momentum Method of Trading the Forex Market The Magic Momentum Method of Trading the Forex Market WELCOME! Welcome to one of the easiest methods of trading the Forex market which you can use to trade most currencies, most time frames and which can

More information

Advanced Trading Systems Collection FOREX TREND BREAK OUT SYSTEM

Advanced Trading Systems Collection FOREX TREND BREAK OUT SYSTEM FOREX TREND BREAK OUT SYSTEM 1 If you are a part time trader, this is one system that is for you. Imagine being able to take 20 minutes each day to trade. A little time at night to plan your trades and

More information

Charting Glossary Version 1 September 2008

Charting Glossary Version 1 September 2008 Charting Glossary Version 1 September 2008 i Contents 1 Price...1 2 Charts...1 2.1 Line, Step, Scatter, Mountain charts... 1 2.2 Bar Charts (Open/High/Low/Close charts)... 1 2.3 Candle charts... 2 2.4

More information

Timing the Trade How to Buy Right before a Huge Price Advance

Timing the Trade How to Buy Right before a Huge Price Advance Timing the Trade How to Buy Right before a Huge Price Advance By now you should have read my first two ebooks and learned about the life cycle of a market, stock, or ETF, and discovered the best indicators

More information

Elliott-Wave Fibonacci Spread Trading

Elliott-Wave Fibonacci Spread Trading Elliott-Wave Fibonacci Spread Trading Presented by Ryan Sanden The inevitable disclaimer: Nothing presented constitutes a recommendation to buy or sell any security. While the methods described are believed

More information

Ed Heath s Guerilla Swing Trading Plan (as of 1/22/13)

Ed Heath s Guerilla Swing Trading Plan (as of 1/22/13) Ed Heath s Guerilla Swing Trading Plan (as of 1/22/13) Synopsis: I call my trading style Guerilla Swing Trading. I trade upward momentum stocks that have pulled back for a buying opportunity and my goal

More information

marketsurvival.net guide: The advanced guide to fibonacci trading How to trade stocks and Forex with Fibonacci numbers

marketsurvival.net guide: The advanced guide to fibonacci trading How to trade stocks and Forex with Fibonacci numbers marketsurvival.net guide: The advanced guide to fibonacci trading How to trade stocks and Forex with Fibonacci numbers Contents FOREWORD... 5 PART 1. INTRODUCTION...7 WHY IS USING THE FIBONACCI TOOLS BETTER

More information

A Practical Guide to Technical Indicators; (Part 1) Moving Averages

A Practical Guide to Technical Indicators; (Part 1) Moving Averages A Practical Guide to Technical Indicators; (Part 1) Moving Averages By S.A Ghafari Over the past decades, attempts have been made by traders and researchers aiming to find a reliable method to predict

More information

Class 2: Buying Stock & Intro to Charting. Buying Stock

Class 2: Buying Stock & Intro to Charting. Buying Stock Class 2: Buying Stock & Intro to Charting Today s Class Buying Stock Intro to Charting Real World Analysis Buying Stock What Is a Stock? Share of ownership in a company Publicly traded Holds monetary value

More information

CYCLE TIMING CAN IMPROVE YOUR TIMING PERFORMANCE by Walter Bressert, CTA

CYCLE TIMING CAN IMPROVE YOUR TIMING PERFORMANCE by Walter Bressert, CTA CYCLE TIMING CAN IMPROVE YOUR TIMING PERFORMANCE by Walter Bressert, CTA The HOLY GRAIL OF TRADING is: Trade with the trend; if up, buy the dips; if down, sell the rallies. With cycles you can identify

More information

More informed trading Technical Analysis: Trading Using Multiple Time-frames

More informed trading Technical Analysis: Trading Using Multiple Time-frames Technical Analysis: Trading Using Multiple Time-frames Intermediate Level Introduction 1 Stock markets worldwide function because, at any given time, some traders want to buy whilst others want to sell.

More information

I Really Trade. Trading Patterns for Stocks & Commodities. Introducing The False Break Buy and Sell Pattern

I Really Trade. Trading Patterns for Stocks & Commodities. Introducing The False Break Buy and Sell Pattern 2008 Trading Patterns for Stocks & Commodities It doesn t matter if you are a longterm investor, short swing trader or day trader, you are always looking for an advantageous spot to enter your position.

More information

Trading with the High Performance Intraday Analysis Indicator Suite

Trading with the High Performance Intraday Analysis Indicator Suite Trading with the High Performance Intraday Analysis Indicator Suite PowerZone Trading indicators can provide detailed information about the conditions of the intraday market that may be used to spot unique

More information

Using Formations To Identify Profit Opportunities

Using Formations To Identify Profit Opportunities Using Formations To Identify Profit Opportunities Using Formations To Identify Profit Opportunities The concepts and strategies discussed may not be suitable for all investors. It is important that investors

More information

TRADING SECRET NO. 3 How to combine two simple tools to capture big trending moves, especially in currencies

TRADING SECRET NO. 3 How to combine two simple tools to capture big trending moves, especially in currencies TRADING SECRET NO. 3 How to combine two simple tools to capture big trending moves, especially in currencies 25 Currencies have a reputation for being markets that trend well. And, every business day over

More information

CHAPTER 8. REVERSAL TRADING STRATEGIES

CHAPTER 8. REVERSAL TRADING STRATEGIES CHAPTER 8. REVERSAL TRADING STRATEGIES Today you will Learn Reversal trading strategies are great or mid-day and afternoon trades, especially on days when momentum is a big slower. Why Is This Important?

More information

The Logic Of Pivot Trading

The Logic Of Pivot Trading Stocks & Commodities V. 6: (46-50): The Logic Of Pivot Trading by Jim White This methodology takes advantage of the short-term trends in the market and applies a pivot trading technique to earn superior

More information

Table of Contents. Preface. Chapter 1: TRADING BASICS. Chapter 2: BASIC TOOLS. Chapter 3: ADX. Chapter 4: ACCUMULATION LINE

Table of Contents. Preface. Chapter 1: TRADING BASICS. Chapter 2: BASIC TOOLS. Chapter 3: ADX. Chapter 4: ACCUMULATION LINE Table of Contents Preface Chapter 1: TRADING BASICS Chapter 2: BASIC TOOLS Chapter 3: ADX Chapter 4: ACCUMULATION LINE Chapter 5: AVERAGE TRUE RANGE Chapter 6: CANDLESTICKS Chapter 7: MACD Chapter 8: MOVING

More information

5min Forex Trade Strategy Imran Sait Version 1.2 updated on 16 th Nov 2007

5min Forex Trade Strategy Imran Sait Version 1.2 updated on 16 th Nov 2007 5min Forex Trade Strategy Imran Sait Version 1.2 updated on 16 th Nov 2007 ( Works on All Time Frames and for all Pairs - Best used on 5Min/15min/ for short term Trades and 30min/1Hr/4hr/daily for Long

More information

Picking a Trading Timeframe Before You Make a Trade Identifying the Trend Randomness of Financial Markets The Thought Demons of Traders

Picking a Trading Timeframe Before You Make a Trade Identifying the Trend Randomness of Financial Markets The Thought Demons of Traders ASIA PACIFIC S PREEMINENT TRADING MAGAZINE VOLUME 2 ISSUE 1 www.traders-journal.com SG$8.80 / A$13.80 / HK$68 / RM$19.80 Picking a Trading Timeframe Before You Make a Trade Identifying the Trend Randomness

More information

Retracements With TMV

Retracements With TMV A Series Of Indicators Used As One Trade Breakouts And Retracements With TMV Making good trading decisions involves finding indicators that cut through the market noise. But how do you do it without collapsing

More information

SYNERGY Trading Method. CompassFX, 2009 www.compassfx.com Rev. 81009

SYNERGY Trading Method. CompassFX, 2009 www.compassfx.com Rev. 81009 SYNERGY Trading Method SYNERGY Method INSTALLATION Basic Synergy is designed to automatically download onto the C: drive of your computer. If your local drive is not the C: drive, please send an email

More information

What we will cover. Types of orders How to place an order Instruc8ons from the DPR So>ware and what they mean

What we will cover. Types of orders How to place an order Instruc8ons from the DPR So>ware and what they mean What we will cover Types of orders How to place an order Instruc8ons from the DPR So>ware and what they mean What is a STOP Order? This type of order is what we use at How Do I Trade Stock.com regularly

More information

What You Don t Know About Candlesticks

What You Don t Know About Candlesticks Researching candlesticks yields some surprises. In When Candles Work Best What You Don t Know About Candlesticks by Thomas N. Bulkowski writing my latest book, Encyclopedia Of Candlestick Charts, I made

More information

Trend Determination - a Quick, Accurate, & Effective Methodology

Trend Determination - a Quick, Accurate, & Effective Methodology Trend Determination - a Quick, Accurate, & Effective Methodology By; John Hayden Over the years, friends who are traders have often asked me how I can quickly determine a trend when looking at a chart.

More information

The Moving Average. 2004 W. R. Booker II. All rights reserved forever and ever. And ever.

The Moving Average. 2004 W. R. Booker II. All rights reserved forever and ever. And ever. The Moving Average By Rob Booker 2004 W. R. Booker II. All rights reserved forever and ever. And ever. The information contained in this ebook is designed to teach you methods of watching forex quotes

More information

High Probability Trading Triggers for Gold & Silver

High Probability Trading Triggers for Gold & Silver Welcome to a CBOT Online Seminar High Probability Trading Triggers for Gold & Silver Presented by: John Person Sponsored by Interactive Brokers Live Presentation Starts at 3:30 PM Chicago Time NOTE: Futures

More information

Pivot Point Trading. If you would rather work the pivot points out by yourself, the formula I use is below:

Pivot Point Trading. If you would rather work the pivot points out by yourself, the formula I use is below: Pivot Point Trading You are going to love this lesson. Using pivot points as a trading strategy has been around for a long time and was originally used by floor traders. This was a nice simple way for

More information

Take it E.A.S.Y.! Dean Malone 4X Los Angeles Group - HotComm January 2007

Take it E.A.S.Y.! Dean Malone 4X Los Angeles Group - HotComm January 2007 Take it E.A.S.Y.! Dean Malone 4X Los Angeles Group - HotComm January 2007 Dean Malone Partner of Compass Foreign Exchange, LLC. Co-Founder of Forex Signal Service.com. Previous Senior National for 4X Made

More information

Aggressive Day Trading Strategy for Forex

Aggressive Day Trading Strategy for Forex Aggressive Day Trading Strategy for Forex By Markus Heitkoetter Please note: THE RISK OF LOSS IN TRADING COMMODITIES CAN BE SUBSTANTIAL. YOU SHOULD THEREFORE CAREFULLY CONSIDER WHETHER SUCH TRADING IS

More information

Professional Trader Series: Moving Average Formula & Strategy Guide. by John Person

Professional Trader Series: Moving Average Formula & Strategy Guide. by John Person Professional Trader Series: Moving Average Formula & Strategy Guide by John Person MOVING AVERAGE FORMULAS & STRATEGY GUIDE In an online seminar conducted for the Chicago Board of Trade, I shared how to

More information

atching Currency Moves with The Schaff Trend Cycle Indicator

atching Currency Moves with The Schaff Trend Cycle Indicator JULY/AUGUST 2002. VOLUME 4 CRunning a trend indicator through a cycle oscillator creates an effective entry technique into today s strongly trending currency markets, says Doug Schaff, a 20-year veteran

More information

The Best-Kept Secret of Forex

The Best-Kept Secret of Forex The Best-Kept Secret of Forex Many traders go through trading system after trading system, only to find that most of them don t work. The truth of the matter is that there are many effective trading systems

More information

Technical analysis. Course 11

Technical analysis. Course 11 Course 11 Technical analysis Topic 1: Introduction to technical analysis... 3 Topic 2: Chart types... 4 Line charts... 4 Bar chart... 4 Candle stick charts... 5 Topic 3: Trend analysis... 6 Defining an

More information

8 Day Intensive Course Lesson 3

8 Day Intensive Course Lesson 3 8 Day Intensive Course Lesson 3 A) What are Fibonacci Retracements? Fibonacci Retracements What are Fibonacci retracements? Levels at which the market is expected to retrace to after a strong trend. Based

More information

2:... 12 14 NYSE 2 15 NYSE

2:... 12 14 NYSE 2 15 NYSE 1 Contents Introduction:... 4 Philosophy:... 5 Trading strategies an overview:... 6 Introduction to direct access trading:... 8 The US stock markets:... 9 Bids and offers:... 10 NASDAQ and level 2:...

More information

Using Bollinger Bands. by John Bollinger

Using Bollinger Bands. by John Bollinger Article Text Copyright (c) Technical Analysis Inc. 1 Stocks & Commodities V. 10:2 (47-51): Using Bollinger Bands by John Bollinger Using Bollinger Bands by John Bollinger Trading bands, which are lines

More information

USING CANDLESTICK CHARTS TO TRADE FOREX

USING CANDLESTICK CHARTS TO TRADE FOREX CONTENTS Disclaimer Introduction Candlestick Chart Origins Candlestick Chart Definition Single Candlestick Patterns Multiple Candlestick Chart Patterns Two Candlestick Pattern Formations Three Candlestick

More information

Reading Price Charts Bar by Bar

Reading Price Charts Bar by Bar Reading Price Charts Bar by Bar The Technical Analysis of Price Action forthe Serious Trader AL BROOKS WILEY John Wiley & Sons, Inc. Contents Preface xlii CHAPTER 1 Price Action 1 Trend Bars and Doji Bars

More information

MATHEMATICAL TRADING INDICATORS

MATHEMATICAL TRADING INDICATORS MATHEMATICAL TRADING INDICATORS The mathematical trading methods provide an objective view of price activity. It helps you to build up a view on price direction and timing, reduce fear and avoid overtrading.

More information

Trading with the Intraday Multi-View Indicator Suite

Trading with the Intraday Multi-View Indicator Suite Trading with the Intraday Multi-View Indicator Suite PowerZone Trading, LLC indicators can provide detailed information about the conditions of the intraday market that may be used to spot unique trading

More information

Action Forex Company Limited 2010

Action Forex Company Limited 2010 1 2 Sponsored by 3 TABLE OF CONTENTS TABLE OF CONTENTS... 4 INTRODUCTION... 5 CHAPTER 1 CHART ANALYSIS IN CURRENCY TRADING... 6 1.1 - IMPORTANCE OF CHART ANALYSIS IN CURRENCY TRADING... 6 1.2 - BASIC CHART

More information

ANTS SuperGuppy. ANTS for esignal Installation Guide. A Guppy Collaboration For Success PAGE 1

ANTS SuperGuppy. ANTS for esignal Installation Guide. A Guppy Collaboration For Success PAGE 1 ANTS SuperGuppy A Guppy Collaboration For Success ANTS for esignal Installation Guide PAGE 1 IMPORTANT INFORMATION Copyright Under copyright legislation, this publication may not be reproduced or transmitted

More information

Every trader has had the experience of selling a stock or commodity too soon during a rapid price

Every trader has had the experience of selling a stock or commodity too soon during a rapid price Article Text Copyright (c) Technical Analysis Inc. 1 Stocks & Commodities V. 9:10 (403-408): Trading The Regression Channel by Gilbert Raff Trading The Regression Channel by Gilbert Raff Every trader has

More information

RISK DISCLOSURE STATEMENT / DISCLAIMER AGREEMENT

RISK DISCLOSURE STATEMENT / DISCLAIMER AGREEMENT RISK DISCLOSURE STATEMENT / DISCLAIMER AGREEMENT Trading any financial market involves risk. This report and all and any of its contents are neither a solicitation nor an offer to Buy/Sell any financial

More information

Chapter 23 THE CAMELBACK TECHNIQUE

Chapter 23 THE CAMELBACK TECHNIQUE Chapter 23 THE CAMELBACK TECHNIQUE At times, prices can be pretty wild. Sometimes we see large choppy Trading Ranges, abbreviated trends that fail to continue for more than a short duration. Lots of explosions

More information

An Objective Leading Indicator Fibonacci Retracements

An Objective Leading Indicator Fibonacci Retracements An Objective Leading Indicator Fibonacci Retracements This article explains how to use Fibonacci as a leading indicator, combining it with other technical analysis tools to provide precise, objective entry

More information

Better Trading with the Guppy Multiple Moving Average

Better Trading with the Guppy Multiple Moving Average Better Trading with the Guppy Multiple Moving Average Daryl Guppy www.guppytraders.com Author of Share Trading, Market Trading Tactics,Chart Trading, Better Stock Trading, Snapshot Trading, Trend Trading

More information

How I Trade Profitably Every Single Month without Fail

How I Trade Profitably Every Single Month without Fail How I Trade Profitably Every Single Month without Fail First of all, let me take some time to introduce myself to you. I am Kelvin and I am a full time currency trader. I have a passion for trading and

More information

TRADING WITH THE GUPPY MULTIPLE MOVING AVERAGE

TRADING WITH THE GUPPY MULTIPLE MOVING AVERAGE TRADING WITH THE GUPPY MULTIPLE MOVING AVERAGE By Daryl Guppy 2003 Director www.guppytraders.com Author Market Trading Tactics, Better Stock Trading This Guppy Multiple Moving Average (GMMA) indicator

More information

The 5 Exit Heroes. Exiting Your Forex Trades For Maximum Profits

The 5 Exit Heroes. Exiting Your Forex Trades For Maximum Profits The 5 Exit Heroes Exiting Your Forex Trades For Maximum Profits IMPORTANT : As an added bonus for downloading this report, you also received additional free training videos. To access your bonuses, go

More information

TRADING GAPS TAIL STRATEGY SPECIAL REPORT #37

TRADING GAPS TAIL STRATEGY SPECIAL REPORT #37 TRADING GAPS TAIL STRATEGY SPECIAL REPORT #37 Welcome to Market Geeks special report. Today I m going to teach you a little bit about gaps, how to identify different gaps and most importantly how to put

More information

FOREIGN EXCHANGE CYCLES:

FOREIGN EXCHANGE CYCLES: January 1999 FOREIGN EXCHANGE CYCLES: Get Ready to Sell the Upcoming Cycle Top in the Dollar versus the Deutschemark Trade Sell the Dollar-Mark on a break below last week's low of 1.6625 and look for 5

More information

Chapter 2.3. Technical Analysis: Technical Indicators

Chapter 2.3. Technical Analysis: Technical Indicators Chapter 2.3 Technical Analysis: Technical Indicators 0 TECHNICAL ANALYSIS: TECHNICAL INDICATORS Charts always have a story to tell. However, from time to time those charts may be speaking a language you

More information

RSI PRO Forex Trading System

RSI PRO Forex Trading System RSI PRO Forex Trading System Trading Examples Vol. 1 Paul Dean 2010 [Type text] Page 1 WWW. Y O U L E A R N F O R E X. C O M RSI PRO FOREX TRADING SYSTEM Trading Examples The purpose this book is simply

More information

Pivot Trading the FOREX Markets

Pivot Trading the FOREX Markets Pivot Trading the FOREX Markets A report by Jim White April, 2004 Pivot Research & Trading Co. 3203 Provence Place Thousand Oaks, Ca. 91362 Phone: 805-493-4221 FAX: 805-493-4349 Email: Jwhite43@adelphia.net

More information

Channel Lines. Charts of futures price

Channel Lines. Charts of futures price File A2-20 April 2005 www.extension.iastate.edu/agdm Charting Commodity Futures Channel Lines. Charts of futures price movements can guide agricultural producers in timing farm marketings and can be of

More information

Simple & Consistent Fibonacci Method Prepared by: Simone Guy. {Free learning resource: NOT FOR RESALE}

Simple & Consistent Fibonacci Method Prepared by: Simone Guy. {Free learning resource: NOT FOR RESALE} Simple & Consistent Fibonacci Method Prepared by: Simone Guy {Free learning resource: NOT FOR RESALE} 3/13/2010 Overview This is a mechanical trading method that is based on Support and Resistance. The

More information

Candlesticks. Bar Charts CANDLESTICK CORNER. When you look at your charts, do you understand everything they re telling you? by Rudy Teseo BEARISH

Candlesticks. Bar Charts CANDLESTICK CORNER. When you look at your charts, do you understand everything they re telling you? by Rudy Teseo BEARISH Stocks & ommodities V. 20:2 (65-69): andlesticks Vs. ar harts by Rudy Teseo NLESTIK ORNER VS andlesticks ar harts When you look at your charts, do you understand everything they re telling you? by Rudy

More information

Exit Strategies for Stocks and Futures

Exit Strategies for Stocks and Futures Exit Strategies for Stocks and Futures Presented by Charles LeBeau E-mail clebeau2@cox.net or visit the LeBeau web site at www.traderclub.com Disclaimer Each speaker at the TradeStationWorld Conference

More information

Advanced Trading Systems Collection 5 MINUTE SCALPING SYSTEM

Advanced Trading Systems Collection 5 MINUTE SCALPING SYSTEM 5 MINUTE SCALPING SYSTEM 1 This is a fairly simple method to squeeze money out of the market with short terms trades. With this one we trade the five minute charts, and we rarely hold a trade for longer

More information

By Josh Taylor FIND US ON: Visit our web site for TONS of training articles and videos

By Josh Taylor FIND US ON: Visit our web site for TONS of training articles and videos By Josh Taylor FIND US ON: Visit our web site for TONS of training articles and videos This information is meant to be a guide to help you learning how to be a better Forex trader. In this guide there

More information

Jesse Livermore Pages: Once the library is imported in to Trade Navigator, the user will have access to the following Jesse Livermore Pages:

Jesse Livermore Pages: Once the library is imported in to Trade Navigator, the user will have access to the following Jesse Livermore Pages: Introduction: This library is designed around Jesse Livermore s methods for trading in the stock and commodities market. The user is encouraged to read Jesse Livermore s book How to Trade in Stocks for

More information

Using ADX to Trade Breakouts, Pullbacks, and Reversal Patterns. By Puneet Jain CFTe

Using ADX to Trade Breakouts, Pullbacks, and Reversal Patterns. By Puneet Jain CFTe Using ADX to Trade Breakouts, Pullbacks, and Reversal Patterns By Puneet Jain CFTe (with DMI) ADX (Average Directional Index) is an indicator that measures trend strength shows trend direction. ADX tells

More information

Technical Analysis. Chart Formations. Brought to you by: FX-ebooks.com. Forex ebooks Library

Technical Analysis. Chart Formations. Brought to you by: FX-ebooks.com. Forex ebooks Library Technical Analysis Chart Formations Brought to you by: FX-ebooks.com Forex ebooks Library 1 Forex Mentor by Peter Bain The new Leading Professional Currency Trading System shows you how to trade currencies

More information

Exit Strategies & Stop Loss Techniques

Exit Strategies & Stop Loss Techniques Exit Strategies & Stop Loss Techniques Forex exit strategies are a very important part of Forex trading systems. In fact, it could be said, that out of all the components of a trading system, it is the

More information

FOREXOMETRY.COM. Presents. Forex Profit Hawk

FOREXOMETRY.COM. Presents. Forex Profit Hawk FOREXOMETRY.COM Presents Forex Profit Hawk Forexometry Published by Alaziac Trading CC Suite 509, Private Bag X503 Northway, 4065, KZN, ZA www.forexometry.com Copyright 2014 by Alaziac Trading CC, KZN,

More information

Chapter 1.4 Trends 0

Chapter 1.4 Trends 0 Chapter 1.4 Trends 0 TECHNICAL ANALYSIS: TRENDS, SUPPORT AND RESISTANCE Charts, charts, charts. When most people think about trading Forex, they think about watching price movements flash by them on the

More information

How to see the market context using CCI Written by Buzz

How to see the market context using CCI Written by Buzz How to see the market context using CCI Written by Buzz Towards the end of September 2003, I decided to stop trading the S&P e-mini for a while and focus on the Russell 2000 e-mini. The swings seemed to

More information

Stop Investing and Start Trading. How I Trade Technical Strategies Over Fundamental Strategies

Stop Investing and Start Trading. How I Trade Technical Strategies Over Fundamental Strategies Stop Investing and Start Trading How I Trade Technical Strategies Over Fundamental Strategies PREPARATION PRIOR TO OPENING MARKET 1. On Daily Log Sheet record NAV [Net Asset Value] of portfolio. 2. Note

More information

The Forex Bounce Trading Strategy

The Forex Bounce Trading Strategy The Forex Bounce Trading Strategy Niko Mermigas Copyright 2014 by Nikos Mermigas. All rights reserved. No part of this publication may be reproduced, distributed, or transmitted in any form or by any means,

More information

Definitions to Basic Technical Analysis Terms. www.recognia.com

Definitions to Basic Technical Analysis Terms. www.recognia.com Definitions to Basic Technical Analysis Terms www.recognia.com A Alert An alert is a notification sent when a significant event occurs in one or more investments of importance to a trader. Recognia sends

More information

Using Order Book Data

Using Order Book Data Q3 2007 Using Order Book Data Improve Automated Model Performance by Thom Hartle TradeFlow Charts and Studies - Patent Pending TM Reprinted from the July 2007 issue of Automated Trader Magazine www.automatedtrader.net

More information

New York Traders Expo 2012

New York Traders Expo 2012 New York Traders Expo 2012 with JAMES CHEN, CTA, CMT Director of Technical Research and Education All rights reserved, FXDD Inc. 2010 Today s Topic: High Probability Strategies for Trading Forex www.fxdd.com

More information