STRESS TESTING HOW ROBUST IS YOUR STRATEGY? Proper optimization rather than curve fitting.

Size: px
Start display at page:

Download "STRESS TESTING HOW ROBUST IS YOUR STRATEGY? Proper optimization rather than curve fitting."

Transcription

1 intalus.com/tradesignal-howto Issue 03 STRESS TESTING HOW ROBUST IS YOUR STRATEGY? Proper optimization rather than curve fitting. Powered by A publication of

2 WATCH VIDEO TO SEE EXAMPLES ON STRESS TESTING HOW ROBUST IS YOUR STRATEGY?. FIND THIS AND MORE TRADESIGNAL HOW TO VIDEOS AT: IN ADDITION CHECK OUR TRADING TIPS VIDEOS AT: SHARE THIS TRADESIGNAL HOW TO! 2

3 STRESS TESTING HOW ROBUST IS YOUR STRATEGY? Properly optimization instead of curve fitting. With the right software, testing and optimizing a trading strategy is very easy these days. It is precisely this simplicity, however, that allows users consciously or unconsciously to fall into the curve fitting trap. In this issue we want to show how optimization leads to over-fitting and also how to identify if your strategy is robust by using a stress test. bb Back test and optimization a holy grail? 4 bb Optimization versus curve fitting 5 bb Using the stress test for creating a robust strategy 8 bb The stress test indicator 10 bb Application in practice 13 bb Robustness the key to success 19 3

4 BACK TEST AND OPTIMIZATION A HOLY GRAIL? Algorithmic trading strategies are based purely on objectives and clear rules: Getting into a position, the stop, exit and the position size are all subject to unique requirements. Besides this, another advantage is that any emotional traps are easily avoidable. The use of quantitative trading strategies also provides a decisive advantage: Any strategy that can be transferred into a source code and as such converted it into a machine language, can be back tested in other words, simulated based on historical data before it is applied to real funds. By using the gained risk and return metrics the characteristics and quality of a strategy can be analyzed in detail and compared with alternatives. Combined with an optimization function, many powerful tools to aid the development of trading strategies are available to the user. SHARE THIS TRADESIGNAL HOW TO! 4

5 OPTIMIZATION VERSUS CURVE FITTING. Used incorrectly, however, the tools just mentioned can have undesirable consequences, namely curve fitting. The following anecdote, which reiterates a conversation between scientists, Freeman Dyson and Enrico Fermi, describes this phenomenon: It is Freeman Dyson questions Fermi in Chicago to discuss with him his own results for the meson-proton distribution. Fermi was however visibly unimpressed by the results and asks Dyson, how many selectable parameters he had used for the calculations. Dyson answers that he had used four parameters. Fermi s retort: I remember how my friend John von Neumann used to say, with four parameters I can adjust an elephant, and with five I can make him wiggle his trunk. This quote describes, what is at stake in curve fitting - to over-fitting a trading strategy to the underlying data series. During the optimization process, individual parameters are modified (eg, length of the moving average, stop or target size) in an iterative process until, finally, from a large number of different combinations those are picked, which promise optimal results but only on the basis the specific historical data that was used for the calculation. 5

6 So before a back test and optimization are performed at all, the trader should have a solid idea for the trading strategy and attempt to define meaningful parameter ranges to be tested. In short, the software should validate a trading idea, not discover it. The more parameters a trading strategy has and the higher the number of combinations tested, the higher the curve fitting effect. The result is that the trading strategy delivers wonderful results in the back test, but fails miserably in real trading. Simulated scientific studies show that the stronger the strategy was adapted to the historical data, the poorer the results in real trading.* * A more detailed study entitled The probability of backtest overfitting can be downloaded for free here: SHARE THIS TRADESIGNAL HOW TO! 6

7 For this reason, a division of the representative historical market data in at least two sub-periods is necessary. This allows for the development and optimization of a trading strategy based on the period A (In-sample back test) in order to test it on the unknown data-terrain, period B (Out-of-sample back test). The results of the sub-periods should not show any significant deviations. If this were the case, it is highly likely to be evidence of an over-fitted strategy. A special form of this test method in which the optimal parameters of a sub-period for the subsequent out-of-sample period are used,it is called the walk forward test. How you can use it in practice and what features are provided by Tradesignal? We discuss this in greater detail in a future How To issue. 7

8 USING THE STRESS TEST FOR CREATING A ROBUST STRATEGY. For a trading strategy to work, not only in the back test, but also in real trading, it must be robust. With Tradesignal the back testing and optimization function allows you to check how stable your trading strategy behaves on different markets and in different time frames even using an entire portfolio. The testing of the strategy at different time frames can help identify changes in performance behavior, which would be due to differing market phases. The use of other securities in the back test shows, however, whether the algorithm actually identifies general patterns that can be observed in other underlying assets or if it has been trimmed on specific patterns within the underlying data series. An easy way to test this is to monitor the change in the risk and return characteristics while the parameter values are being modified. The more varied the results, the less robust is the strategy. An extreme negative example is shown in figure 1. The graph shows the profit factor of a trading strategy in response to an entry and exit parameter; red areas represent unprofitable, green for profitable values. As can be seen, of all parameter combinations only one is profitable. If exactly this optimal combination of parameters is the basis for a trading strategy, one thing is inevitable in real trading its failure. SHARE THIS TRADESIGNAL HOW TO! 8

9 Figure 1: Optimization heatmap Profitable parameter combinations being only available in a small area signal curve fitting in its purest form. 9

