Strategy Trading. (In Four Parts) 2012 Sunny J. Harris ALL RIGHTS RESERVED

Size: px
Start display at page:

Download "Strategy Trading. (In Four Parts) 2012 Sunny J. Harris ALL RIGHTS RESERVED"

Transcription

1 Strategy Trading (In Four Parts) 2012 Sunny J. Harris ALL RIGHTS RESERVED

2 Introduction After 30+ years of trading, research, & teaching, Sunny Harris has developed many strategies both for herself and for clients. Primarily, Sunny trades for her own account. She does not trade OPM, or a Hedge Fund. Her own proprietary trading makes such high percentages she won t even reveal it, because it seems unbelievable. Sunny likes to teach other people to have great successes for their own accounts. That s what this seminar is about.

3 About Sunny Sunny J. Harris BA, MS, PhD Mathematics Trading since 1981 (30 years) #1 Rated trader by Stark Research 1993 & 1994 (365% & 178%) Research: Programming & Testing since 1981 Teaching others to trade since 1986

4 Books by Sunny Trading 101 How to Trade Like a Pro Trading 102 Getting Down to Business Electronic Day Trading 101 Getting Started in Trading TradeStation Made Easy! Working on Grading the Gurus and more after that

5 Critical Acclaim Technical Analysis of Stocks & Commodities magazine Top 10 Consultants Technical Analysis of Stocks & Commodities magazine Top 10 Courses & Seminars Top trader at 365% in under $10 mill Stark Research

6 Published Articles How Good is Your Data? (TASC Feb 2011) Futures, Omega Magazine, Traders World, Active Trader, Stocks & Commodities (magazines) From No System to a Proven System in Three Well-Defined Steps Clustering Effects of Good Optimization Day Trading Basics Trading Difficult Markets Learning to Trade: A Systematic Approach On the Job Training Sunny Answers Users Questions on Quote.com Nuggets of Profitability Testing, Testing, 1, 2, 3 Working for a Living Optimal Trading Asking the Right Questions for Trading Success and many more: see

7 Appearances Frequent guest of Richard Saxton on Channel 22 KWHY TV in Los Angeles Radio Interviews Online Chat Sessions for INO.com and Quote.com Online Investor Expo (a Money Show production) December 2000 Futures West International Online Trader Expo Online Investor Expo Equis Online Trading Summit January 2001 Get Off the Floor Chicago Mercantile Exchange July 1998 Market Technicians Association Symposium Chicago, November 1998 Electronic Trading Chicago Mercantile Exchange January 1999 Futures South February 1998 Futures West September 1998 TAG 19 November 1997 Omega Research Group of Dallas 1997 Omega Research Group of Orange County 1998 Omega Research Group of San Diego 1997 Omega World 1 Omega World 2 Online Investors Expo Barnes & Noble book signings Omega Research Users Groups AAII groups The Winner s Edge Orlando, FL, March 1996

8 Sabbatical From 2002 until 2011, Sunny took time off her hectic schedule to raise her grandsons, of whom she has custody. Now, by 2011 they are independent enough to allow Sunny time to trade and teach again TradeStation Made Easy! was released in early 2011 And I m back to Speed Trading on 1-& 5-minute charts.

9 Four Sessions What is a Strategy & How Do I Get One? Designing YOUR Strategy Testing & Optimizing Your Strategy How to Trade a Strategy

10 What is a Strategy and How Do I Get One?

11 What is a Strategy? Recipe Map Set of Rules IF...THEN... Consequences aka Boolean Algebra Plan A fixed set of rules that you follow

12 What is a Strategy? What if you don t follow all the rules? Then it is called discretionary trading or Cheating

13 What is a Strategy? If you don t follow the rules you can t really measure the success of your system How could you backtest a discretionary system? That s just using guessing or using intuition (aka into-wishing *) *term coined by Adrienne Toghraie

14 What is a Strategy? If you are using discretionary trading, you can t run experiments on it and generate results that you can compare to other strategies or other input parameters You can t independently compare a discretionary system to another system

15 What is a Strategy? If you feel you need to use discretion, two things could be possible you haven t stated all your rules your system isn t well-defined you don t want to know the truth of the testing outcomes

16 What is a Strategy? Before risking capital in the markets, know how your strategy could have performed in the past. Why do people NOT like to test? Tedious Time Consuming Don t Understand the Process Don t Think it is Important Don t Want to Know the Results

17 What is a Strategy? You need some tools for testing Pen & Paper Excel (Microsoft Office) Already built-in to TradeStation s EasyLanguage & MultiChart s PowerLanguage Called Reserved Words or Built-In Functions or Operators

18 Boolean Logic/Algebra George Boole, way back when, invented another way of doing arithmetic without numbers He used logic The terms are True and False And IF and THEN

19 Boolean Logic/Algebra To properly use Boolean Algebra you must know the functions of operators on the values of True and False These different outcomes are called Truth Tables They look like this:

20 Boolean Algebra: TRUE AND Premise 1 Premise 2 Outcome T T T T F F F T F F F F

21 Boolean Algebra: OR OR Premise 1 Premise 2 Outcome T T T T F T F T T F F F

22 IF THEN Sunny has red hair = True Sunny is 6 tall = True Sunny has green hair = False Sunny has red hair AND Sunny is 6 tall = True Sunny has green hair OR Sunny is 6 tall = True Sunny has green hair AND Sunny is 6 tall= False

