INTRADAY EMISSIONS TRADING. How to trade volatility breakouts profitably.

Size: px
Start display at page:

Download "INTRADAY EMISSIONS TRADING. How to trade volatility breakouts profitably."

Transcription

1 TIPS. 15 SKYSCRAPER. ICC Tower, Hong Kong. The todays tallest building in Hong Kong on the scale of 484 metres high. I NCLUDES VIDEO INTRADAY EMISSIONS TRADING. How to trade volatility breakouts profitably. INCLUDING WOR KSPACDE. FOR DOWNLOA

2 INTRADAY EMISSIONS TRADING. How to trade volatility breakouts profitably. When it comes to energy trading the emissions market is one of the most liquid. It shows great trends and quite radical intraday moves. This months trading tip will give you some ideas and a full trading strategy to make use of the intraday volatility in this market. DAY RANGE: A SIMPLE BUT POWERFUL INDICATOR. With the Day Range indicator you will see what a powerful and easily made indicator it is. Open a 15min intraday chart of emissions (CFI2Z5 on Reuters) and apply the Day Range indicator. This indicator does not need a lot of calculation; it just normalizes the daily intraday movement. Every day the indicator starts at 0, and then builds the bars exactly like a normal chart. If the market raises 10 points from the opening, the indicator will show a bar going from 0 to 10 points. That s not a lot of maths, but it enables you to compare the intraday moves day by day, without being confused with the general trend or long term support and resistance on the chart. Can this be enough to build a profitable trading strategy? Yes! Just have a look at a long history of the indicator and you will see where the money can be made.

3 Sometimes you see high spikes standing out of the usual indicator noise. These are the days when the herd galloped in one direction and did not stop until the end of the session. And this will be the right environment for our strategy to cash in. But first add two simple stop lines on the indicator. One at +0.2, the other at You will see that this seems to be some kind of magic level in the emissions market. Every time the indicator crossed above or below this level, you had the chance to make money until the end of the session. 1 DAY Figure 1: Day Range indicator with fixed range The Day Range indicator normalizes the intraday movements by starting at zero each trading day. In this way it allows a fast and precise comparison of individual trading days.

4 DEVIATION BAND ENABLES APPLICATION TO DIFFERENT MARKETS. Of course there are no magic numbers in the market, so better let your software calculate the breakout volatility level on its own. Therefore you could just drag and drop a long term Bollinger band onto the indicator, or you use the altered version of the Day Range indicator that is included with this trading tip. The enhanced indicator plots a two standard deviations band around the daily movements. This enables you to apply the indicator without adjustments to different markets, as emissions is not the only market with nice intraday breakouts. Figure 2: Enhanced Day Range indicator with volatility band With the use of standard deviation as a measure of normal daily fluctuations, the enhanced version of the Day Range indicator can be used in all markets.