10 THE STRESS TEST INDICATOR. Therefore when performing a back test you always need to make sure, that as many parameter ranges as possible generate satisfactory results around the optimum area. As already mentioned, it should be examined in a stress test; or how the chosen strategy behaves on other markets and different time frames. With the stress test indicator we want to show you a simple and convenient way to perform such a stress test. SHARE THIS TRADESIGNAL HOW TO! 10

11 Meta: Synopsis("Example indicator that is designed to be the parent of a trading strategy for which the strategy author would like to 'stress test' by varying the indicators input parameters during optimization."), Author("Tradesignal GmbH"); Inputs: Security(SIE, ALVG, DAI, EUR, DAX), // Change the security being tested Period(Minutes1, Minutes5, Minutes60, Daily, Weekly, Monthly) = Daily; // Change the period being tested Instruments: inst( IFF(Security = SIE, "SIEGn.DE", IFF(Security = ALVG, "ALVG.DE", IFF(Security = DAI, "DAIGn.DE", IFF(Security = EUR, "EUR=", IFF(Security = DAX, ".GDAXI", ""))) + " " + IFF(Period = Minutes1, "1m", IFF(Period = Minutes5, "5m", IFF(Period = Minutes60, "60m", IFF(Period = Daily, "daily", IFF(Period = Weekly, "weekly", IFF(Period = Monthly, "monthly", "")))))))) ); DrawBar(Open of inst, High of inst, Low of inst, Close of inst); Figure 2: Stress test indicator Equilla code With the stress test indicator trading strategies can be checked for robustness by defining several securities and time frames as inputs. 11

12 As you can see, the securities included in this indicator are stored as so-called inline instruments and defined as inputs. Since inputs of indicators can be optimized, this function offers a clever way to test any number of securities against a trading strategy to examine their stability. You can apply the indicator by saving the code above by copying and pasting it into the Equilla editor. In the sample code, the RICs from Thomson Reuters have been used. SHARE THIS TRADESIGNAL HOW TO! 12

13 APPLICATION IN PRACTICE. An application of the stress test indicator requires the following steps: 01. Copy the Equilla code and paste it in Equilla editor; 02. Modify and expand the securities included in the code if required; 03. Save the indicator on your Tradesginal platform; 04. Insert the indicator into an empty chart; 05. Choose a trading strategy of your choice and add it into the chart (eg Moving Average Crossover Single); 06. Select the toolbar button Optimize a. Select Brute Force b. Parameters to optimize: i. Trading strategy period (5 to 200, step 5); ii. Period of the stress test indicator (eg, monthly, weekly, daily, 60min, 5min); c. Select a data field for the back test 13

14 Figure 3: Opimization assistant The stress test indicator provides the possibility using different time frames as parameters within an optimization. SHARE THIS TRADESIGNAL HOW TO! 14

15 After these steps, the user gets an overview that displays the period of the selected parameter of the trading strategy on the x-axis, while the selected time levels are shown on the y-axis. A tabulation (not shown) is also included for detailed analysis. If you want to check the robustness of the strategy for example, measured on profit factor - to analyze the dependence of these two factors, then selecting profit factor is sufficient in the upper input window of the optimizer and one obtains the following chart analysis on next page. 15

16 Figure 4: Robustness check (parameters versus time frames) The coloured representation of the optimization results shows profitable and unprofitable combinations of two parameters. In this example it is the period of a simple crossover strategy and a total of five different time frames. SHARE THIS TRADESIGNAL HOW TO! 16