23 IF THEN Consequence We specify it like this: IF something happens THEN do the consequence If the something happens is TRUE, we do the consequence But if the something happens is FALSE, we DON T do the consequence This is called Logic, or Boolean Algebra

24 Set of Rules Rules look like this: IF {it rains today} THEN {take my umbrella}; IF {it doesn t rain today} THEN {don t take my umbrella};

25 Set of Rules It is the IF THEN Consequence pairing that makes a Strategy/System You need rules to tell you: When to get in When to get out if you re right When to get out if you re wrong That s it.

26 What Is a Strategy? Let s get down to EasyLanguage / PowerLanguage Basics for a moment

27 IF...THEN... IF ( Condition(s) )

28 Conditions Conditions can be any thing that evaluates to True or False Examples: C > C[1] C > XAverage(C,10) H > Highest(H,10)[1] Angle less than certain value RSI > 70 etc

29 Consequences What to Do IF the Condition evaluates to TRUE: Examples: THEN Buy at H stop;

30 The Whole Statement IF Condition1 THEN Buy at H+0.1 Stop;

31 Condition0 99 TS and MC allow unnamed conditions in the range from 0 to 99. Thus you have 100 conditions you don t have to name in input or variable statements Condition0, Condition1, Condition2, etc all the way to Condition98, Condition99

32 IF THEN System Structure IF THEN logic BUY and SELL Setups Entries Exits

33 IF THEN When to Enter When to Get Out if You re Right When to Get Out if You re Wrong (Thanks to Joe Krutsinger who put it so succinctly)

34 IF THEN Enter on Conditions IF MovingAverageCrossover IF NewHigh IF HighVolume IF BreakOut etc Enter on Stops (not Limits) IF condition THEN BUY at Highest(H,3)[1]; IF condition THEN SELL at Lowest(L,3)[1];

35 IF THEN IF condition THEN Exit; Conditions Same as entry Different from entry Price hits pre-defined value ie ProfitTarget ie StopLoss Price hits moving average Price hits support or resistance Secondary indicator performance

36 IF THEN When to get out if you re wrong IF C < EntryPrice amount IF C < Average(L,10) IF C < Lowest(L,10)[1] etc

37 Why Do You Need One? Psychology Discipline Statistical Evaluation Promoting Yourself Your Business Plan Trading OPM

38 How Do You Get One? Buy It See FuturesTruth See Club3000 Bo Thunman Lease It Brokerage houses Create Your Own Years of Observation Years of Research Years of Programming & Testing Years of Simulated Trading Employ Consultant to Do It For You Tell them your rules Let them suggest rules Experiment

39 How Do You Get One? Discretionary Trading (no system) Purchasing Systems Sources Performance Comparisons Pit falls Building Your Own System Basic Structure of a Strategy IF THEN BUY/SELL Market vs Limits Using TradeStation s / MultiChart s Components Examples of Strategies Moving Averages Larry Williams Joe Krutsinger Sunny Harris

40 Discretionary Trading (no system) Hit and Miss Throwing Darts Feelings Intuition ( Into Wishing ) News & Events

41 Purchasing / Leasing Systems Sources Performance Comparisons Which Statistics Matter? Pit falls Don t know what s behind it Might not know long-term performance NIH Not Invented Here Expiration

42 Leasing a Strategy

43 Building Your Own System Basic Structure of a Strategy IF THEN Buy/Sell Market vs Limits Using TradeStation s or MultiChart s Strategy Components

44 Components

45 Examples of Strategies Moving Averages Larry Williams Joe Krutsinger Sunny Harris See the upcoming Grading the Gurus for more

46 Moving Averages Price above or below Moving Average Fast Moving Average crosses Slow Moving Average

47 Price Crosses Above or Below MAV

48 MAV Crosses Itself

49 Larry Williams OOPS SmashDays

50 Larry Williams OOPS INPUTS: jset(1) {which set of conditions}, jday1(3), jday2(4), {Not which days} jvlen(9), jlen(9); {Avg lengths} Condition1 = OpenD(1) < LowD(2); //Opening below the previous day's low (Buy setup) Indicates potential market reversal Condition2 = OpenD(1) > HighD(2); //Sell setup Condition3 = Dayofweek(Date)<>jDay1; //not day of week Condition4 = Dayofweek(Date)<>jDay2; //not day of week Condition5 = Volume > Average(Volume,jVLen); //Above average volume Value1 = Average(C,jLen); Condition6 = Value1 < Value1[1]; //Avg less than yesterday's Condition7 = Condition5 AND Condition6; //Above avg vol on decl momentum Condition8 = Value1 > Value1[1]; //Avg gt yesterday's Condition9 = Condition5 AND Condition8;//Above avg vol on incr momentum If jset = 1 THEN BEGIN //Conditions 1 ^ 3 ^ 4 Days of week If Condition1 and Condition3 and Condition4 THEN BUY next bar on open; If Condition2 and Condition3 and Condition4 THEN SELL SHORT next bar on open; END; If jset = 5 THEN BEGIN //Conditions 1 or 2 ^ 5 Volume but not Days of Week If Condition1 and Condition5 THEN BUY next bar on open; If Condition2 and Condition5 THEN SELL SHORT next bar on open; END; If jset = 3 THEN BEGIN //Days of Week ^ decr Avg on buy, incr Avg on sell If Condition1 and Condition3 and Condition4 and Condition6 THEN BUY next bar on open; If Condition2 and Condition3 and Condition4 and Condition8 THEN SELL SHORT next bar on open; END; If jset = 4 THEN BEGIN //Days of Week ^ Incr Vol ^ Decl Avg If Condition1 and Condition3 and Condition4 and Condition7 THEN BUY next bar on open; If Condition2 and Condition3 and Condition4 and Condition9 THEN SELL SHORT next bar on open; END; If jset = 2 THEN BEGIN //Conditions 1 ^ 3 ^ 4 ^ 5 Days of week and volume If Condition1 and Condition3 and Condition4 and Condition5 THEN BUY next bar on open; If Condition2 and Condition3 and Condition4 and Condition5 THEN SELL SHORT next bar on open; END;.