5 CODING THE STRATEGY IN EQUILLA. Now we have got everything that is needed for the basic idea of the trading strategy. Go long when the indicator breaks above its upper band (or fixed level) and close the position at the end of the day. And it`s just the same on the short side; go short at the lower band, cash in at the end of the day. As an experienced trader you will notice that this cannot be the whole truth. Some kind of profit protection and stop loss will be needed. Therefore I added a simple profit trailing stop. The default setting is two standard deviations. And I coded a condition that only allows one trade per day. This is meant as a simple protection against a market environment with high volatility but no direction. This might trigger several losing trades on one day. The coding of the strategy is quite straight forward. First, all needed inputs and variables are defined: Inputs: Deviation(2.0),Period(500), TrailDeviation(2.0,1,10),TradeMode(Breakout, ReversalMode), FixedLevel(0.0); Variables:oo( Invalid ),colour, std, endtime, starttime, tt; In the next step all the things needed for the trading logic are calculated. When does the market open? When does it close? How many trades have occured? What is the standard deviation for the current bar?

6 See the green comments in the code and you will quickly understand how it is done. If you are not familiar with the syntax, right click on any blue word to get help. If you are still stuck, then drop me an colour=black; // colour of indicator bars If Date <> Date[1] Then begin // first bar of day oo = Open; //remember opening price starttime=time; // timestamp of first bar of day endtime=time[1]; // timestamp of last bar of yesterdays session tt=totaltrades; // number of trades in history end; The following code calculates the standard deviation, the colouring of the bars and plots the enhanced Day Range indicator. std=stdev((high+low+close)/3 - oo,period); // standard deviation of day range bars if FixedLevel>0 then std=fixedlevel; // if level is set overwrite standard deviation if high-oo>deviation*std then colour=darkgreen; // green above band if low-oo<-1*deviation*std then colour=red; // red below band drawline(0+deviation*std); // upper band drawline(0-deviation*std); // lower band Drawline( 0, "Zero Line" ); // zero line DrawBar( Open - oo, High - oo, Low - oo, Close - oo,colour,colour); // day range bars

7 Now the trading logic is programmed. The aim of this strategy is to enter long positions when the indicator breaks above the upper volatility band¹. The following prerequisites are also required: bb the current time is at least one hour after market open bb the market close is at least one hour away bb we are not in a position and have not traded today // if in core trading time (open+1h - 1 bar before end of session) if time>starttime+100 and time<endtime and marketposition=marketpositionflat and // and currently no position totaltrades=tt then begin // and no trade today then... if TradeMode=breakout then begin // breakout mode buy next bar at oo+deviation*std stop; // buy at upper band, short next bar at oo-deviation*std stop; //short at lower band end; end; if TradeMode=ReversalMode then begin // (*) reversal mode short next bar at oo+deviation*std limit; // short at upper band buy next bar at oo-deviation*std limit; // buy at lower band end; After the entry is done the exits automatically kick in. The first exit condition is simply the end of the day. The second exit is the trailing stop; it protects your profits and limits possible losses. if time=endtime then exitposition this bar on close; // exit trade at end of day // set profit trailing stop setstopcontract; setdollartrailing(lotsize*traildeviation*std); ¹ The inverse rules are applied for short entries.

8 FINDING ROBUST PARAMETERS BY USING THE OPTIMIZER. All inputs of this strategy can be changed after optimization. bb Deviation(2.0): Multiplier for the standard deviation TIP: Try to optimize it between 1.5 and 3 bb Period(500): Number of bars needed for the calculation of the standard deviation bb TrailDeviation Number of standard deviations used for the trailing stop (2.0, 1,10): TIP: It can be optimized between one and ten standard deviations ANALYSIS POWER. New workspaces for your Tradesignal workstation. DOWNLOAD. OPEN. TRADE.

9 If necessary, a further parameter called FixedLevel enables you to use absolute bands for the Day Range indicator instead of standard deviation. BY THE WAY: If you add the following commands to the strategy code, some additional points will show you the actual entry and exit levels. So you already know in advance the level at which you will be active. drawsymbol(getactiveorderprice(1)); drawsymbol(getactiveorderprice(2)); Figure 3: Trading Strategy Day Range Volatility Breakout The breakout on September 23rd generated a short entry, while a long trade was triggered on October 8th. As expected, the price move continued until the end of trading, so gains were recorded.

10 With these possibilities to optimize the strategy it should work well on all liquid energy markets that show nice and sharp intraday moves. On the optimization chart you see a heatmap representing the calculations for an optimization of the CFI2Z4 contract. I optimized the width of the volatility band and the width of the trailing stop. As you can see you get a consistent and stable green area. In general, everything above 2 standard deviations should give you a positive result. And that s exactly what we were expecting. The herd does not gallop every day, so we will also have to select a wider band to separate the galloping herd from the wandering. Figure 4: Optimization heatmap Areas above two standard deviations deliver positive results in the trading strategy.

11 INVERTING THE STRATEGY FROM BREAKOUT TO REVERSAL MODE. One last point. Sometimes markets just do not listen to what analysts write. Therefore I added a switch in the input section of the strategy that lets me switch the trading logic from breakout to reversal. In reversal mode the strategy does not buy when the indicator touches its upper band, it goes short. So if you are unable to find a stable setting for the breakout mode, just try the reversal mode. Let the market select by itself which strategy is the right one. I hope this months trading tip will give you some new ideas on how to use a systematic approach in trading emissions and volatility breakouts in general. Let the indicators inspire you, and test your ideas systematically. It might not give you a free lunch, but you can expect a great meal with little cost. DOWNLOAD WORKSPACE & STRATEGY CODE FOR TRADESIGNAL HERE: Try the new workspace which is provided here for both Thomson Reuters and Bloomberg data. More workspaces can be downloaded at THOMSON REUTERS BLOOMBERG That s it for today take care, take profit and auf Wiedersehen. Philipp Kahler Senior Quantitativ Analyst at Intalus

12 WATCH VIDEO TO SEE HOW TO TRADE VOLATILITY BREAKOUTS PROFITABLY IN TRADESIGNAL. MORE TR DING TIPS IN OUR VIDEO CHANNELS: Intalus www. Distribution allowed under a Creative Commons Attribution-Noncommercial license: Tradesignal is a registered trademark of Tradesignal GmbH. Unauthorized use or misuse is specifically prohibited. All other protected brands and trademarks mentioned in this document conform, without restriction, to the provisions of applicable trademark law and the copyrights of the respective registered owners.

13 ABOUT THE AUTHOR. Philipp Kahler. Philipp is the Senior Quant Analyst at Intalus. He was born in Austria and studied electrical engineering before joining a large German bank where he developed fully automated trading strategies for the proprietary trading department. His book about designing successful trading strategies has been among the top sellers in Germany for the last two years. Currently at Intalus, he is responsible for the in-house training of institutional traders and the development of custom-made algorithmic trading strategies. You may contact Philipp at philipp.kahler@

14 TR DING TIPS. 15 INTRADAY EMISSIONS TRADING. PROFIT FROM THESE TR DING TIPS & VIDEOS TOO. TRADING TIPS 04 TIPS SKYSCRAPER 02. Petronas Twin Towers, Kuala Lumpur. The todays tallest building in Malaysia on the scale of 452 metres high. TIPS. 04 HIGHLY EFFICIENT SHORTING. How to identify and profit well from a short trade. How to identify and profit well from a short trade. SKYSCRAPER 01. Menara Carigali, Kuala Lumpur. The todays third tallest building in Malaysia on the scale of 267 metres high. HIGHLY EFFICIENT SHORTING. ALGORITHMIC TRADING WITH RENKO CHARTS. PARTS 1 3: How to combine Renko charts and Bar charts to create a profitable trading strategy. TIPS. TRADING TIPS 05 RULE-BASED TRENDLINES. How to use point & figure trend lines in candlestick charts. How to profit from seasonal patterns. TIPS. HOW TO. 12 SKYSCRAPER. The Shard, London. The todays tallest building in the UK on the scale of 310 metres high. TRADING TIPS 06 PROFIT FROM GAP TRADING. TIPS. 07 SCAN FOR CANDLE PATTERNS. SCAN FOR CANDLE PATTERNS. How to find the best risk/ reward opportunities based on candlestick patterns. TRADING TIPS 07 How to find best performing stocks and the best risk/reward opportunities by identifying promising candlestick patterns. CONTROL AND MONITOR YOUR ASSETS BY RULE-BASED APPROACHES. How to create a portfolio in Tradesignal, apply trading strategies & monitor all positions. TIPS. 13 SKYSCRAPER. Guangzhou International Finance Centre, Guangzhou. The todays fourth tallest building in China on the scale of 438,6 metres high. A simple, but effective strategy. A simple, but effective strategy. WHAT IS THE MARKET OUTLOOK? INCLUDING WORKSPACE D. How to create your own dashboard in Tradesignal for a quick, precise overview. FOR DOWNLOA TIPS. INCLUDES VIDEO TRADING TIPS 08 INDICATORS ON INDICATORS. TRADING TIPS 12 CONTROL AND MONITOR YOUR ASSETS BY RULE-BASED APPROACHES. How to create a portfolio in Tradesignal, apply trading strategies & monitor all positions. TRADING TIPS 13 WHAT IS THE MARKET OUTLOOK? How to create your own dashboard in Tradesignal for a quick, precise overview. 14 SKYSCRAPER. Taipei 101, Taipei. The todays tallest building in Taiwan on the scale of 508 metres high. Simple steps to advanced analysis. SELL IN MAY AND GO AWAY? TIPS. 08 INDICATORS ON INDICATORS. TRADING TIPS 11 How to profit from seasonal patterns. SELL IN MAY AND GO AWAY? TIPS. 06 PROFIT FROM GAP TRADING. Parts 1 3: How to combine Renko charts and Bar charts to create a profitable trading strategy. 11 SKYSCRAPER. One World Trade Center, New York City. The todays tallest building in the US on the scale of 541,3 metres high. How to use point & figure trend lines in candlestick charts. ALGORITHMIC TRADING WITH RENKO CHARTS. TIPS. 05 RULE-BASED TRENDLINES IMPROVE DISCIPLINE. TRADING TIPS 10 PARTS 1 3 MAXIMIZE PROFITS USING THE KELLY FORMULA. MAXIMIZE PROFITS USING THE KELLY FORMULA. INCLUDING WORKSPACE D. FOR Simple steps to advanced analysis. TRADING TIPS 14 DOWNLOA How to optimize the position size of your investments systematically. How to optimize the position size of your investments systematically. TIPS. 09 TRADING TIPS 09 UNLEASH THE FORWARD CURVE. UNLEASH THE FORWARD CURVE. How to visualize forward curves to maximize information. MORE KNOW-HOW AND VIDEOS HERE How to visualize forward curves to maximize information.

15 CLEAR STRATEGIES NOT GUT REACTIONS. Act smart and always use objective and clear signals. Tradesignal. Überlegen handeln. Made in Germany. OOPS YOU AREN T ALREADY A TRADESIGNAL USER? VISIT AND START TESTING THE SOFTWARE RIGHT NOW. Tradesignal is a registered trademark of Tradesignal GmbH. Unauthorized use or misuse is specifically prohibited.

16 SH RE THIS! ANALYSING AND TRADING MARKETS SHOULD BE PLEASURABLE, NOT A CAUSE OF PAIN. That is why we have produced these Trading Tips. If you have enjoyed them please help us and share them with your friends. SHARE THIS TRADING TIP!

intalus.com TR DING Issue The todays tallest building in the UK on the scale of 310 metres high. SKYSCRAPER. The Shard, London.

intalus.com TR DING Issue The todays tallest building in the UK on the scale of 310 metres high. SKYSCRAPER. The Shard, London. TIPS. HOW TO. SKYSCRAPER. The Shard, London. The todays tallest building in the UK on the scale of 310 metres high. 12 CONTROL AND MONITOR YOUR ASSETS BY RULE-BASED APPROACHES. How to create a portfolio

More information

ALGORITHMIC TRADING TIPS.

ALGORITHMIC TRADING TIPS. tradesignal.com ALGORITHMIC TRADING ISSUE 19 MOUNTAIN RANGE. Yosemite National Park, USA. With an area of 3.081 square kilometres on of the largest national parks in the US. VISUAL SIGNALS ON YOUR CHART

More information

TR DING TIPS. SELL IN MAY AND GO AWAY? How to profit from seasonal patterns. Issue. intalus.com

TR DING TIPS. SELL IN MAY AND GO AWAY? How to profit from seasonal patterns. Issue. intalus.com SKYSCRAPER. One World Trade Center, New York City. The todays tallest building in the US on the scale of 541,3 metres high. TIPS. 11 SELL IN MAY AND GO AWAY? How to profit from seasonal patterns. SELL

More information

TR DING TIPS. MAXIMIZE PROFITS USING THE KELLY FORMULA. DOWNLOA. How to optimize the position size of your investments systematically.

TR DING TIPS. MAXIMIZE PROFITS USING THE KELLY FORMULA. DOWNLOA. How to optimize the position size of your investments systematically. intalus.com TR DING TIPS. Issue 14 SKYSCRAPER. Taipei 101, Taipei. The todays tallest building in Taiwan on the scale of 508 metres high. INCLUDES VIDEO MAXIMIZE PROFITS USING THE KELLY FORMULA. INCLUDING

More information

Binary Options Trading Strategies How to Become a Successful Trader?

Binary Options Trading Strategies How to Become a Successful Trader? Binary Options Trading Strategies or How to Become a Successful Trader? Brought to You by: 1. Successful Binary Options Trading Strategy Successful binary options traders approach the market with three

More information

I Always Come Back To This One Method

I Always Come Back To This One Method I Always Come Back To This One Method I can attribute my largest and most consistent gains to this very method of trading, It always work and never fails although I ve been known to still screw it up once

More information

Free signal generator for traders

Free signal generator for traders Free signal generator for traders Trader s Bulletin Pivot Point Trading Strategy 1. Just download the FREE tool 2. Key in a few numbers 3. And follow the simple techniques by Mark Rose To make money from

More information

Swing Trading Strategies that Work

Swing Trading Strategies that Work Swing Trading Strategies that Work Jesse Livermore, one of the greatest traders who ever lived once said that the big money is made in the big swings of the market. In this regard, Livermore successfully

More information

USER GUIDE

USER GUIDE USER GUIDE http://www.superprofitscalper.com 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

More information

Icoachtrader Consulting Service WELCOME TO. Trading Boot Camp. Day 5

Icoachtrader Consulting Service  WELCOME TO. Trading Boot Camp. Day 5 Icoachtrader Consulting Service www.icoachtrader.weebly.com WELCOME TO Trading Boot Camp Day 5 David Ha Ngo Trading Coach Phone: 1.650.899.1088 Email: icoachtrader@gmail.com The information presented is

More information

Intraday Trading Technique

Intraday Trading Technique Intraday Trading Technique 1. Download video lecture with live intraday trade proof from below link http://www.screencast.com/t/1qcoc0cmallf 2. Free intraday trading gann angle calculator http://www.smartfinancein.com/gann-anglecalculator.php

More information

A Different Take on Money Management

A Different Take on Money Management A Different Take on Money Management www.simple4xsystem.net Anyone who read one of my books or spent time in one of my trade rooms knows I put a lot of emphasis on using sound Money Management principles

More information

BUY SELL PRO. Improve Profitability & Reduce Risk with BUY SELL Pro. Ultimate BUY SELL Indicator for All Time Frames

BUY SELL PRO. Improve Profitability & Reduce Risk with BUY SELL Pro. Ultimate BUY SELL Indicator for All Time Frames BUY SELL PRO Improve Profitability & Reduce Risk with BUY SELL Pro Ultimate BUY SELL Indicator for All Time Frames Risk Disclosure DISCLAIMER: Crypto, futures, stocks and options trading involves substantial

More information

MT4 Awesomizer V3. Basics you should know:

MT4 Awesomizer V3. Basics you should know: MT4 Awesomizer V3 Basics you should know: The big idea. Awesomizer was built for scalping on MT4. Features like sending the SL and TP with the trade, trailing stops, sensitive SL lines on the chart that

More information

An informative reference for John Carter's commonly used trading indicators.

An informative reference for John Carter's commonly used trading indicators. An informative reference for John Carter's commonly used trading indicators. At Simpler Options Stocks you will see a handful of proprietary indicators on John Carter s charts. This purpose of this guide

More information

This is the complete: Fibonacci Golden Zone Strategy Guide

This is the complete: Fibonacci Golden Zone Strategy Guide This is the complete: Fibonacci Golden Zone Strategy Guide In this strategy report, we are going to share with you a simple Fibonacci Trading Strategy that uses the golden ratio which is a special mathematical

More information

FOREX GEMINI CODE. Presents. Dynamic Triple Edge

FOREX GEMINI CODE. Presents. Dynamic Triple Edge FOREX GEMINI CODE Presents Forex Gemini Code Published by Alaziac Trading CC Suite 509, Private Bag X503 Northway, 4065, KZN, ZA www.forexgeminicode.com Copyright 2014 by Alaziac Trading CC, KZN, ZA Reproduction

More information

Copyright by Profits Run, Inc. Published by: Profits Run, Inc Beck Rd Unit F1. Wixom, MI

Copyright by Profits Run, Inc. Published by: Profits Run, Inc Beck Rd Unit F1. Wixom, MI DISCLAIMER: Stock, forex, futures, and options trading is not appropriate for everyone. There is a substantial risk of loss associated with trading these markets. Losses can and will occur. No system or

More information

2.0. Learning to Profit from Futures Trading with an Unfair Advantage! Income Generating Strategies Essential Trading Tips & Market Insights

2.0. Learning to Profit from Futures Trading with an Unfair Advantage! Income Generating Strategies Essential Trading Tips & Market Insights 2.0 Learning to Profit from Futures Trading with an Unfair Advantage! Income Generating Strategies Essential Trading Tips & Market Insights Income Generating Strategies Essential Trading Tips & Market

More information

FOREX ENIGMA USER GUIDE.

FOREX ENIGMA USER GUIDE. FOREX ENIGMA USER GUIDE http://www.forexenigma.com 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

More information

With that, let s dive into the steps. Step 1 Identify range bound markets on Daily or 4 Hour Charts

With that, let s dive into the steps. Step 1 Identify range bound markets on Daily or 4 Hour Charts If you have been trading for any length of time, you have probably noticed that the markets are moving sideways A LOT. Consolidation is a huge part of the market s balance and so it makes sense to learn

More information

Resistance to support

Resistance to support 1 2 2.3.3.1 Resistance to support In this example price is clearly consolidated and we can expect a breakout at some time in the future. This breakout could be short or it could be long. 3 2.3.3.1 Resistance

More information

Market Mastery Protégé Program Method 1 Part 1

Market Mastery Protégé Program Method 1 Part 1 Method 1 Part 1 Slide 2: Welcome back to the Market Mastery Protégé Program. This is Method 1. Slide 3: Method 1: understand how to trade Method 1 including identifying set up conditions, when to enter

More information

Instruction (Manual) Document

Instruction (Manual) Document Instruction (Manual) Document This part should be filled by author before your submission. 1. Information about Author Your Surname Your First Name Your Country Your Email Address Your ID on our website

More information

Forex Renko Charts FX Trading System

Forex Renko Charts FX Trading System Forex Renko Charts FX Trading System Disclaimer FOREX trading, online foreign exchange trading, foreign currency trading and Forex options trading involves risk of loss and is not appropriate for all investors.

More information

Never Loss Trading Review

Never Loss Trading Review Never Loss Trading Review By Larry Jacobs One of the speakers at the Traders World Online Expo #12, Thomas Barmann of NeverLossTrading.com gave an excellent presentation and I was impressed with it. If

More information

Bollinger Bands Forex Trading Strategy With 20 Period Moving Average

Bollinger Bands Forex Trading Strategy With 20 Period Moving Average Bollinger Bands Forex Trading Strategy With 20 Period Moving Average The bollinger bands forex trading strategy with 20 period moving average is a very simple forex strategy that works very well for all

More information

Instruction (Manual) Document

Instruction (Manual) Document Instruction (Manual) Document This part should be filled by author before your submission. 1. Information about Author Your Surname Your First Name Your Country Your Email Address Your ID on our website

More information

NEWSLETTER SWING TRADING. 28 Feb Intelligent Analysis to point your decisions in the right direction

NEWSLETTER SWING TRADING. 28 Feb Intelligent Analysis to point your decisions in the right direction NEWSLETTER 28 Feb 2018 Intelligent Analysis to point your decisions in the right direction SWING TRADING Newsletter contains index, stocks and sector recommendations along with market outlook. It also

More information

USER GUIDE

USER GUIDE USER GUIDE http://www.infinityscalper.com 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

More information

.. /-!"::- '..- ( \.- - '-/../ '

.. /-!::- '..- ( \.- - '-/../ ' ....'-/ -!"::- ' ( \.-../ ' /- Triple Shot Forex Trading System The term "Day Trading" usually refers to the act of buying and selling a financial instrument within the same day. In the Forex market, a

More information

The truth behind commonly used indicators

The truth behind commonly used indicators Presents The truth behind commonly used indicators Pipkey Report Published by Alaziac Trading CC Suite 509, Private Bag X503 Northway, 4065, KZN, ZA www.tradeology.com Copyright 2014 by Alaziac Trading

More information

How to create a competent trading algorithm

How to create a competent trading algorithm 1 How to create a competent trading algorithm This file is designed to improve the trading skills and develop the trader s discipline. It explains how to create a manual trading algorithm and it will be

More information

Tradeciety s Price Action Guide

Tradeciety s Price Action Guide Tradeciety s Price Action Guide Welcome... 3 Who am I?... 3 Some impressions from my trading & traveling lifestyle... 4 What Is Price Action?... 6 Candlesticks vs. Chart patterns... 7 Top 3 Candlestick

More information

Compass FX

Compass FX SYNERGY Trading Method Disclaimer Unique experiences and past performances do not guarantee future results. Trading in the off-exchange Foreign Exchange market (Forex) is very speculative in nature, involves

More information

Forex Trend Directive

Forex Trend Directive FOREX GEMINI CODE Presents Forex Trend Directive Forex Gemini Code Published by Alaziac Trading CC Suite 509, Private Bag X503 Northway, 4065, KZN, ZA www.forexgeminicode.com Copyright 2014 by Alaziac

More information

Autochartist User Manual

Autochartist User Manual Autochartist User Manual compliance@ifxbrokers.com www.ifxbrokers.com +27 42 293 0353 INTRODUCTION Chapter 1 Autochartist offers traders automated market-scanning tools that highlight trade opportunities

More information

SWITCHBACK (FOREX) V1.4

SWITCHBACK (FOREX) V1.4 SWITCHBACK (FOREX) V1.4 User Manual This manual describes all the parameters in the ctrader cbot. Please read the Switchback Strategy Document for an explanation on how it all works. Last Updated 11/11/2017

More information

USER GUIDE. How To Get The Most Out Of Your Daily Cryptocurrency Trading Signals

USER GUIDE. How To Get The Most Out Of Your Daily Cryptocurrency Trading Signals USER GUIDE How To Get The Most Out Of Your Daily Cryptocurrency Trading Signals Getting Started Thank you for subscribing to Signal Profits daily crypto trading signals. If you haven t already, make sure

More information

How To Limit Losses & Let Profits Run. Presented by: Darrell Martin Updated

How To Limit Losses & Let Profits Run. Presented by: Darrell Martin  Updated How To Limit Losses & Let Profits Run Updated 5-28-2013 Presented by: Darrell Martin www.apexinvesting.com www.apexinvesting.com 2012 2012 Apex Apex Investing Institute LLC LLC All All Right Right Reserved

More information

Risk Disclosure and Liability Disclaimer:

Risk Disclosure and Liability Disclaimer: Risk Disclosure and Liability Disclaimer: The author and the publisher of the information contained herein are not responsible for any actions that you undertake and will not be held accountable for any

More information

Page 1 of 96 Order your Copy Now Understanding Chart Patterns

Page 1 of 96 Order your Copy Now Understanding Chart Patterns Page 1 of 96 Page 2 of 96 Preface... 5 Who should Read this book... 6 Acknowledgement... 7 Chapter 1. Introduction... 8 Chapter 2. Understanding Charts Convention used in the book. 11 Chapter 3. Moving

More information

Trade Setups, Rules & Trading Strategies

Trade Setups, Rules & Trading Strategies Trade Setups, Rules & Trading Strategies dba of FreeTradingVideos.com, Inc. v.1411 Using Technical Analysis to Enter, Manage and Exit Trades Quote of the Day At Grok Trade, we do not trade Trading Patterns.

More information

When traders make trading decisions based on repeated price patterns that once formed,

When traders make trading decisions based on repeated price patterns that once formed, Trading Strategy / Gert.Nurme@iBrokers.ee Price Action Trading Strategy Introduction WHAT IS PRICE ACTION TRADING? When traders make trading decisions based on repeated price patterns that once formed,

More information

Quantitative Trading System For The E-mini S&P

Quantitative Trading System For The E-mini S&P AURORA PRO Aurora Pro Automated Trading System Aurora Pro v1.11 For TradeStation 9.1 August 2015 Quantitative Trading System For The E-mini S&P By Capital Evolution LLC Aurora Pro is a quantitative trading

More information

INTERMEDIATE EDUCATION GUIDE

INTERMEDIATE EDUCATION GUIDE INTERMEDIATE EDUCATION GUIDE CONTENTS Key Chart Patterns That Every Trader Needs To Know Continution Patterns Reversal Patterns Statistical Indicators Support And Resistance Fibonacci Retracement Moving

More information

www.forexschoolonline.com CHECKLIST 7 Rules to a High Probability A+ Trade - CHECKLIST The checklist is below; Below the checklist is a detailed explanation of each point. You can also download the checklist

More information

FOREX PROFITABILITY CODE

FOREX PROFITABILITY CODE FOREX PROFITABILITY CODE Forex Secret Protocol Published by Old Tree Publishing CC Suite 509, Private Bag X503 Northway, 4065, KZN, ZA www.oldtreepublishing.com Copyright 2013 by Old Tree Publishing CC,

More information

presented by Thomas Wood MicroQuant SM Divergence Trading Workshop Day One Naked Trading Part 2

presented by Thomas Wood MicroQuant SM Divergence Trading Workshop Day One Naked Trading Part 2 presented by Thomas Wood MicroQuant SM Divergence Trading Workshop Day One Naked Trading Part 2 Risk Disclaimer Trading or investing carries a high level of risk, and is not suitable for all persons. Before

More information

Ichimoku Kinko Hyo System PDF Strategy Guide + MT4 Indicator Download

Ichimoku Kinko Hyo System PDF Strategy Guide + MT4 Indicator Download Ichimoku Kinko Hyo System PDF Strategy Guide + MT4 Indicator Download ForexStrategiesWork.com Congratulations! You might not know it yet but you are in for a REAL treat in the Forex World. You now have

More information

MULTI-TIMEFRAME TREND TRADING

MULTI-TIMEFRAME TREND TRADING 1. SYNOPSIS The system described is a trend-following system on a slow timeframe that uses optimized (that is, contrarian) entries and exits on a fast timeframe at the tops and bottoms of retraces against

More information

presented by Thomas Wood MicroQuant SM Divergence Trading Workshop Day One Black Gold

presented by Thomas Wood MicroQuant SM Divergence Trading Workshop Day One Black Gold presented by Thomas Wood MicroQuant SM Divergence Trading Workshop Day One Black Gold Risk Disclaimer Trading or investing carries a high level of risk, and is not suitable for all persons. Before deciding

More information

charts to also be in the overbought area before taking the trade. If I took the trade right away, you can see on the M1 chart stochastics that the

charts to also be in the overbought area before taking the trade. If I took the trade right away, you can see on the M1 chart stochastics that the When you get the signal, you first want to pull up the chart for that pair and time frame of the signal in the Web Analyzer. First, I check to see if the candles are near the outer edge of the Bollinger

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

Tommy s Revenge 2.0 Module 2 Part 2

Tommy s Revenge 2.0 Module 2 Part 2 1 Mark Deaton here with your follow-up to Module 2. Going to cover a few things in this video and try to keep it short and sweet. We re going to look at Stock Fetcher and how we can use Stock Fetcher to

More information

Part 2: ASX charts - more charting tools. OHLC / Bar chart

Part 2: ASX charts - more charting tools. OHLC / Bar chart Part 2: ASX charts - more charting tools OHLC / Bar chart A bar chart simply takes the information from the day's trading and plots that information on a single vertical 'bar'. A tab on the left side of

More information

Core CFD trading skills

Core CFD trading skills chapter 7 Core CFD trading skills In this chapter we examine the core skills that you need to develop to trade successfully. Mastering these core competencies is essential to mastering CFD trading. It

More information

How I Trade Forex Using the Slope Direction Line

How I Trade Forex Using the Slope Direction Line How I Trade Forex Using the Slope Direction Line by Jeff Glenellis Copyright 2009, Simple4xSystem.net By now, you should already have both the Slope Direction Line (S.D.L.) and the Fibonacci Pivot (FiboPiv)

More information

All the features you need to ramp up your forex profits, with none of the complexity.

All the features you need to ramp up your forex profits, with none of the complexity. Don t let the market take back what you have won! it? Want to trade with the market instead of against All the features you need to ramp up your forex profits, with none of the complexity. Are you an FX

More information

Capture Profits Using Bands And Channels January 11, 2006 By Richard Lee

Capture Profits Using Bands And Channels January 11, 2006 By Richard Lee Capture Profits Using Bands And Channels January 11, 2006 By Richard Lee Email this Article Print this Article Comments Alerts Add to del.icio.us Other RSS Readers Widely known for their ability to incorporate

More information

TECHNICAL INDICATORS

TECHNICAL INDICATORS TECHNICAL INDICATORS WHY USE INDICATORS? Technical analysis is concerned only with price Technical analysis is grounded in the use and analysis of graphs/charts Based on several key assumptions: Price

More information

Magic Line Trading System. A Simple, Easy-To-Learn Price-Action Trading Strategy

Magic Line Trading System. A Simple, Easy-To-Learn Price-Action Trading Strategy Magic Line Trading System A Simple, Easy-To-Learn Price-Action Trading Strategy 1. Disclaimer... 3 2. Introduction... 4 3. Trading as a career... 6 4. Getting started... 8 5. Setting up your charts...

More information

Bollinger Trading Methods. Play 1 - The Squeeze

Bollinger Trading Methods. Play 1 - The Squeeze Overview: Play 1 - The Squeeze Play 2 - The Trend Trade Play 3 - Reversals Wrap up Bollinger Trading Methods Play 1 - The Squeeze The Squeeze The most popular strategy Looks to enter a trend early on Anticipates

More information

Applying fundamental & technical analysis in stock investing

Applying fundamental & technical analysis in stock investing Applying fundamental & technical analysis in stock investing Today s Agenda Fundamental Analysis Topics include a basic overview, a discussion on ways to use it, and hands on tool demonstrations Trading

More information

If you have traded forex long enough, you will notice that sometimes, price has an uncanny ability to reverse exactly at or around fibonacci levels.

If you have traded forex long enough, you will notice that sometimes, price has an uncanny ability to reverse exactly at or around fibonacci levels. Fibonacci Forex Trading Strategy With Reversal Candlesticks The Fibonacci forex trading strategy with reversal candlesticks is simply about using fibonacci retracements in conjunction with reversal candlesticks.

More information

Trading Lessons from the Intraday Frame (study)

Trading Lessons from the Intraday Frame (study) 1 Daily "Idealized Trades" Report Trading Lessons from the Intraday Frame (study) 1 2018 TheoTrade LLC. All rights reserved. 2 Trading Lessons from the Intraday Frame (1-mi) 2 2018 TheoTrade LLC. All rights

More information

Applying fundamental & technical analysis in stock investing

Applying fundamental & technical analysis in stock investing Applying fundamental & technical analysis in stock investing 2017 Live demonstration of research and trading tools Develop an Ongoing Strategy with Fidelity Software and mobile apps to enhance your trading

More information

Copyright PriceAction5.com

Copyright PriceAction5.com 1 Copyright PriceAction5.com All rights reserved. Unauthorised resell or copying of this material is unlawful. No portion of this ebook may be copied or resold without written permission. PriceAction5.com

More information

MINI TERMINAL User Guide

MINI TERMINAL User Guide MINI TERMINAL User Guide 1 CONTENTS 1. PLACING TRADES USING THE MINI TERMINAL 4 1.1 Placing buy/sell orders 4 1.1.1 Calculators 4 1.2 Placing pending orders 4 1.2.1 Placing pending orders directly from

More information

INTRODUCTION CHAPTER 1

INTRODUCTION CHAPTER 1 INTRODUCTION CHAPTER 1 Autochartist offers traders automated market-scanning tools that highlight trade opportunities based on support and resistance levels. Autochartist products include: Chart pattern

More information

Test Your Chapter 1 Knowledge

Test Your Chapter 1 Knowledge Self-Test Answers Test Your Chapter 1 Knowledge 1. Which is the preferred chart type in LOCKIT? The preferred chart type in LOCKIT is the candle chart because candle patterns are part of the decision-making

More information

TRADING STRATEGY SERIES LEARN HOW TO SPOT OPPORTUNITIES IN VOLATILE MARKETS fpmarkets.com.au

TRADING STRATEGY SERIES LEARN HOW TO SPOT OPPORTUNITIES IN VOLATILE MARKETS fpmarkets.com.au 1 TRADING STRATEGY SERIES LEARN HOW TO SPOT OPPORTUNITIES IN VOLATILE MARKETS This educational material does not constitute financial product advice and does not take into account your investment objectives,

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

2010. Trading Concepts, Inc. All Rights Reserved. For More Information Please Visit

2010. Trading Concepts, Inc. All Rights Reserved. For More Information Please Visit E-Mini Volume Breakout System By Todd Mitchell For additional information, please go to http://www.eminisuccessformula.com Copyright 2010 by Trading Concepts, Inc. All Rights Reserved. U.S. Government

More information

1. Overview of the Trade Terminal Opening the Trade Terminal Components of the Trade Terminal Market watch

1. Overview of the Trade Terminal Opening the Trade Terminal Components of the Trade Terminal Market watch USER MANUALS Trade Terminal Tick Chart Trader Stealth Orders Smart Lines Session Map Sentiment Trader Renko Bar Indicator Order History Indicator Mini Terminal Market Manager High-Low Indicator Freehand

More information

Moving Average Convergence Divergence (MACD) by

Moving Average Convergence Divergence (MACD) by Moving Average Convergence Divergence (MACD) by www.surefire-trading.com Ty Young Hi, this is Ty Young with Surefiretrading.com and today we will be discussing the Moving Average Convergence/Divergence

More information

Methodology. Our team of analysts uses technical and chartist analysis to draw an opinion and make decisions. The preferred chartist elements are:

Methodology. Our team of analysts uses technical and chartist analysis to draw an opinion and make decisions. The preferred chartist elements are: Methodology Technical analysis is at the heart of TRADING CENTRAL's expertise. Our methodology is proven. Our chartist and quantitative approach allows us to intervene on different investment horizons.

More information

PROFIT TRADE SCANNER. USER GUIDE

PROFIT TRADE SCANNER. USER GUIDE PROFIT TRADE SCANNER USER GUIDE http://www.profittradescanner.com DISCLAIMER Please be aware of the loss, risk, personal or otherwise consequences of the use and application of this book s content. The

More information

The Truth About Fibonacci. Trading

The Truth About Fibonacci. Trading The Truth About Fibonacci Trading 2 The Truth About Fibonacci Trading The truth about Fibonacci levels is that they are useful (like all trading indicators). They do not work as a standalone system of

More information

1. Introduction 2. Chart Basics 3. Trend Lines 4. Indicators 5. Putting It All Together

1. Introduction 2. Chart Basics 3. Trend Lines 4. Indicators 5. Putting It All Together Technical Analysis: A Beginners Guide 1. Introduction 2. Chart Basics 3. Trend Lines 4. Indicators 5. Putting It All Together Disclaimer: Neither these presentations, nor anything on Twitter, Cryptoscores.org,

More information

Counter Trend Trades. (Trading Against The Trend) By Russ Horn

Counter Trend Trades. (Trading Against The Trend) By Russ Horn Counter Trend Trades (Trading Against The Trend) By Russ Horn 1 RISK DISCLOSURE STATEMENT / DISCLAIMER AGREEMENT Trading any financial market involves risk. This report and all and any of its contents

More information

Trends. Define the term Trend Explain why Trend is important Identify Primary, Secondary, and Short-Term trends

Trends. Define the term Trend Explain why Trend is important Identify Primary, Secondary, and Short-Term trends Trends Define the term Trend Explain why Trend is important Identify Primary, Secondary, and Short-Term trends 1 What is a Trend? Uptrend Prices rise and fall in Trends Trend is defined as: Up (Rising)

More information

Table of Contents. Risk Disclosure. Things we will be going over. 2 Most Common Chart Layouts Anatomy of a candlestick.

Table of Contents. Risk Disclosure. Things we will be going over. 2 Most Common Chart Layouts Anatomy of a candlestick. Table of Contents Risk Disclosure Things we will be going over 2 Most Common Chart Layouts Anatomy of a candlestick Candlestick chart Anatomy of a BAR PLOT Indicators Trend-Lines Volume MACD RSI The Stochastic

More information

No-BS Trading System

No-BS Trading System No-BS Trading System Techniques The Professionals Don t Want To Be Revealed DISCLAIMER U.S. Government Required Disclaimer - Commodity Futures Trading Commission Futures and Options trading has large potential

More information

Williams Percent Range

Williams Percent Range Williams Percent Range (Williams %R or %R) By Marcille Grapa www.surefiretradingchallenge.com RISK DISCLOSURE STATEMENT / DISCLAIMER AGREEMENT Trading any financial market involves risk. This report and

More information

The Master Trader Counter-Trend Trade Set-Ups

The Master Trader Counter-Trend Trade Set-Ups The Master Trader Counter-Trend Trade Set-Ups Trading Concepts, Inc. The Master Trader Counter-Trend Trade Set-Ups By Todd Mitchell Copyright 2014 by Trading Concepts, Inc. All Rights Reserved This training

More information

Forex Advantage Blueprint

Forex Advantage Blueprint Forex Advantage Blueprint Complimentary Report!! www.forexadvantageblueprint.com Copyright Protected www.forexadvantageblueprint.com - 1 - Limits of liability/disclaimer of Warranty The author and publishers

More information

How To Read Charts Like A Pro Your guide to reading stock charts!

How To Read Charts Like A Pro Your guide to reading stock charts! How To Read Charts Like A Pro Your guide to reading stock charts! Courtesy of Swing-Trade-Stocks.com You may distribute this book FREELY or use it as part of a commercial package as long as this page and

More information

In this report, I will give you a step by step set of instructions for utilizing The Lazy River Scalping Strategy my favorite scalping method.

In this report, I will give you a step by step set of instructions for utilizing The Lazy River Scalping Strategy my favorite scalping method. What is Scalping? In short, scalping is the idea of taking quick trades (typically on smaller time frames) that only need to go a short distance before you cash out of the position and then to do this

More information

Multi Account Manager

Multi Account Manager Multi Account Manager User Guide Copyright MetaFX,LLC 1 Disclaimer While MetaFX,LLC make every effort to deliver high quality products, we do not guarantee that our products are free from defects. Our

More information

END OF DAY DATA CORPORATION. Scanning the Market. using Stock Filter. Randal Harisch 2/27/2011

END OF DAY DATA CORPORATION. Scanning the Market. using Stock Filter. Randal Harisch 2/27/2011 END OF DAY DATA CORPORATION Scanning the Market using Stock Filter Randal Harisch 2/27/2011 EOD's Stock Filter tool quickly searches your database, identifying stocks meeting your criteria. The results

More information

Options Mastery Day 1 System Training

Options Mastery Day 1 System Training Options Mastery Day 1 System Training Day 1 Agenda 10:00-10:15 - Intro & Course Outline 10:15-11:00 Indicator Overview and Setup 11:00-11:15 - Break 11:15-12:15 - Active Swing Trader Training 12:15-12:30

More information

ADDING THE MACD Forex Strategy Master Published by Old Tree Publishing CC Suite 509, Private Bag X503 Northway, 4065, KZN, ZA www.oldtreepublishing.com Copyright 2013 by Old Tree Publishing CC, KZN, ZA

More information

Compilation Of Tips And Uses Of FGS

Compilation Of Tips And Uses Of FGS Compilation Of Tips And Uses Of FGS Copyright 2012 ForexGeometry.com NOTE: ANY INFORMATION CONTAINED IN THIS DOCUMENT IS FOR EDUCATIONAL PURPOSES ONLY AND IS NOT FINANCIAL ADVICE. U.S. GOVERNMENT REQUIRED

More information

PRESENTS. COG Master Strategy. Trading Forex Using the Center Of Gravity Master Strategy. Wesley Govender

PRESENTS. COG Master Strategy. Trading Forex Using the Center Of Gravity Master Strategy. Wesley Govender PRESENTS COG Master Strategy Trading Forex Using the Center Of Gravity Master Strategy Copyright 2013 by Old Tree Publishing CC, KZN, ZA Wesley Govender Reproduction or translation of any part of this

More information

Relative Strength Index (RSI) by Ty Young

Relative Strength Index (RSI) by  Ty Young Relative Strength Index (RSI) by www.surefire-trading.com Ty Young Hi, this is Ty Young with Surefire-trading.com and today I will be discussing the Relative Strength Index (RSI). History J. Welles Wilder,

More information

Naked Trading and Price Action

Naked Trading and Price Action presented by Thomas Wood MicroQuant SM Divergence Trading Workshop Day One Naked Trading and Price Action Risk Disclaimer Trading or investing carries a high level of risk, and is not suitable for all

More information

GUIDE TO STOCK trading tools

GUIDE TO STOCK trading tools P age 1 GUIDE TO STOCK trading tools VI. TECHNICAL INDICATORS AND OSCILLATORS I. Introduction to Indicators and Oscillators Technical indicators, to start, are data points derived from a specific formula.

More information