17 Using the color gradation it is possible to detect profitable areas in no time. Green and yellow areas represent profit factor above 1, while orange and red coloured cells represent unprofitable areas. As expected, the exemplarily chosen crossover strategy provides good results on a monthly and weekly time frame (row 1 and 2). On a daily level, positive results can be seen only around the period 200. On 60- and 5-minute-planes (bottom two rows), however, the results are negative across the board. The stress test indicator can be further used to analyze the robustness of a trading strategy as a function of the individual securities and a given period. To do this, not only the period of the SMA, but also the desired securities (parameter selected is Security Strategy (stress test indicator) as the comparison parameter (see step 6b and graph below). A few moments later, the optimization process is complete and the visual presentation just shows all combinations. As you can see, the trading strategy generates positive results basis in all four securities. Particularly high profit factor values are found in the range from 200 to 250 days. 17

18 Figure 5: Robustness check (parameters versus securities) The colored representation of the optimization results shows profitable and unprofitable combinations of two parameters. In this example, it involves the period value of a simple crossover strategy and four securities. SHARE THIS TRADESIGNAL HOW TO! 18

19 ROBUSTNESS THE KEY TO SUCCESS. Tradesignal provides all the professional tools, the trader and portfolio manager need for the back test and optimization. The presented stress test indicator provides one of several ways to check the stability and robustness of an algorithmic trading strategy to reduce curve fitting-effects to a minimum. Besides the robustness check, the consideration of realistic costs (commissions, slippage) and the use of a rule-based, dynamic position control size are essential prerequisites for the use of a trading strategy in practice. Finally, we would like to use a famous quote from Albert Einstein that can be transferred very well to Algorithmic Trading. Namely, it provides the easiest and most effective recommendation that needs to be considered when developing quantitative trading strategies: Everything should be made as simple as possible, but no simpler. Albert Einstein Take care, take profit und auf Wiedersehen Intalus 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. 19

20 Powered by Powered by The ultimate tools for making profitable investment decisions. A publication of intalus.com intalus.com/tradesignal-howto A publication of STRESS TESTING HOW ROBUST IS YOUR STRATEGY? TRADESIGNAL HOW TO. 03 PROFIT FROM THESE TRADESIGNAL HOW TO & VIDEOS TOO. TRADESIGNAL HOW TO. POINT & FIGURE CHARTS FOR BEGINNERS. Issue 01 TRADESIGNAL HOW TO 01 POINT & FIGURE CHARTS FOR BEGINNERS. The ultimate tools for making profitable investment decisions. MORE HOW TO AND VIDEOS HERE WHAT S NEW IN TRADESIGNAL 7.3. New features for more analysis power with ease of use. Issue 02 TRADESIGNAL HOW TO 02 WHAT S NEW IN TRADESIGNAL 7.3. New features for more analysis power with ease of use. SHARE THIS TRADESIGNAL HOW TO! 20

21 YOU CAN T REACH THE HIGHEST PEAK IN ONE DAY. Get yourself prepared with workshops by Intalus. MORE INFOS AT:

How To Use A Japanese Roenko Chart To Create A Trading Strategy

How To Use A Japanese Roenko Chart To Create A Trading Strategy TIPS. 10 SKYSCRAPER. Menara Carigali, Kuala Lumpur. The todays third tallest building in Malaysia on the scale of 267 metres high. 1/ 3 ALGORITHMIC TRADING WITH RENKO CHARTS. PART 1: How to define trend

More information

TRADESIGNAL W O R KSHOPS

TRADESIGNAL W O R KSHOPS intalus.com TRADESIGNAL W O R KSHOPS TECHNICAL ANALYSIS & ALGORITHMIC TRADING FOR INSTITUTIONAL INVESTORS. Powered by TRADESIGNAL W O R KSHOPS INTRODUCTION TRADESIGNAL. WORKSHOPS. TECHNICAL ANALYSIS &

More information

TR DING CONTROL YOUR RISK. AUTO-ADJUST POSITION SIZE. How to create and trade an optimal portfolio. Issue. intalus.com. A publication of.

TR DING CONTROL YOUR RISK. AUTO-ADJUST POSITION SIZE. How to create and trade an optimal portfolio. Issue. intalus.com. A publication of. intalus.com TR DING TIPS. 03 SKYSCRAPER. The Gherkin (Swiss-Re Tower), London Landmark of the financial center of London. 182 meter. Issue CONTROL YOUR RISK. AUTO-ADJUST POSITION SIZE. How to create and

More information

PROFIT FROM GAP TRADING. A simple, but effective strategy.

PROFIT FROM GAP TRADING. A simple, but effective strategy. TIPS. 06 SKYSCRAPER. Burj Khalifa, Dubai. The worlds tallest building on the scale of 828 metres high. PROFIT FROM GAP TRADING. A simple, but effective strategy. TIPS. 06 PROFIT FROM GAP TRADING. by Philipp

More information

www.forexrobottrader.com

www.forexrobottrader.com The Steinitz Fractal Breakout Indicator (SFBI) was developed by Don Steinitz through rigorous research since 2003. Its unique properties make it far more advanced than any other indicator available on

More information

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

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

More information

Algorithmic Trading Session 1 Introduction. Oliver Steinki, CFA, FRM

Algorithmic Trading Session 1 Introduction. Oliver Steinki, CFA, FRM Algorithmic Trading Session 1 Introduction Oliver Steinki, CFA, FRM Outline An Introduction to Algorithmic Trading Definition, Research Areas, Relevance and Applications General Trading Overview Goals

More information

Excel Pivot Tables. Blue Pecan Computer Training Ltd - Onsite Training Provider www.bluepecantraining.com :: 0800 6124105 :: info@bluepecan.co.

Excel Pivot Tables. Blue Pecan Computer Training Ltd - Onsite Training Provider www.bluepecantraining.com :: 0800 6124105 :: info@bluepecan.co. Excel Pivot Tables 1 Table of Contents Pivot Tables... 3 Preparing Data for a Pivot Table... 3 Creating a Dynamic Range for a Pivot Table... 3 Creating a Pivot Table... 4 Removing a Field... 5 Change the

More information

Excel Tutorial. Bio 150B Excel Tutorial 1

Excel Tutorial. Bio 150B Excel Tutorial 1 Bio 15B Excel Tutorial 1 Excel Tutorial As part of your laboratory write-ups and reports during this semester you will be required to collect and present data in an appropriate format. To organize and

More information

Sonatype CLM Server - Dashboard. Sonatype CLM Server - Dashboard

Sonatype CLM Server - Dashboard. Sonatype CLM Server - Dashboard Sonatype CLM Server - Dashboard i Sonatype CLM Server - Dashboard Sonatype CLM Server - Dashboard ii Contents 1 Introduction 1 2 Accessing the Dashboard 3 3 Viewing CLM Data in the Dashboard 4 3.1 Filters............................................

More information

Table Of Contents. iii

Table Of Contents. iii Table Of Contents Quickstart... 1 Introduction... 1 Data administration... 1 The Toolbar... 2 Securities management... 3 Chart window structure... 4 Adding an indicator... 5 Chart drawings... 6 Saving

More information

Temperature Scales. The metric system that we are now using includes a unit that is specific for the representation of measured temperatures.

Temperature Scales. The metric system that we are now using includes a unit that is specific for the representation of measured temperatures. Temperature Scales INTRODUCTION The metric system that we are now using includes a unit that is specific for the representation of measured temperatures. The unit of temperature in the metric system is

More information

TRADING SYSTEM EVALUATION By John Ehlers and Mike Barna 1

TRADING SYSTEM EVALUATION By John Ehlers and Mike Barna 1 TRADING SYSTEM EVALUATION By John Ehlers and Mike Barna 1 INTRODUCTION There are basically two ways to trade using technical analysis Discretionarily and Systematically. Discretionary traders can, and

More information

Absorbance Spectrophotometry: Analysis of FD&C Red Food Dye #40 Calibration Curve Procedure

Absorbance Spectrophotometry: Analysis of FD&C Red Food Dye #40 Calibration Curve Procedure Absorbance Spectrophotometry: Analysis of FD&C Red Food Dye #40 Calibration Curve Procedure Note: there is a second document that goes with this one! 2046 - Absorbance Spectrophotometry. Make sure you

More information

MetaTrader 4 and MetaEditor

MetaTrader 4 and MetaEditor MetaTrader 4 and MetaEditor User Manual Version 1.1 gftuk.com / 0800 358 0864 / +44 (0) 20 7170 0770 LIVE CHAT 24/7 TOLL FREE INTERNATIONAL Table of Contents Welcome to the MetaTrader and MetaEditor User

More information

Using Excel (Microsoft Office 2007 Version) for Graphical Analysis of Data

Using Excel (Microsoft Office 2007 Version) for Graphical Analysis of Data Using Excel (Microsoft Office 2007 Version) for Graphical Analysis of Data Introduction In several upcoming labs, a primary goal will be to determine the mathematical relationship between two variable

More information

SP500 September 2011 Outlook

SP500 September 2011 Outlook SP500 September 2011 Outlook This document is designed to provide the trader and investor of the Standard and Poor s 500 with an overview of the seasonal tendency as well as the current cyclic pattern

More information

arxiv:1412.5558v1 [q-fin.tr] 17 Dec 2014

arxiv:1412.5558v1 [q-fin.tr] 17 Dec 2014 Backtest of Trading Systems on Candle Charts Stanislaus Maier-Paape Institut für Mathematik, RWTH Aachen, Templergraben 55, D-52052 Aachen, Germany maier@instmath.rwth-aachen.de Andreas Platen Institut

More information

Intermediate PowerPoint

Intermediate PowerPoint Intermediate PowerPoint Charts and Templates By: Jim Waddell Last modified: January 2002 Topics to be covered: Creating Charts 2 Creating the chart. 2 Line Charts and Scatter Plots 4 Making a Line Chart.

More information

Scientific Graphing in Excel 2010

Scientific Graphing in Excel 2010 Scientific Graphing in Excel 2010 When you start Excel, you will see the screen below. Various parts of the display are labelled in red, with arrows, to define the terms used in the remainder of this overview.

More information

Introduction to Microsoft Excel 2007/2010

Introduction to Microsoft Excel 2007/2010 to Microsoft Excel 2007/2010 Abstract: Microsoft Excel is one of the most powerful and widely used spreadsheet applications available today. Excel's functionality and popularity have made it an essential

More information

Lab 1: The metric system measurement of length and weight

Lab 1: The metric system measurement of length and weight Lab 1: The metric system measurement of length and weight Introduction The scientific community and the majority of nations throughout the world use the metric system to record quantities such as length,

More information

NetClient CS Document Management Portal User Guide. version 9.x

NetClient CS Document Management Portal User Guide. version 9.x NetClient CS Document Management Portal User Guide version 9.x TL 23560 (6/9/11) Copyright Information Text copyright 2001-2011 by Thomson Reuters/Tax & Accounting. All rights reserved. Video display images

More information

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1 Migrating to Excel 2010 - Excel - Microsoft Office 1 of 1 In This Guide Microsoft Excel 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key

More information

Probability Distributions

Probability Distributions CHAPTER 5 Probability Distributions CHAPTER OUTLINE 5.1 Probability Distribution of a Discrete Random Variable 5.2 Mean and Standard Deviation of a Probability Distribution 5.3 The Binomial Distribution

More information

Then add any financial assets you have, like your house, car, motorcycle, or RV.

Then add any financial assets you have, like your house, car, motorcycle, or RV. Use Personal Finance to view account balances and transactions from all of your financial institutions. Get a complete financial picture from the security and convenience of your Internet Banking. Personal

More information

Building a website. Should you build your own website?

Building a website. Should you build your own website? Building a website As discussed in the previous module, your website is the online shop window for your business and you will only get one chance to make a good first impression. It is worthwhile investing

More information

Microsoft Migrating to PowerPoint 2010 from PowerPoint 2003

Microsoft Migrating to PowerPoint 2010 from PowerPoint 2003 In This Guide Microsoft PowerPoint 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key parts of the new interface, discover free PowerPoint

More information

Summary of important mathematical operations and formulas (from first tutorial):

Summary of important mathematical operations and formulas (from first tutorial): EXCEL Intermediate Tutorial Summary of important mathematical operations and formulas (from first tutorial): Operation Key Addition + Subtraction - Multiplication * Division / Exponential ^ To enter a

More information

Intelligent Process Management & Process Visualization. TAProViz 2014 workshop. Presenter: Dafna Levy

Intelligent Process Management & Process Visualization. TAProViz 2014 workshop. Presenter: Dafna Levy Intelligent Process Management & Process Visualization TAProViz 2014 workshop Presenter: Dafna Levy The Topics Process Visualization in Priority ERP Planning Execution BI analysis (Built-in) Discovering

More information

Computer Skills Microsoft Excel Creating Pie & Column Charts

Computer Skills Microsoft Excel Creating Pie & Column Charts Computer Skills Microsoft Excel Creating Pie & Column Charts In this exercise, we will learn how to display data using a pie chart and a column chart, color-code the charts, and label the charts. Part

More information

CHARTING & TECHNICAL ANALYSIS

CHARTING & TECHNICAL ANALYSIS CHARTING & TECHNICAL ANALYSIS WHAT DO YOU WANT TO DO? Discover Charting & Technical Analysis Access Information Quickly with a Pre-Defined Chart Create Your Own Custom Chart Edit Your Charts Get More Help

More information

2 Spectrophotometry and the Analysis of Riboflavin

2 Spectrophotometry and the Analysis of Riboflavin 2 Spectrophotometry and the Analysis of Riboflavin Objectives: A) To become familiar with operating the Platereader; B) to learn how to use the Platereader in determining the absorption spectrum of a compound