51 Larry Williams OOPS

52 Larry Williams Smash Days //Smash Days Type 1: INPUTS: j_side(0) {0=both, 1=long, -1=shorts}, j_day1(0), j_day2(0), j_day3(0), j_day4(0), j_day5(0); //1=Monday // j_days permit that day of the week as tradeable. If the number doesn't match, don't trade that day. // If j_day = 0 => this day is allowed. If j_side = 0 OR j_side = 1 THEN BEGIN //Permits longs Condition1 = ( j_day1 = Dayofweek(Date) ) OR j_day1=0 ; //Permit this day If Condition1 THEN BEGIN If C < Low[1] THEN Buy next bar at High stop; If Barssinceentry >=1 then sell next bar at high stop; End; END; If j_side = 0 OR j_side = -1 THEN BEGIN //Permits shorts Condition1 = ( j_day2 = Dayofweek(Date) ) OR j_day2=0 ; //Permit this day If Condition1 THEN BEGIN If C > High[1] THEN Sell Short next bar at Low stop; If Barssinceentry >=1 then Buy To Cover next bar at low stop; End; END;

53 Larry Williams Smash Days

54 Joe Krutsinger BuyMonday //Joe Krutsinger BuyMonday w Sunny Harris modifications to allow for testing other days of the week { Have this one run on 1-min data and check for the open at 6:30a. If it is Monday and the open of the Session, then buy next bar will buy at 631. } inputs:da(1), Amount(500) ; If DayOfWeek(Date)=Da THEN BEGIN Value1 = SessionStartTime(1,1)+1; //start time of regular session, first session If Time = Value1 THEN BEGIN Buy Next Bar at Market ; End; //End Time Check End; //End day of week check SetExitOnClose; SetStopLoss( Amount ) ;

55 Joe Krutsinger BuyMonday

56 Sunny Harris Sunny s Dynamic Moving Average SunnyBands

57 Session Two Session Two will contain: Evaluating Someone Else s Strategies Backtesting What is Possible? Buying & Selling The Strategy Performance Report and more

58 Discount for Attendees 30% 50% Discount for attendees of this webinar Good until February 29, 2012, only Or, later if you are viewing an old presentation. PS: a price increase will take effect on Jan 31, 2012

59 Please Return Please return to this same time and place next week, as we go into more depth in Session Two

60 Keep In Touch Sunny J. Harris 1547 Mission Meadows Dr., Oceanside, CA (760) Skype: (760) Fax: (760)

Speaking Later at 4:30pm TODAY

Speaking Later at 4:30pm TODAY Speaking Later at 4:30pm TODAY I Will Be In OCTAVIUS 12-14 at 3:30p Will Actually Show You How to Make a Million Dollars specifically in fact $2Million I use TradeStation, G Navigator, MetaStock Will tell

More information

Day Trade Warrior. Business Plan Trading as a Business

Day Trade Warrior. Business Plan Trading as a Business Day Trade Warrior Business Plan Trading as a Business I want to be a Professional Day Trader What do I need to do? Just like any other profession, if you are serious, you have to evaluate whether or not

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

THE TRADE-OR-FADE METHOD:

THE TRADE-OR-FADE METHOD: THE TRADE-OR-FADE METHOD: How to Trade Short-Term Using the Technical Analysis Spreadsheets and the Intra-day Support & Resistance by Scott Hoffman 1.800.800.3840 The Trade or Fade Advisory The Trade or

More information

Turk s ES ZigZag Day Trading Strategy

Turk s ES ZigZag Day Trading Strategy Turk s ES ZigZag Day Trading Strategy User Guide 11/15/2013 1 Turk's ES ZigZag Strategy User Manual Table of Contents Disclaimer 3 Strategy Overview.. 4 Strategy Detail.. 6 Data Symbol Setup 7 Strategy

More information

Traders World Expo VII

Traders World Expo VII Traders World Expo VII Finding and Exploiting Statistical Tendencies By Kevin J. Davey Today s Agenda Who Am I? How to Find Statistical Tendencies Tips Pitfalls FREE spreadsheet tool for evaluating systems

More information

My Techniques for making $150 a Day Trading Forex *Note for my more Advanced Strategies check out my site: Click Here

My Techniques for making $150 a Day Trading Forex *Note for my more Advanced Strategies check out my site: Click Here My Techniques for making $150 a Day Trading Forex *Note for my more Advanced Strategies check out my site: Click Here The Strategy We will be looking at 2 different ways to day trade the Forex Markets.

More information

Three-Bar Inside Bar Pattern

Three-Bar Inside Bar Pattern How It Works On Gold And Silver And Crude Three-Bar Inside Bar Pattern This trading strategy uses an inside bar as a three-bar pattern for long and short positions. Find out how it performed on gold, silver,

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

CURRENCY TRADING Using Swing Breakouts in Forex Trading