More information

Using Microsoft Excel to Manage and Analyze Data: Some Tips

Using Microsoft Excel to Manage and Analyze Data: Some Tips Using Microsoft Excel to Manage and Analyze Data: Some Tips Larger, complex data management may require specialized and/or customized database software, and larger or more complex analyses may require

More information

Table of Contents. Manual for Core Staff - Equipment/Scheduling Core Facilities

Table of Contents. Manual for Core Staff - Equipment/Scheduling Core Facilities Table of Contents 1. Overview 2. How do I manage my account? 3. Equipment Scheduling Workflow Overview 4. Equipment Scheduling Walk Through a. How do I access the list of calendars available for scheduling?

More information

Welcome to Ipswitch Instant Messaging

Welcome to Ipswitch Instant Messaging Welcome to Ipswitch Instant Messaging What is Instant Messaging (IM), anyway? In a lot of ways, IM is like its cousin: e-mail. E-mail, while it's certainly much faster than the traditional post office

More information

SUCCESS STORY. 01 ASSET MANAGEMENT WITH TRADESIGNAL. A story of success for SKALIS Asset Management AG. Issue. intalus.com

SUCCESS STORY. 01 ASSET MANAGEMENT WITH TRADESIGNAL. A story of success for SKALIS Asset Management AG. Issue. intalus.com intalus.com SUCCESS Issue STORY. 01 ASSET MANAGEMENT WITH TRADESIGNAL. MOUNTAIN. Zugspitze, Germany/Austria. The highest peak in Germany on the scale of 2962 metres above sea level. A story of success

More information

Mathematics. What to expect Resources Study Strategies Helpful Preparation Tips Problem Solving Strategies and Hints Test taking strategies

Mathematics. What to expect Resources Study Strategies Helpful Preparation Tips Problem Solving Strategies and Hints Test taking strategies Mathematics Before reading this section, make sure you have read the appropriate description of the mathematics section test (computerized or paper) to understand what is expected of you in the mathematics

More information

Reviewing documents with track changes in Word 2013

Reviewing documents with track changes in Word 2013 Reviewing documents with track changes in Word 2013 Information Services Reviewing documents with track changes in Word 2013 This note covers how to use Word s reviewing tools to track the changes made

More information

Years after 2000. US Student to Teacher Ratio 0 16.048 1 15.893 2 15.900 3 15.900 4 15.800 5 15.657 6 15.540

Years after 2000. US Student to Teacher Ratio 0 16.048 1 15.893 2 15.900 3 15.900 4 15.800 5 15.657 6 15.540 To complete this technology assignment, you should already have created a scatter plot for your data on your calculator and/or in Excel. You could do this with any two columns of data, but for demonstration

More information

A GUIDE TO WL INDICATORS

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

More information

ITS Training Class Charts and PivotTables Using Excel 2007

ITS Training Class Charts and PivotTables Using Excel 2007 When you have a large amount of data and you need to get summary information and graph it, the PivotTable and PivotChart tools in Microsoft Excel will be the answer. The data does not need to be in one

More information

FREQUENTLY ASKED QUESTIONS AND ANSWERS ABOUT WHOLE BRAIN TECHNOLOGY

FREQUENTLY ASKED QUESTIONS AND ANSWERS ABOUT WHOLE BRAIN TECHNOLOGY FREQUENTLY ASKED QUESTIONS AND ANSWERS ABOUT WHOLE BRAIN TECHNOLOGY Whole Brain Thinking: Quick View This Quick View will answer the following questions: What is Whole Brain Thinking? What are the four

More information

Excel macros made easy

Excel macros made easy IT Training Excel macros made easy Jane Barrett, IT Training & Engagement Team Information System Services Version 1.1 Scope Learning outcomes Understand the concept of what a macro is and what it does.

More information

Using the Spectrophotometer

Using the Spectrophotometer Using the Spectrophotometer Introduction In this exercise, you will learn the basic principals of spectrophotometry and and serial dilution and their practical application. You will need these skills to

More information

Succeed Training Checking and Submitting Assignments using TurnitinUK

Succeed Training Checking and Submitting Assignments using TurnitinUK Succeed Training About the TurnitinUK service TurnitinUK is a UK-based service which allows educational institutions to carry out electronic comparisons of submitted work against other electronic sources.

More information