CURRENCY TRADING Using Swing Breakouts in Forex Trading CURRENCY TRADING Using Swing Breakouts in Forex Trading 28 MAY 2009 Doug Schaff discusses the use of intermediate swing highs and swing lows to develop a shortterm approach to trading the currency markets.

More information

New Scan Wizard Stock Market Software Finds Trend and Force Breakouts First; Charts, Finds News, Logs Track Record

New Scan Wizard Stock Market Software Finds Trend and Force Breakouts First; Charts, Finds News, Logs Track Record NEWS FOR IMMEDIATE RELEASE, Monday, October 2, 2000 Contact: John A. Sarkett, 847.446.2222, jas@option-wizard.com http://option-wizard.com/scanwizard/ New Scan Wizard Stock Market Software Finds Trend

More information

Chapter 2.3. Technical Indicators

Chapter 2.3. Technical Indicators 1 Chapter 2.3 Technical Indicators 0 TECHNICAL ANALYSIS: TECHNICAL INDICATORS Charts always have a story to tell. However, sometimes those charts may be speaking a language you do not understand and you

More information

Strategies for Trading Inverse Volatility

Strategies for Trading Inverse Volatility Strategies for Trading Inverse Volatility In this paper, I present five different strategies you can use to trade inverse volatility. Why trade inverse volatility you ask? Because since 2011, trading inverse

More information

Trading with ATR Price Projections.

Trading with ATR Price Projections. By Nitin Suvarna Trading with ATR Price Projections. J. Welles Wilder developed "Average True Range" (ATR) as a tool for a more precise calculation of price activity and volatility. True Range measure

More information

Thinking Man s Trader

Thinking Man s Trader Thinking Man s Trader Advanced Trader s Package Trading is a three dimensional world and the Advanced Trader s Package covers all three. Dimension three: Market Dynamics, conditions and change of conditions

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

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

Day Trade Warrior. Introduction to Trading

Day Trade Warrior. Introduction to Trading Day Trade Warrior Introduction to Trading Introduction to Trading I m a Pattern Trader! I trade Patterns I can lose 40% of the time and still make money because I use Risk Management Principals. Over 60%

More information

ADX breakout scanning ADX breakouts can signal momentum setups as well as exit conditions for intraday and swing traders. FIGURE 1: AFTER ADX > 40

ADX breakout scanning ADX breakouts can signal momentum setups as well as exit conditions for intraday and swing traders. FIGURE 1: AFTER ADX > 40 TRADING STRATEGIES ADX breakout scanning ADX breakouts can signal momentum setups as well as exit conditions for intraday and swing traders. BY KEN CALHOUN FIGURE 1: AFTER ADX > 40 Spotting volatility

More information

MAGIC BREAKOUT Forex Trading Strategy

MAGIC BREAKOUT Forex Trading Strategy Tim Trush & Julie Lavrin Introducing MAGIC BREAKOUT Forex Trading Strategy Your guide to financial freedom. Tim Trush, Julie Lavrin, T&J Profit Club, 2007 2015, All rights reserved www.magicbreakout.com

More information

How To Time Forex Trades Perfectly:

How To Time Forex Trades Perfectly: How To Time Forex Trades Perfectly: Increase Your Win Ratio & Profit Consistently CONTENTS Why You Should Be Listening To Me? 2 Billionaire Hedge Fund Manager s Greatest Secret Revealed 3 Individual Currency

More information

Intra-Day Trading Techniques. Pristine.com Presents. Greg Capra. book, Tools and Tactics for the Master Day Trader

Intra-Day Trading Techniques. Pristine.com Presents. Greg Capra. book, Tools and Tactics for the Master Day Trader Pristine.com Presents Intra-Day Trading Techniques With Greg Capra Co-Founder of Pristine.com, and Co-Author of the best selling book, Tools and Tactics for the Master Day Trader Copyright 2001, Pristine

More information

Santa Rally. Myth or Fact? ZaK MiR. why do you SpREadbEt? LESSonS FRoM HiStoRy. RESEaRCH in Motion update INTERVIEWS MR FTSE MARK AUSTIN

Santa Rally. Myth or Fact? ZaK MiR. why do you SpREadbEt? LESSonS FRoM HiStoRy. RESEaRCH in Motion update INTERVIEWS MR FTSE MARK AUSTIN S a xm n io it Ed the e-magazine created especially for active spreadbetters and CFd traders issue 11 - december 2012 Santa Rally Myth or Fact? ZaK MiR INTERVIEWS MR FTSE MARK AUSTIN why do you SpREadbEt?

More information

How Well Do Traditional Momentum Indicators Work? Cynthia A. Kase, CMT President, Kase and Company, Inc., CTA October 10, 2006

How Well Do Traditional Momentum Indicators Work? Cynthia A. Kase, CMT President, Kase and Company, Inc., CTA October 10, 2006 How Well Do Traditional Momentum Indicators Work? Cynthia A. Kase, CMT President, Kase and Company, Inc., CTA October 10, 2006 1.0 Introduction Most market technicians believe traditional momentum indicators,

More information

Trading Binary Options Strategies and Tactics

Trading Binary Options Strategies and Tactics Trading Binary Options Strategies and Tactics Binary options trading is not a gamble or a guessing game. By using both fundamental and technical market analysis, you are able to get a better understanding

More information

Using Historical Probabilities to Trade the Opening Gap

Using Historical Probabilities to Trade the Opening Gap Using Historical Probabilities to Trade the Opening Gap Scott Andrews Hosted by Hamzei Analytics November 10, 2010 Disclaimer This material is intended for educational purposes only and is believed to