Interactive Video Quizzes Information Guide For Quiz Creators. Version: 1.0

Interactive Video Quizzes Information Guide For Quiz Creators. Version: 1.0 Interactive Video Quizzes Information Guide For Quiz Creators Version: 1.0 Kaltura Business Headquarters 250 Park Avenue South, 10th Floor, New York, NY 10003 Tel.: +1 800 871 5224 Copyright 2016 Kaltura

More information

SEO and Google Analytics. Tips for getting the most out of your website

SEO and Google Analytics. Tips for getting the most out of your website SEO and Google Analytics Tips for getting the most out of your website Katherine Grace Director, Industry Specialist Over 17 years owning & running businesses Author for the HIA magazine & Business Franchise

More information

Hotline 0800 068 5949

Hotline 0800 068 5949 Optimum M4230 Quick reference guide Description of functions Thermal printer paper compartment Hotline 0800 068 5949 Direct selection function keys Direct selection function keys Battery charge status

More information

MicroStrategy Desktop

MicroStrategy Desktop MicroStrategy Desktop Quick Start Guide MicroStrategy Desktop is designed to enable business professionals like you to explore data, simply and without needing direct support from IT. 1 Import data from

More information

A FRACTAL MARKET THEORY REVISITED THROUGH CHART ANALYSIS FOR A BETTER RISK/REWARD MANAGEMENT STRATEGY

A FRACTAL MARKET THEORY REVISITED THROUGH CHART ANALYSIS FOR A BETTER RISK/REWARD MANAGEMENT STRATEGY International Journal of Economics, Commerce and Management United Kingdom Vol. III, Issue 1, Jan 2015 http://ijecm.co.uk/ ISSN 2348 0386 A FRACTAL MARKET THEORY REVISITED THROUGH CHART ANALYSIS FOR A

More information

Spectrophotometry and the Beer-Lambert Law: An Important Analytical Technique in Chemistry

Spectrophotometry and the Beer-Lambert Law: An Important Analytical Technique in Chemistry Spectrophotometry and the Beer-Lambert Law: An Important Analytical Technique in Chemistry Jon H. Hardesty, PhD and Bassam Attili, PhD Collin College Department of Chemistry Introduction: In the last lab

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

Inside Blackboard Collaborate for Moderators

Inside Blackboard Collaborate for Moderators Inside Blackboard Collaborate for Moderators Entering a Blackboard Collaborate Web Conference 1. The first time you click on the name of the web conference you wish to enter, you will need to download

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

VisualCalc AdWords Dashboard Indicator Whitepaper Rev 3.2

VisualCalc AdWords Dashboard Indicator Whitepaper Rev 3.2 VisualCalc AdWords Dashboard Indicator Whitepaper Rev 3.2 873 Embarcadero Drive, Suite 3 El Dorado Hills, California 95762 916.939.2020 www.visualcalc.com Introduction The VisualCalc AdWords Dashboard

More information

Rochester Institute of Technology. Oracle Training: Preparing Journal Entries in the Oracle Applications

Rochester Institute of Technology. Oracle Training: Preparing Journal Entries in the Oracle Applications Rochester Institute of Technology Oracle Training: Preparing Journal Entries in the Oracle Applications 1 Table of Contents Introduction Lesson 1: Lesson 2: Lesson 3: Lesson 4: Lesson 5: Lesson 6: Logging

More information

SECTION 5: Finalizing Your Workbook

SECTION 5: Finalizing Your Workbook SECTION 5: Finalizing Your Workbook In this section you will learn how to: Protect a workbook Protect a sheet Protect Excel files Unlock cells Use the document inspector Use the compatibility checker Mark

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

Formulas, Functions and Charts

Formulas, Functions and Charts Formulas, Functions and Charts :: 167 8 Formulas, Functions and Charts 8.1 INTRODUCTION In this leson you can enter formula and functions and perform mathematical calcualtions. You will also be able to

More information

Software that writes Software Stochastic, Evolutionary, MultiRun Strategy Auto-Generation. TRADING SYSTEM LAB Product Description Version 1.

Software that writes Software Stochastic, Evolutionary, MultiRun Strategy Auto-Generation. TRADING SYSTEM LAB Product Description Version 1. Software that writes Software Stochastic, Evolutionary, MultiRun Strategy Auto-Generation TRADING SYSTEM LAB Product Description Version 1.1 08/08/10 Trading System Lab (TSL) will automatically generate

More information

Final Software Tools and Services for Traders

Final Software Tools and Services for Traders Final Software Tools and Services for Traders TPO and Volume Profile Chart for NinjaTrader Trial Period The software gives you a 7-day free evaluation period starting after loading and first running the

More information

CONVERSION GUIDE Financial Statement Files from CSA to Accounting CS

CONVERSION GUIDE Financial Statement Files from CSA to Accounting CS CONVERSION GUIDE Financial Statement Files from CSA to Accounting CS Introduction and conversion program overview... 1 Conversion considerations and recommendations... 1 Conversion procedures... 2 Data

More information

To launch the Microsoft Excel program, locate the Microsoft Excel icon, and double click.

To launch the Microsoft Excel program, locate the Microsoft Excel icon, and double click. EDIT202 Spreadsheet Lab Assignment Guidelines Getting Started 1. For this lab you will modify a sample spreadsheet file named Starter- Spreadsheet.xls which is available for download from the Spreadsheet

More information

Beer's Law: Colorimetry of Copper(II) Solutions