More information

SFT Simple Strategy. Version by Radim Frycka www.sftmgm.com

SFT Simple Strategy. Version by Radim Frycka www.sftmgm.com SFT Simple Strategy Version by Radim Frycka www.sftmgm.com What is it based on? Old School Simple Technical Analysis based on EMA (Exponential Moving Average) with use of Stochastic oscilator and RSI(Relative

More information

A Powerful Day Trading Strategy For Futures And Forex Markets Markus Heitkoetter

A Powerful Day Trading Strategy For Futures And Forex Markets Markus Heitkoetter A Powerful Day Trading Strategy For Futures And Forex Markets Markus Heitkoetter Agenda How To Configure Your Charts The Three (3) Best Indicators The Best Timeframe A Powerful Day Trading Strategy When

More information

AbleTrend. Why Haven t Investors Been Told These Facts? Look inside to discover: Buyers. Call Free (888) 272-1688 www.ablesys.

AbleTrend. Why Haven t Investors Been Told These Facts? Look inside to discover: Buyers. Call Free (888) 272-1688 www.ablesys. Trading Software Buyers GuiDe Autumn 2013 $9 1997-2013 For Stocks Futures FOREX & Options Look inside to discover: Are you depending on the news and commentaries to make your investment decisions? Then

More information

How To Know When A Market Is In A Strong Trending Phase

How To Know When A Market Is In A Strong Trending Phase The 3 Rules of Successful Swing Trading Trade with the Wind at Your Back The Rule That Hits Home Runs & Be In the Right Place at the Right Time by Michele Mish Schneider, Director of Trading Research &

More information

Jeffrey@Highgrowthstockdoc.com

Jeffrey@Highgrowthstockdoc.com Jeffrey@Highgrowthstockdoc.com 3 Part Now That I Am Bored in Retirement Series Part 1 Basics designed for those new to HGSI or those wanting a refresher of our unique indicator set Part 2 Putting the Tools

More information

Day Trading Stock Controller

Day Trading Stock Controller Day Trading Stock Controller Disclaimer: Trading stocks, including ETFs, involves substantial risk of loss and is not suitable for all people. You should carefully consider whether trading, especially

More information

THIS IS THE TRADING METHOD FOR THE STEALTH FOREX TRADING SYSTEM V10

THIS IS THE TRADING METHOD FOR THE STEALTH FOREX TRADING SYSTEM V10 THIS IS THE TRADING METHOD FOR THE STEALTH FOREX TRADING SYSTEM V10 YOU SHOULD HAVE ALREADY READ AND APPLIED THE INFORMATION IN THE SET-UP DOCUMENT. IF YOU HAVE NOT ALREADY DONE SO - PLEASE COMPLETE SET

More information

TOMORROW'S TRADING TECHNOLOGY. 100% automated Fibonacci support and resistance levels that you can count on every single trading day in an instant.

TOMORROW'S TRADING TECHNOLOGY. 100% automated Fibonacci support and resistance levels that you can count on every single trading day in an instant. TOMORROW'S TRADING TECHNOLOGY 100% automated Fibonacci support and resistance levels that you can count on every single trading day in an instant. ProTrader Table of Contents 1. Areas A. Fibonacci Confluence

More information

A Day Trader Search for Profits Written By: John L. Person, CTA www.nationalfutures.com

A Day Trader Search for Profits Written By: John L. Person, CTA www.nationalfutures.com Buy low sell high, buy high and sell higher or sell low and buy lower. Whatever your method is, the results need to be profitable or a trader s career will be cut short. Most investors, whether that is

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

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

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

10 PIPS SYSTEM THE 3 RD CANDLE Distributed Exclusively by Tinypipfx.com

10 PIPS SYSTEM THE 3 RD CANDLE Distributed Exclusively by Tinypipfx.com 10 PIPS SYSTEM THE 3 RD CANDLE Distributed Exclusively by Tinypipfx.com Before you start trading the 3 rd candle system, I want you to think in term of someone who has never trade forex before. This strategy

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

A Basic Guide to RBI Support and Resistance Trading

A Basic Guide to RBI Support and Resistance Trading A Basic Guide to RBI Support and Resistance Trading All material contained in this document is protected by Copyright 2008 TradeStalker.com and Mike Reed. This document should not be reproduced or distributed,

More information

FOR. 14 Recommendations from a Top Futures Broker. Stuart A. Vosk. Center for Futures Education, Inc.

FOR. 14 Recommendations from a Top Futures Broker. Stuart A. Vosk. Center for Futures Education, Inc. BASIC TRAINING FOR FUTURES TRADERS: 14 Recommendations from a Top Futures Broker Stuart A. Vosk Center for Futures Education, Inc. P.O. Box 309 Grove City, PA 16127 Tel.: (724) 458-5860 FAX: (724) 458-5962

More information

Free Scalping Indicator

Free Scalping Indicator Free Scalping Indicator Risk and Liability: The author and the publisher of the information contained herein are not responsible for any actions that you undertake, including but not limited to, implementing

More information

THE SUPER COMBO DAY TRADING STRATEGY

THE SUPER COMBO DAY TRADING STRATEGY 134 Building Winning Trading Systems with TradeStation THE SUPER COMBO DAY TRADING STRATEGY So far we have concentrated on longer-term trend-following systems using daily bar analysis. We are now going

More information

Essentials of Foreign Exchange Trading. Essentials Series

Essentials of Foreign Exchange Trading. Essentials Series Brochure More information from http://www.researchandmarkets.com/reports/997190/ Essentials of Foreign Exchange Trading. Essentials Series Description: This currency trading book provides readers with

More information

4 Hour MACD Forex Strategy

4 Hour MACD Forex Strategy 4 Hour MACD Forex Strategy Welcome to the 4 Hour MACD Forex Strategy. This strategy is aimed at simplicity as well as high probability trades. I have been in the equity market for almost ten years now

More information

Chapter 2.4. Multiple Time Frames

Chapter 2.4. Multiple Time Frames Chapter 2.4 Multiple Time Frames 0 Contents TRADING USING MULTIPLE TIME FRAMES Traders of virtually every monetary size and temperament trade the Forex market. At any given time, short-term scalpers and

More information

The Definitive Guide to Swing Trading Stocks

The Definitive Guide to Swing Trading Stocks The Definitive Guide to Swing Trading Stocks 1 DISCLAIMER The information provided is not to be considered as a recommendation to buy certain stocks and is provided solely as an information resource to

More information

Advanced Trading Systems Collection MACD DIVERGENCE TRADING SYSTEM

Advanced Trading Systems Collection MACD DIVERGENCE TRADING SYSTEM MACD DIVERGENCE TRADING SYSTEM 1 This system will cover the MACD divergence. With this trading system you can trade any currency pair (I suggest EUR/USD and GBD/USD when you start), and you will always

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

FREE SCALPING INDICATOR

FREE SCALPING INDICATOR FREE SCALPING INDICATOR User s Manual DISCLAIMER Please be aware of the loss, risk, personal or otherwise consequences of the use and application of this book s content. The author and the publisher are

More information

6 Steps To Success With Your Web Agent Solutions Website

6 Steps To Success With Your Web Agent Solutions Website 6 Steps To Success With Your Web Agent Solutions Website By Jay Kinder and Michael Reese Introduction Congratulations on your decision to join the Web Agent Solutions family. It s an enormously effective

More information

Intra-Day Trading Techniques

Intra-Day Trading Techniques Pristine.com Presents Intra-Day Trading Techniques With Greg Capra Co-Founder of Pristine.com, and Co-Author of the best selling book, Tools and Tactics for the Master Day Trader Copyright 2001, Pristine

More information

FreeStockCharts.com Chart Set-up

FreeStockCharts.com Chart Set-up FreeStockCharts.com Chart Set-up Note: Thanks to Alan Profitt, a member of MHT, for providing the text for this paper. FSC offers PVT and MFI indicators along with a beautiful chart to help you in MHT.

More information

2009 Trading Advantage

2009 Trading Advantage To be used for trading the E-mini S&P 500 Legal Notices: While all attempts have been made to verify the information provided in this book, neither the author, Larry Levin, nor the Publisher assume any

More information

Swing Trade Warrior Chapter 4. Fundamentals & Technicals What You Need to Know! One is not more right than the other, but they both DO matter when swing trading, and can even matter when day trading (think

More information

Trading the Daniel Code Numbers

Trading the Daniel Code Numbers Trading the Daniel Code Numbers INTRODUCTION... 2 ABOUT THE DC NUMBERS... 2 BEFORE YOU START... 2 GETTING STARTED... 2 Set-Up Bars... 3 DC Number Sequences... 4 Reversal Signals... 4 DC TRADING METHODOLOGY...

More information

Review of VantagePoint 8.6 Release

Review of VantagePoint 8.6 Release Review of VantagePoint 8.6 Release by Sunny J. Harris I love to try out new software. Especially trading software. I like to open the box and start pushing all the buttons to see what happens. If the software

More information

The following section includes my own personal reviews of a few major software packages.

The following section includes my own personal reviews of a few major software packages. The following section includes my own personal reviews of a few major software packages. esignal (www.esignal.com) esignal is owned by Interactive Data Corporation, and it s been around in the trading

More information

Technical Indicators Tutorial - Forex Trading, Currency Forecast, FX Trading Signal, Forex Training Cour...

Technical Indicators Tutorial - Forex Trading, Currency Forecast, FX Trading Signal, Forex Training Cour... Page 1 Technical Indicators Tutorial Technical Analysis Articles Written by TradingEducation.com Technical Indicators Tutorial Price is the primary tool of technical analysis because it reflects every

More information

Trading Power Trends with ADX

Trading Power Trends with ADX Trading Power Trends with ADX By Dr. Charles B. Schaap, Jr. International Trader s Expo New York City 18 February 2014 Disclaimer The information in this lecture is for educational purposes. No particular

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

50 Trading Rules for Option Traders

50 Trading Rules for Option Traders 50 Trading Rules for Option Traders Trader Psychology Rules 1. If you fail to plan, plan to fail. You must have a plan for each trade. 2. NEVER trade with money you can t afford to lose. 3. There are no

More information

The power of money management

The power of money management The power of money management One trader lost ($3000) during the course of a year trading one contract of system A. Another trader makes $25,000 trading the same system that year. One trader makes $24,000

More information

Programming Manual. IW Graphic Tool Pro. for IW QuickTrade. User s Manual

Programming Manual. IW Graphic Tool Pro. for IW QuickTrade. User s Manual Programming Manual IW Graphic Tool Pro for IW QuickTrade User s Manual TABLE OF CONTENTS ProBacktest Introduction Chapter I: Introduction Accessing ProBacktest...2 ProBacktest setup window sections...2

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

Q&a: Why Trading Is Nothing Like Playing A Competitive Sport Markets...

Q&a: Why Trading Is Nothing Like Playing A Competitive Sport Markets... 1 of 5 24/02/2012 11:08 AM PRINT Q&A: Why Trading Is Nothing Like Playing a Competitive Sport CHARLES E. KIRK AUG 30, 2011 8:00 AM A sports psychologist and in-demand Wall Street trading coach explains

More information

DAY TRADING WITH THE INSTITUTIONS by Jay Wireman

DAY TRADING WITH THE INSTITUTIONS by Jay Wireman DAY TRADING WITH THE INSTITUTIONS by Jay Wireman Welcome everyone to my top day trading setups. Below you will find my powerful techniques using my proprietary symmetry software package that I have developed

More information

Chapter 1 Introduction Disclaimer: Forex Involves risk. So if you lose money you can't blame us we told you trading involves risk.

Chapter 1 Introduction Disclaimer: Forex Involves risk. So if you lose money you can't blame us we told you trading involves risk. By Casey Stubbs -Winners Edge Trading.com Table of Contents Chapter 1. Introduction Chapter 2.. Trading Plan Chapter 3.. Money Management Chapter 4. Moving Average Strategy Chapter 5. Stochastic Strategy

More information

The Amazing One-Night-Stand (ONS) Forex Trading powerful and easy... OneNightStand trading USD/CHF since 1992---

The Amazing One-Night-Stand (ONS) Forex Trading powerful and easy... OneNightStand trading USD/CHF since 1992--- The Amazing One-Night-Stand (ONS) Forex Trading powerful and easy... OneNightStand trading USD/CHF since 1992--- OneNightStand trading USD/JPY since 1998--- OneNightStand trading GBP/USD since 1991---

More information

$TICK - Tock - Testing the NYSE TICK Index

$TICK - Tock - Testing the NYSE TICK Index Issue 12 Tuesday November 16, 2010 $TICK - Tock - Testing the NYSE TICK Index By Erik Skyba, CMT Senior Market Technician, TradeStation Labs TSLabs@TradeStation.com Focus Technical Study Markets Equities

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

DAY TRADING WITH THE INSTITUTIONS by Jay Wireman

DAY TRADING WITH THE INSTITUTIONS by Jay Wireman DAY TRADING WITH THE INSTITUTIONS by Jay Wireman Welcome everyone to my top day trading setups. Below you will find my powerful techniques using my proprietary symmetry software package that I have developed

More information

Swing Trade Warrior Chapter 2. Introduction to swing trading strategies and classic swing trade patterns Options gap fill strategy We look for stocks that have made extreme moves up or down (gappers) We

More information

Spike Trading: Spot FX Vs Futures

Spike Trading: Spot FX Vs Futures You should be aware of all the risks associated with foreign exchange and futures trading. There is a substantial risk of loss in foreign exchange and futures trading. Past performance is not indicative

More information

Larry Williams Setup Tools

Larry Williams Setup Tools Larry Williams Setup Tools Here we have a basket of the tools I use in my trading These tools are the cornerstone of how I find what I call setup markets. I use these indicators on stocks and commodities.

More information

Before we start lets look at other forex trading robots for sale online and the reason most fail is a clue to why the one enclosed works.

Before we start lets look at other forex trading robots for sale online and the reason most fail is a clue to why the one enclosed works. A Forex Trading System for Bigger Long Term Profits Introduction Here we are going to look at a simple mechanical trading system which will make sure that you are on the right side of every big trend.

More information

I Day. article. In. you but. I just. Entry. Trend. I risk. 2.5% per. equity. a "runner" trading

I Day. article. In. you but. I just. Entry. Trend. I risk. 2.5% per. equity. a runner trading Emini Day Trading How I Day Trade for a Living I wish I had a simple answer for you but I don't. Trading is hard, very hard probably the hardest thing you' 'll ever try to do in your life and that's why

More information

The Best Option: Trading Equities at High Speed

The Best Option: Trading Equities at High Speed The Best Option: Trading Equities at High Speed Chuck Hughes, a former U.S. Air Force and Commercial Airline Pilot, used his downtime to learn how to trade stock indexes with systems. He liked system trading

More information

60 Minute Trader. Author: Chris Kobewka. Published By: Internet Unlimited LLC. 26C Trolley Square Wilmington DE, 19806 USA

60 Minute Trader. Author: Chris Kobewka. Published By: Internet Unlimited LLC. 26C Trolley Square Wilmington DE, 19806 USA 60 Minute Trader Author: Chris Kobewka Published By: Internet Unlimited LLC. 26C Trolley Square Wilmington DE, 19806 USA support@60minutetrader.com Tel: UK +44 (0) 870 321 9430 Fax: UK +44 (0) 870 321

More information

Chapter 2.4. Multiple Time Frames

Chapter 2.4. Multiple Time Frames Chapter 2.4 Multiple Time Frames 0 Contents TRADING USING MULTIPLE TIME FRAMES Traders of virtually every monetary size and temperament trade the Forex market. At any given time, short-term scalpers and

More information

My EA Builder 1.1 User Guide

My EA Builder 1.1 User Guide My EA Builder 1.1 User Guide COPYRIGHT 2014. MyEABuilder.com. MetaTrader is a trademark of MetaQuotes www.metaquotes.net. Table of Contents MAIN FEATURES... 3 PC REQUIREMENTS... 3 INSTALLATION... 4 METATRADER

More information

Forex Success Formula

Forex Success Formula Forex Success Formula WWW.ForexSuccessFormula.COM Complimentary Report!! Copyright Protected www.forexsuccessformula.com - 1 - Limits of liability/disclaimer of Warranty The author and publishers of this

More information

Chapter 8. Trading using multiple time-frames

Chapter 8. Trading using multiple time-frames Chapter 8 Trading using multiple time-frames TRADING USING MULTIPLE TIME- FRAMES Stock markets worldwide function because, at any given time, some traders want to buy whilst others want to sell. A trader

More information

The Trend-Checker has been designed to inform you at a glance how major currencies are behaving against one another.

The Trend-Checker has been designed to inform you at a glance how major currencies are behaving against one another. User's guide Please also open the user's interface (reference numbers) in order to fully understand this simple two parts guide, basics and the unique FDbar complement feature. Welcome to the Trend-Checker!

More information

HOW I TRIPLED MY ACCOUNT IN 4 MONTHS WITH FXJAKE.COM

HOW I TRIPLED MY ACCOUNT IN 4 MONTHS WITH FXJAKE.COM HOW I TRIPLED MY ACCOUNT IN 4 MONTHS WITH FXJAKE.COM By Nicola McLaughlin IMPORTANT While we make every effort to ensure that we accurately represent all the products and services reviewed on this website

More information

MOON-ES DAY TRADING SYSTEM USER GUIDE

MOON-ES DAY TRADING SYSTEM USER GUIDE MOON-ES DAY TRADING SYSTEM USER GUIDE Version 7.0 Revised 8 September 2014 METHOD Trend and Countertrend STYLE Day Trading DESCRIPTION Methodology - MOON is a customizable hedge-fund style day trading

More information

Asia Pacific s Pre-Eminent Trading Magazine

Asia Pacific s Pre-Eminent Trading Magazine Asia Pacific s Pre-Eminent Trading Magazine Interview: with Trader Brandon Wendell ALSO IN IN THIS ISSUE: Rent Seeking And The Flight Of Capital, Asia s Paradigm Shift, The Debt Supercycle and A Potential

More information

The foreign exchange, or forex, market has exploded onto the scene and is

The foreign exchange, or forex, market has exploded onto the scene and is In This Chapter Chapter 1 Currency Trading 101 Looking at currency trading as a business Getting a sense of what moves currencies Developing trading strategies to exploit opportunities Implementing the

More information

Trading the Gartley 222

Trading the Gartley 222 Trading the Gartley 222 By Aaron Behle and Mark Conway 2003, Reprinted with permission of Active Trader magazine (www.activetradermag.com) Sometimes old trading ideas are the best ideas if you can quantify

More information

A.R.T Core Portfolio Trading Plan June 2015

A.R.T Core Portfolio Trading Plan June 2015 A.R.T Core Portfolio Trading Plan June 2015 ABSOLUTE RETURN TRADING PTY LTD ACN 603 186 634 Trading ASX Equities Long/Short using CFDS CFDs are a very powerful and effective tool if used correctly. Using

More information

Welcome to the TradeGuider FX / Currency Futures Mentorship Course Sponsored by Infinity Futures (CME Group Educational Partner)

Welcome to the TradeGuider FX / Currency Futures Mentorship Course Sponsored by Infinity Futures (CME Group Educational Partner) Welcome to the TradeGuider FX / Currency Futures Mentorship Course Sponsored by Infinity Futures (CME Group Educational Partner) Class Starts at 3:00pm Chicago (CST) Your Presenters Tom Williams Retired

More information

ECLIPSE DAY TRADING SYSTEM USER GUIDE

ECLIPSE DAY TRADING SYSTEM USER GUIDE ECLIPSE DAY TRADING SYSTEM USER GUIDE Revised 25 November 2014 METHOD Trend and Countertrend STYLE Day Trading DESCRIPTION Methodology - ECLIPSE is a hedge-fund style day trading system for accredited

More information

100 pips daily scalper

100 pips daily scalper 100 pips daily scalper User s manual August 2011 www.100pipsdailyscalper.com DISCLAIMER Please be aware of the loss, risk, personal or otherwise consequences of the use and application of this book s content.

More information

Quick Guide To WinTick

Quick Guide To WinTick Quick Guide to WinTick Page 1 Quick Guide To WinTick AbleSys Corporation A. Trading WinTick Stock Hot Picks..2 1. Daily Hot Picks 2. Daily Pre-Break Out Stocks 3. Daily Break Out Stocks 4. Put Big Moving

More information

Technical Analysis. Technical Analysis. Schools of Thought. Discussion Points. Discussion Points. Schools of thought. Schools of thought

Technical Analysis. Technical Analysis. Schools of Thought. Discussion Points. Discussion Points. Schools of thought. Schools of thought The Academy of Financial Markets Schools of Thought Random Walk Theory Can t beat market Analysis adds nothing markets adjust quickly (efficient) & all info is already in the share price Price lies in

More information

SUPER TREND PROFIT. (Trend Indicator with alert popup and email alert) DISCLAIMER

SUPER TREND PROFIT. (Trend Indicator with alert popup and email alert) DISCLAIMER SUPER TREND PROFIT (Trend Indicator with alert popup and email alert) DISCLAIMER Please be aware of the loss, risk, personal or otherwise consequences of the use and application of this book s content.

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

A guide for end-users

A guide for end-users A guide for end-users www.recognia.com Copyright 2013 Recognia Using Technical Insight Event Lookup will allow you to quickly understand the outlook for a particular financial instrument from the perspective

More information