Beer's Law: Colorimetry of Copper(II) Solutions Exercise 11 Page 1 Illinois Central College CHEMISTRY 130 Name: Beer's Law: Colorimetry of Copper(II) Solutions Objectives In this experiment, we will use Beer's Law to determine the unknown concentrations

More information

Shimadzu UV-VIS User s Guide

Shimadzu UV-VIS User s Guide Shimadzu UV-VIS User s Guide 1) Push the F4 button on the UV-VIS instrument keypad. This will enable PC control. Push the F4 Button 2) Log into the UV-VIS software with your username and password. 3) After

More information

Graphing Calculator Workshops

Graphing Calculator Workshops Graphing Calculator Workshops For the TI-83/84 Classic Operating System & For the TI-84 New Operating System (MathPrint) LEARNING CENTER Overview Workshop I Learn the general layout of the calculator Graphing

More information

PC USER S GUIDE ECONOMIC DATA ST. LOUIS FED

PC USER S GUIDE ECONOMIC DATA ST. LOUIS FED FRED ADD-IN PC USER S GUIDE F OR EXCEL 2010 E C O N O M I C R E S E A R C H F E D E R A L R E S E R V E B A N K O F S T. L O U I S P. O. B O X 4 4 2 S A I N T L O U I S, M I S S O U R I, 6 3 1 6 6 R E

More information

A Robustness Simulation Method of Project Schedule based on the Monte Carlo Method

A Robustness Simulation Method of Project Schedule based on the Monte Carlo Method Send Orders for Reprints to reprints@benthamscience.ae 254 The Open Cybernetics & Systemics Journal, 2014, 8, 254-258 Open Access A Robustness Simulation Method of Project Schedule based on the Monte Carlo

More information

200 PIPS DAILY PROFIT

200 PIPS DAILY PROFIT 200 PIPS DAILY PROFIT USER GUIDE October 2014 http://www.200pipsdailyprofit.com DISCLAIMER Please be aware of the loss, risk, personal or otherwise consequences of the use and application of this book

More information

Table of contents. 1. About the platform 3. 2. MetaTrader 4 platform Installation 4. 3. Logging in 5 - Common log in problems 5

Table of contents. 1. About the platform 3. 2. MetaTrader 4 platform Installation 4. 3. Logging in 5 - Common log in problems 5 Table of contents 1. About the platform 3 2. MetaTrader 4 platform Installation 4 3. Logging in 5 - Common log in problems 5 4. How to change your password 6 5. User Interface and Customization 7 - Toolbars

More information

SYSTEMS OF EQUATIONS AND MATRICES WITH THE TI-89. by Joseph Collison

SYSTEMS OF EQUATIONS AND MATRICES WITH THE TI-89. by Joseph Collison SYSTEMS OF EQUATIONS AND MATRICES WITH THE TI-89 by Joseph Collison Copyright 2000 by Joseph Collison All rights reserved Reproduction or translation of any part of this work beyond that permitted by Sections

More information

Create a free CRM with Google Apps

Create a free CRM with Google Apps Create a free CRM with Google Apps By Richard Ribuffo Contents Introduction, pg. 2 Part One: Getting Started, pg. 3 Creating Folders, pg. 3 Clients, pg. 4 Part Two: Google Forms, pg. 6 Creating The Form,

More information

Overview and Instructions

Overview and Instructions AE Person Centered Care Tracking Tool April 30, 2013 Overview and Instructions Sheet-specific Instructions Welcome Instructions Common Qs & As ListNeighborhoods RecordInterviews NeighborhoodReport ResultsByPreference

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

Designing a Graphical User Interface

Designing a Graphical User Interface Designing a Graphical User Interface 1 Designing a Graphical User Interface James Hunter Michigan State University ECE 480 Design Team 6 5 April 2013 Summary The purpose of this application note is to

More information

Chapter 10. Key Ideas Correlation, Correlation Coefficient (r),

Chapter 10. Key Ideas Correlation, Correlation Coefficient (r), Chapter 0 Key Ideas Correlation, Correlation Coefficient (r), Section 0-: Overview We have already explored the basics of describing single variable data sets. However, when two quantitative variables

More information

Using Order Book Data

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

More information

Basic Graphing Functions for the TI-83 and TI-84

Basic Graphing Functions for the TI-83 and TI-84 Basic Graphing Functions for the TI-83 and TI-84 The primary benefits of the TI-83 and TI-84 are the abilities to graph functions and to identify properties those functions possess. The purpose of this

More information

Photoillustration: Harold A. Perry; photos: Jupiter Images

Photoillustration: Harold A. Perry; photos: Jupiter Images Photoillustration: Harold A. Perry; photos: Jupiter Images 40 December 2008 WIRING DIAGRAM COLOR- CODING: More Than Meets the Eye BY JORGE MENCHU One of your earliest childhood memories may be a remonstration

More information

Microsoft Dynamics NAV

Microsoft Dynamics NAV Microsoft Dynamics NAV Maximizing value through business insight Business Intelligence White Paper November 2011 The information contained in this document represents the current view of Microsoft Corporation

More information

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

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

More information

Tutorial for Tracker and Supporting Software By David Chandler

Tutorial for Tracker and Supporting Software By David Chandler Tutorial for Tracker and Supporting Software By David Chandler I use a number of free, open source programs to do video analysis. 1. Avidemux, to exerpt the video clip, read the video properties, and save

More information

FOREX RANGE BARS A TECHNICAL PAPER BY GORDON LANTZ VCI GROUP LTD

FOREX RANGE BARS A TECHNICAL PAPER BY GORDON LANTZ VCI GROUP LTD FOREX RANGE BARS A TECHNICAL PAPER BY GORDON LANTZ VCI GROUP LTD Copyright 2011, VCI Group Ltd, PO Box 1021, Riddle OR 97469 :: All Rights Reserved Page 1 It's all about noise. Noise is the enemy. Forex

More information

The Advanced Guide to Youtube Video SEO

The Advanced Guide to Youtube Video SEO The Advanced Guide to Youtube Video SEO Tips and Techniques Part 1 by: Video Optimize 1. Youtube Channel The difference between a Youtube Channel that s brand new versus one that is 1 year old is really

More information

CONTENT 1. 2. 5-8 9 5. 6. 7.

CONTENT 1. 2. 5-8 9 5. 6. 7. User Manual TM CONTENT 1. 2. 3. 4. 5. 6. 7. 8. 9. Introduction The Autochartist Interface Analysis Toolbar (A) Pattern Display (B) Search Pane (C) Results Pane (Completed Patterns) (D) Results Pane (Emerging

More information

YouTube SEO How-To Guide: Optimize, Socialize & Analyze Your YouTube Presence

YouTube SEO How-To Guide: Optimize, Socialize & Analyze Your YouTube Presence YouTube SEO How-To Guide: Optimize, Socialize & Analyze Your YouTube Presence How-To Optimize, Socialize & Analyze Your YouTube Presence FACT: YouTube has become the third most popular website in the world,

More information

Microsoft PowerPoint 2007

Microsoft PowerPoint 2007 Microsoft PowerPoint 2007 PowerPoint is currently the most common software used for making visual aids for presentations. It has been redesigned for the 2007 release with a much more user-friendly and

More information

Google Sites: Site Creation and Home Page Design

Google Sites: Site Creation and Home Page Design Google Sites: Site Creation and Home Page Design This is the second tutorial in the Google Sites series. You should already have your site set up. You should know its URL and your Google Sites Login and

More information

USB Floppy USB Floppy Disk Emulator

USB Floppy USB Floppy Disk Emulator USB Floppy USB Floppy Disk Emulator Manual ipcas GmbH Phone: +49 (0)9131/ 7677-0 Gundstraße 15 Fax: +49 (0)9131/ 7677-78 D-91056 Erlangen Internet: http://www.ipcas.de Germany Email: info@ipcas.de Contents

More information

Copyright 2014 Luxul. All rights reserved. All trademarks and registered trademarks are property of respective holders.

Copyright 2014 Luxul. All rights reserved. All trademarks and registered trademarks are property of respective holders. Copyright 2014 Luxul. All rights reserved. All trademarks and registered trademarks are property of respective holders. Network Installation Tips: Using Wi-Fi Signal Mapping Technology as a Sales Tool

More information

Macros in Word & Excel

Macros in Word & Excel Macros in Word & Excel Description: If you perform a task repeatedly in Word or Excel, you can automate the task by using a macro. A macro is a series of steps that is grouped together as a single step

More information

GYM PLANNER. User Guide. Copyright Powerzone. All Rights Reserved. Software & User Guide produced by Sharp Horizon. www.sharphorizon.com.

GYM PLANNER. User Guide. Copyright Powerzone. All Rights Reserved. Software & User Guide produced by Sharp Horizon. www.sharphorizon.com. GYM PLANNER User Guide Copyright Powerzone. All Rights Reserved. Software & User Guide produced by Sharp Horizon. www.sharphorizon.com. Installing the Software The Powerzone gym Planner is a piece of software

More information

Forex Success Formula. Presents. Secure Your Money. www.forexsuccessformula.com - 1 -

Forex Success Formula. Presents. Secure Your Money. www.forexsuccessformula.com - 1 - Forex Success Formula Presents Secure Your Money www.forexsuccessformula.com - 1 - Risk Disclosure Statement The contents of this e-book are for informational purposes only. No Part of this publication

More information

Microsoft Migrating to Word 2010 from Word 2003

Microsoft Migrating to Word 2010 from Word 2003 In This Guide Microsoft Word 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key parts of the new interface, discover free Word 2010 training,

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

Back Analysis of Material Properties

Back Analysis of Material Properties Back Analysis of Material Properties 23-1 Back Analysis of Material Properties This tutorial will demonstrate how to perform back analysis of material properties using sensitivity analysis or probabilistic

More information

After you complete the survey, compare what you saw on the survey to the actual questions listed below:

After you complete the survey, compare what you saw on the survey to the actual questions listed below: Creating a Basic Survey Using Qualtrics Clayton State University has purchased a campus license to Qualtrics. Both faculty and students can use Qualtrics to create surveys that contain many different types

More information

FrenzelSoft Stock Ticker

FrenzelSoft Stock Ticker FrenzelSoft Stock Ticker User Manual 1 Table of Contents 1 First Start... 5 2 Basic Elements... 6 3 Context Menu Elements... 10 3.1 Show/Hide... 10 3.2 Add Symbol... 10 3.3 Remove Symbol... 10 3.4 Remove...

More information

Dynamics CRM for Outlook Basics

Dynamics CRM for Outlook Basics Dynamics CRM for Outlook Basics Microsoft Dynamics CRM April, 2015 Contents Welcome to the CRM for Outlook Basics guide... 1 Meet CRM for Outlook.... 2 A new, but comfortably familiar face................................................................

More information