UNLEASH THE POWER OF SCRIPTING F A C T S H E E T AUTHOR DARREN HAWKINS AUGUST 2015

Size: px
Start display at page:

Download "UNLEASH THE POWER OF SCRIPTING F A C T S H E E T AUTHOR DARREN HAWKINS AUGUST 2015"

Transcription

1 UNLEASH THE POWER OF SCRIPTING F A C T S H E E T AUTHOR DARREN HAWKINS AUGUST 2015

2 Summary The ability to create your own custom formulas to scan or filter large sets of data can be a huge time-saver. The scripting language in Market Analyst can be used across the whole program, from the Scanning Manager to Watchlist Columns to Technical Alerts. Gaining an understanding of how to write your own scripts unleashes an enormous amount of flexibility and power. While scripting is an advanced topic - after all it can be daunting if you have never programmed anything before - this paper will serve as a foundation to give you the basic understanding of the theory and show how easy it is to create your own scripting formulas. For a complete list of features utilising the scripting language, please refer to the appendix at the end. The Script Editor No matter how you come to create or edit a script, you will be presented with the Script Manager. This editor has been designed to help you as you build your scripts. While you can create your own custom scripts, there are also nearly one hundred default formulas available based on popular indicators, such as Moving Averages, ADX, RSI, MACD (etc.). We ve created a number of default scripts for you. In the Script Editor window click on Saved Scripts and select the script you want to work with. No matter what script is used, we understand every user requires different settings, and these can easily be edited as required. For example, the default RSI Crosses Above formula will return a true/false result when the RSI(10) value crosses above 30: 2

3 To see and change the default properties, there s no need to learn any complicated syntax. Click in the brackets of the function, in this case RSI(), to change the required value and press Enter. In this example the default setting for RSI() is 10: Result Types It s important at this point to digress so that we understand the difference between a script that returns a boolean result (True/False) and one that returns a numerical value, and when we would use each. 3

4 True/False result only: Scanning Manager, BackTester, Signal Tester, Analysis Tile and Show Bar. Value only: Script Tool, Show Bar, Show Plot and Show View. True/False or Value: A column in a Watchlist. The appendix at the end of this paper shows examples for each of the features within Market Analyst that use scripting. Custom Scripting Formulas Editing the default formulas is a great way of learning the process and familiarising yourself with the Scripting Editor interface. What if you want to create your own formula based on an indicator that hasn t been used in a default example? This is where the power of the scripting formulas really shine and allow you to come up with almost any script you can imagine. In the Script Manager window, start typing the name of the indicator you wish to use. As you type, a list of matching functions, and functions that may be a close match, will appear in a hint. For example, to create a scan using the Relative Index Comparison indicator, type REL to see the list of functions containing those letters. The hint tells us to use RIC for that particular function: 4

5 Type RIC and hit Enter to add the function using the default values. You can then edit as required. As in the RSI example above, click in the brackets of the RIC() text and a window will open showing a list of properties that can be adjusted for that particular function. The following example will calculate the Relative Index Comparison between the chart symbol and the S&P500 index (SPX) normalised to January 1st, 2014: The normalisation date and comparison index has been manually selected from the pop-up window, which has automatically added the text to the formula - without having to remember any syntax! Note: if the above script formula was used in a Watchlist column, the result shown would just be a value as there is no condition: 5

6 In order to be used in a scan or backtest, a condition needs to be added. Because the RIC tool base value is 100, the complete formula to get a list of stocks that have outperformed the SPX since January 2014 would be: RIC(DATESEL=User Defined, START_DATE=01/01/2014, INDEX=SPX:WI) > 100 Similarly, to find those that have underperformed, the condition would be < 100. Saving Script Formulas When a script formula is created you have the option to save it for future use in other tools or features. To create a script, click on the New > Add Script button: As you name the script in the Script Name field it will update in the list on the left: If you choose not to save the script, then it will not appear in the list and will only be available in the tool/feature being used. 6

7 When the saved script is subsequently modified and the Apply button clicked, a warning message will pop up advising you that the change will be reflected in all other tools/features referencing the script. If you don t wish to overwrite, then click the Save Script As button and type the new name when prompted. Grouping your Script Formulas To make it easier to manage your saved scripts you can create groups for certain types of formulas (e.g. custom tools, watchlist columns or scans). By default, custom scripts will be added to the My Scripts folder. Click on the New button in the Script Manager to add groups. These can be expanded/collapsed using the + and buttons. Click and drag the scripts between group folders as needed. 7

8 Using the Template Buttons We understand not everyone is a programmer. The Script Manager also includes two template buttons to Add Variable and Add Output Plot to make it easier to create formulas. Clicking Add Output Plot opens a wizard where you can select the formula template required: To create a formula to scan where the closing price crosses above a 12 period exponential moving average, click the {function}{operator}{function} option to bring up the following: 8

9 Click on the first {function} field to see the list of functions available, type CLOSE and press enter. Next click on the {operator} field to select (ie CrossesAbove in this example). The last function is MA() for moving average, which can be clicked on to change the settings: Again, no need to know the syntax as the wizard will add the required text! Variables When formulas are long and repeated it can clutter and complicate the Script Editor window. To overcome this, functions can be assigned to a variable by clicking the Add Variable template button: 9

10 In this example a new tool will be created called Price Percentage Oscillator (PPO) - taking the percentage difference between two moving averages. Click New button in the Script Manager and give the script a name (e.g. PPO). Note that if the formula is to be used as an indicator, tick the box and whether it is to be applied to a new view on the chart (i.e. a panel below the price chart, such as volume or RSI) or same view as the price bars (such as Bollinger bands). In this case we want the tool in a new view beneath the chart. Click the Add Variable button. In the {function} field select MA() and change the settings to 12 period exponential. The var1 name can also be changed to anything you wish, such as MA1. Click the Add Variable button again and set the second moving average to 26 period exponential. To complete the script, add the formula to calculate the percentage using the variable names (ie MA1 and MA2). Note: the script cannot be applied unless the formula is valid, at which point the warning message will disappear and it will say that it is valid: 10

11 Advanced Formulas There are a number of other scripting shortcuts that make advanced formulas easier to compose: OFFSET This option allows for easy comparisons between bars. By default the offset is set to zero, meaning the last bar is to be used. This is represented by empty brackets after a function: CLOSE() for example is the most recent closing price, whereas CLOSE(1) is yesterday s close (or last week s if a weekly chart). Example: three consecutive higher closes: 11

12 (CLOSE(2)>CLOSE(3)) and (CLOSE(1)>CLOSE(2)) and (CLOSE()>CLOSE(1)) The OFFSET() function can also be used. The value of the 12EMA five days ago can be expressed as: OFFSET(MA(BARS=12, CALC=Close, STYLE=Exponential), OFFSET=5) Nesting functions Multiple functions can be nested inside another, such as volume within a moving average, to determine average volume. Here is a formula to show a True/False result for 20 day average volume above one million: MA(VOLUME(), BARS=20, CALC=Close) > Here the VOLUME function has been nested inside the moving average parentheses MA() and clicking on the MA text will bring up the wizard to select the properties: Note: You may be wondering why we used Close in the Moving Average script. Functions in Market Analyst can return either Open, High, Low, Close or just a Close. Every function puts the primary result data in Close and uses the other fields if required. This way we can easily apply functions to functions since we know we are always working with the Close. In our Moving Average script above, we are essentially saying Calculate a 20 period Moving Average on the Close field of the Volume function. 12

13 GETDATA When looking to write scripts to compare between different datasets, the GETDATA function is extremely useful. For example, to compare relative volume between Apple and the S&P500 index, the formula for the Show View tool on an Apple chart would be: VOLUME() / VOLUME(GETDATA(CODE=SPX:WI)) Again, clicking on the GETDATA text and the wizard makes it easy to select the comparison code and correct syntax: INDEX Following on from the GetData example above, the Index function is similar but the values returned will be for the code s primary country index: VOLUME() / VOLUME(INDEX()) For Show View on AAPL this formula will return the relative S&P500 volume. Note: this function will only work with a Bloomberg datafeed, otherwise you would use the GetData function above. DATAFIELD Many areas of Market Analyst have been optimised for use with a Bloomberg datafeed. Available with a Professional Services subscription, this option allows any data from Bloomberg such as market cap, P/E ratio, or shares outstanding to be 13

14 used in a script. Once the External Data Field has been imported from Bloomberg it will be available in the DataField function. Here is an example using Dividend Yield: With Bloomberg data it is also possible to nest a GetData and a DataField together. This formula will get the market cap (FIELD=CUR_MKT_CAP) value of the S&P500 index (GETDATA (CODE=SPX:BLMB): DATAFIELD(GETDATA(CODE=SPX:BLMB), FIELD=CUR_MKT_CAP) Currency conversions If you need to change the currency of a code, you can use the FX() script to do that too. This formula will return the S&P500 in Japanese Yen. FX(GETDATA(CODE=SPX:BLMB), CURRENCY=JPY) HIGHESTHIGH and LOWESTLOW These functions will look back over a defined period for the highest or lowest values of price or indicator value. To scan for codes with a close above the highest high over the previous 252 bars, or approximately 52 weeks: CLOSE() > (HIGHESTHIGH(HIGH(),BARS=252)) For the lowest RSI(14) value over the previous month (22 bars): LOWESTLOW(RSI(BARS=14), BARS=22) 14

15 BARSTRUE This function will count the number of bars that meet a specific criteria over a defined period. This example will show how many days out of the previous 20 where the RSI(14) was above 70: BARSTRUE(LOOKBACK=20, (RSI(BARS=14) > 70)) TIMESINCESIGNAL This function will count the number of bars since a particular technical signal occurred. When used in a Watchlist column, the following formula will count the number of days since the last higher 6 month high (approx. 130 bars in the HIGHESTHIGH function). TIMESINCESIGNAL(CLOSE()>HIGHESTHIGH(CLOSE(),BARS=130)) VALUEWHEN() Returns the value of indicator X when Y occurs. For example, to display the 20 period moving average value when the RSI last crossed below 70: ValueWhen(MA(BARS=20), RSI() CrossesBelow 70) Smart Operators As well as the standard operators (such as ==, >, <=, <>, etc) there are some in-built smart conditions designed to speed up formula creation. These include: Crosses, CrossesAbove and CrossesBelow IsUp and IsDown Turns, TurnsUp and TurnsDown All of these return a True/False result. Suppose you want to set an alert for a 34 period exponential moving average that changes from upward sloping to downward, the script would be: MA(BARS=34, STYLE=Exponential, CALC=Close) TurnsDown 15

16 Again, you won t need to remember the syntax for the text, as this appears automatically in the formula when clicking on the function properties in the wizard. Conditional Operators IF If you are familiar with Excel, this condition is based on the same principle. It introduces decision-making into the formula. If the condition is true, then one result will be given. If it is false, then an alternative will be given. IF (CLOSE()>MA(BARS=50),CLOSE(), MA(BARS=50)) The above formula will return the closing price if it is higher than the 20 day moving average, or the moving average if it is lower. The following nested IF statement will return a value between 1 and 4 depending on the slope of the 50 and 13EMA: MA1 = MA(BARS=50, STYLE=Exponential, CALC=Close); MA2 = MA(BARS=13, STYLE=Exponential, CALC=Close); IF(MA1 IsUp, IF(MA2 IsUp, 1, 2), IF(MA2 IsUp, 3, 4)) 16

17 SWITCH The primary use of the Switch function would be with oscillators, however it can be used in any situation where you may wish to set an upper value target and a different lower value target as true/false flags. In the following example, the chart of XJO displayed with a Show View tool applied based on RSI, the script has been set to: SWITCH(RSI(BARS=10)>75, RSI(BARS=10)<25) The green areas of the Show View tool begin where the RSI is greater than 75, and remains until the value is less than 25. Incorporating Timeframes You may have noticed in the above screenshots the Timeframe option in the script pop-up window. The Default setting will depend on the chart and feature the formula is being used with. For example, when used in a Watchlist column the calculation is based on daily values. By changing this criteria to Weekly, the column will be based on weekly values. This example shows a True/False result depending 17

18 on whether both the daily and weekly Brown Derivative Oscillator are higher than the previous period or not: Click on the DROSC() text and change the Timeframe to Week: Another example - using the Show View tool - places a panel below the price chart displaying the results of the formula. Here s a weekly MACD below a daily chart using MACD(WEEK(), BAR1=12, BAR2=26, OSC=9) 18

19 Summary I hope this paper helps you understand the power available to you with Market Analyst scripting. The following Appendix gives an example of the features in Market Analyst that utilise scripting. But the best way to get started with your own scripts is to just give it a go. I would always recommend using either the Show Plot or Show View tool and starting from there. Our support staff are available almost 24 hours a day around the world. If you need any assistance, let us know. We are happy to help. 19

20 Appendix Below is an alphabetical list of the tools and features that utilise the scripting language. If any are of particular interest, contact us for more detailed information. Alerts Technical Alerts can be set for a code that will be triggered when the condition is met. For example when the 12EMA crosses above the 34EMA on the FTSE: Analysis Tiles Accessed as a standard tool, these can be placed on the chart to show true (green) and false (red) results of any script. 20

21 BackTester Use scripts to define simple or complex entry and exit conditions and compare your results against a benchmark. 21

22 Chart and Page Headers Professional Services clients have the ability to add chart headers containing data calculated from script formulas: Custom Colour Bar Schemes Set your own rules on how to colour bars & candles. Market Intelligence Column Chart View the results of a script for multiple equities in a portfolio. 22

23 Market Breadth Create your own custom Market Breadth measure on a script result, such as the % of stocks in the S&P500 with a 34EMA sloping up. 23

24 Relative Rotation Graph Bubble Size Add a new dimension to RRGs by entering a script in the Size Script field. 24

25 Scanning Manager Find equities matching your criteria by using scripts. Scanning also allows multiple scripts to be used together. 25

26 Scatter Plot and 3D Charts Full three dimensional scatter plot driven completely by scripts. 26

27 Script Tool Create your own tools in Market Analyst using scripts. The tools will be available to be used like any of the standard Market Analyst tools and indicators. Select Script Tool from the New menu. 27

28 Show Bar Show the result of any True/False script on your chart. Signal Tester Create formulas to test historical outcomes on stocks. For example, the average performance of IBM over the course of one year after the price crossed the weekly 50 period moving average: 28

29 Watchlist Columns View your whole portfolio and in real-time scan to see which equities are passing the criteria you specify. Equities can also be grouped and sorted based on these custom script columns. 29

A Tutorial: The Basics of Using EDS

A Tutorial: The Basics of Using EDS Chapter II. A Tutorial: The Basics of Using EDS In This Chapter How to develop and test your own screening strategies with EDS 516 Summary of how to use EDS 524 EDS: Chapter II 515 How to develop and test

More information

RotationPro USER MANUAL

RotationPro USER MANUAL RotationPro USER MANUAL CONTENTS PAGE 2 1. Getting Started 2. Managing Lists 3. Instruction Videos 4. System Backtests 5. Contacts 1.0 Overview 1.1.0 Basic Purpose 1.1.1 Top Toolbar 1.1.2 Maps 1&2 1.1.3

More information

Using. Research Wizard. Version 4.0. Copyright 2001, Zacks Investment Research, Inc.,

Using. Research Wizard. Version 4.0. Copyright 2001, Zacks Investment Research, Inc., Using Research Wizard Version 4.0 Copyright 2001, Zacks Investment Research, Inc., Contents Introduction 1 Research Wizard 4.0 Overview...1 Using Research Wizard...1 Guided Tour 2 Getting Started in Research

More information

KBC Securities Trader

KBC Securities Trader KBC Securities Trader Welcome! This guide introduces you to the main functionality and possibilities of KBC Securities Trader. For more detailed information on each window, press F1 for Help or right-click

More information

Tutorial 37 Data Mining using ShareScript Crosses

Tutorial 37 Data Mining using ShareScript Crosses 1 of 7 06/07/2011 16:15 Tutorial 37 Data Mining using ShareScript Crosses In ShareScope Plus and ShareScope Pro you can now Data Mine for a variety of technical indicator crosses more easily by using the

More information

SpiffyCharts 2.8 Quick-Start. Technical Analysis for Stock and Commodity Traders

SpiffyCharts 2.8 Quick-Start. Technical Analysis for Stock and Commodity Traders SpiffyCharts 2.8 Quick-Start Technical Analysis for Stock and Commodity Traders 1 SpiffyCharts and the SpiffyCharts Manual are copyright, 2000-2017, all rights reserved. Warranty There is no warranty,

More information

EXCEL BASICS: MICROSOFT OFFICE 2007

EXCEL BASICS: MICROSOFT OFFICE 2007 EXCEL BASICS: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

How to Download Data from the Bloomberg Terminal

How to Download Data from the Bloomberg Terminal How to Download Data from the Bloomberg Terminal Author: Chengbo Fu Department of Accounting and Finance This tutorial demonstrates how to download data from the Bloomberg terminal. It consists of two

More information

Perfect Analysis A User Guide

Perfect Analysis A User Guide Perfect Analysis A User Guide COVERAGE Perfect Analysis is a financial analysis, reporting and charting service providing data on over 120,000 globally listed companies. The database provides historic

More information

Using Microsoft Excel

Using Microsoft Excel About Excel Using Microsoft Excel What is a Spreadsheet? Microsoft Excel is a program that s used for creating spreadsheets. So what is a spreadsheet? Before personal computers were common, spreadsheet

More information

Getting Started with AgriCharts Professional

Getting Started with AgriCharts Professional Getting Started with AgriCharts Professional Last Updated: 12/20/2010 Welcome to AgriCharts Professional! Professional is a full-featured quote, chart and analysis software application that you download

More information

EXCEL BASICS: MICROSOFT OFFICE 2010

EXCEL BASICS: MICROSOFT OFFICE 2010 EXCEL BASICS: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

What s New in BullCharts. Version BullCharts staff

What s New in BullCharts. Version BullCharts staff What s New in BullCharts www.bullcharts.com.au Version 4.3 Welcome to the latest revisions to Australia's BullCharts charting software. This version (4.3) runs on: Windows 7, Windows 8 (both 32-bit and

More information

Eloqua Insight Intro Analyzer User Guide

Eloqua Insight Intro Analyzer User Guide Eloqua Insight Intro Analyzer User Guide Table of Contents About the Course Materials... 4 Introduction to Eloqua Insight for Analyzer Users... 13 Introduction to Eloqua Insight... 13 Eloqua Insight Home

More information

FactSet Quick Start Guide

FactSet Quick Start Guide FactSet Quick Start Guide Table of Contents FactSet Quick Start Guide... 1 FactSet Quick Start Guide... 3 Getting Started... 3 Inserting Components in Your Workspace... 4 Searching with FactSet... 5 Market

More information

Intermediate Excel 2003

Intermediate Excel 2003 Intermediate Excel 2003 Introduction The aim of this document is to introduce some techniques for manipulating data within Excel, including sorting, filtering and how to customise the charts you create.

More information

Introduction to Eikon Excel

Introduction to Eikon Excel Document History Version Date Authors Changes 1. 15 July 2016 Chua Rui Ting Vincent Chia First Issue for Eikon version 4.x Contents Introduction to Eikon Excel... 1 Document History... 2 1. Basics to Eikon

More information

esignal Formula Script (EFS) Tutorial Series

esignal Formula Script (EFS) Tutorial Series esignal Formula Script (EFS) Tutorial Series INTRODUCTORY TUTORIAL 3 Introduction to premain() and main() Summary: This tutorial introduces the specific purpose and usage of the premain() and main() user-defined

More information

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Table of Contents Introduction!... 1 Part 1: Entering Data!... 2 1.a: Typing!... 2 1.b: Editing

More information

Lastly, in case you don t already know this, and don t have Excel on your computers, you can get it for free through IT s website under software.

Lastly, in case you don t already know this, and don t have Excel on your computers, you can get it for free through IT s website under software. Welcome to Basic Excel, presented by STEM Gateway as part of the Essential Academic Skills Enhancement, or EASE, workshop series. Before we begin, I want to make sure we are clear that this is by no means

More information

Microsoft Excel 2007

Microsoft Excel 2007 Microsoft Excel 2007 1 Excel is Microsoft s Spreadsheet program. Spreadsheets are often used as a method of displaying and manipulating groups of data in an effective manner. It was originally created

More information

Designed by Jason Wagner, Course Web Programmer, Office of e-learning NOTE ABOUT CELL REFERENCES IN THIS DOCUMENT... 1

Designed by Jason Wagner, Course Web Programmer, Office of e-learning NOTE ABOUT CELL REFERENCES IN THIS DOCUMENT... 1 Excel Essentials Designed by Jason Wagner, Course Web Programmer, Office of e-learning NOTE ABOUT CELL REFERENCES IN THIS DOCUMENT... 1 FREQUENTLY USED KEYBOARD SHORTCUTS... 1 FORMATTING CELLS WITH PRESET

More information

DOWNLOAD PDF MICROSOFT EXCEL ALL FORMULAS LIST WITH EXAMPLES

DOWNLOAD PDF MICROSOFT EXCEL ALL FORMULAS LIST WITH EXAMPLES Chapter 1 : Examples of commonly used formulas - Office Support A collection of useful Excel formulas for sums and counts, dates and times, text manipularion, conditional formatting, percentages, Excel

More information

Learning Worksheet Fundamentals

Learning Worksheet Fundamentals 1.1 LESSON 1 Learning Worksheet Fundamentals After completing this lesson, you will be able to: Create a workbook. Create a workbook from a template. Understand Microsoft Excel window elements. Select

More information

Getting Started with BarchartX

Getting Started with BarchartX Getting Started with BarchartX April 2007 Getting Started with BarchartX I ve signed up for BarchartX (or, signed up for a free trial). Now what? Within minutes, you will receive an email from Barchart

More information

GOOGLE APPS. If you have difficulty using this program, please contact IT Personnel by phone at

GOOGLE APPS. If you have difficulty using this program, please contact IT Personnel by phone at : GOOGLE APPS Application: Usage: Program Link: Contact: is an electronic collaboration tool. As needed by any staff member http://www.google.com or http://drive.google.com If you have difficulty using

More information

SUM - This says to add together cells F28 through F35. Notice that it will show your result is

SUM - This says to add together cells F28 through F35. Notice that it will show your result is COUNTA - The COUNTA function will examine a set of cells and tell you how many cells are not empty. In this example, Excel analyzed 19 cells and found that only 18 were not empty. COUNTBLANK - The COUNTBLANK

More information

Advisor Workstation Training Manual: Working in the Research Module

Advisor Workstation Training Manual: Working in the Research Module Advisor Workstation Training Manual: Working in the Research Module Overview of the Research module - - - - - - - - - - - - - - - - 1 What you will learn in this section - - - - - - - - - - - - - - - -

More information

HOW TO EXPORT BUYER NAMES & ADDRESSES FROM PAYPAL TO A CSV FILE

HOW TO EXPORT BUYER NAMES & ADDRESSES FROM PAYPAL TO A CSV FILE HOW TO EXPORT BUYER NAMES & ADDRESSES FROM PAYPAL TO A CSV FILE If your buyers use PayPal to pay for their purchases, you can quickly export all names and addresses to a type of spreadsheet known as a

More information

Pivots and Queries Intro

Pivots and Queries Intro Workshop: Pivots and Queries Intro An overview of the Pivot, Query and Alert functions in Multiview as a refresher for the experienced or new user, we will go over how to format an inquiry screen, create

More information

Organizing your Outlook Inbox

Organizing your Outlook Inbox Organizing your Outlook Inbox Tip 1: Filing system Tip 2: Create and name folders Tip 3: Folder structures Tip 4: Automatically organizing incoming emails into folders Tip 5: Using Colors Tip 6: Using

More information

Microsoft Excel 2007

Microsoft Excel 2007 Learning computers is Show ezy Microsoft Excel 2007 301 Excel screen, toolbars, views, sheets, and uses for Excel 2005-8 Steve Slisar 2005-8 COPYRIGHT: The copyright for this publication is owned by Steve

More information

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 GETTING STARTED PAGE 02 Prerequisites What You Will Learn MORE TASKS IN MICROSOFT EXCEL PAGE 03 Cutting, Copying, and Pasting Data Basic Formulas Filling Data

More information

Rev. C 11/09/2010 Downers Grove Public Library Page 1 of 41

Rev. C 11/09/2010 Downers Grove Public Library Page 1 of 41 Table of Contents Objectives... 3 Introduction... 3 Excel Ribbon Components... 3 Office Button... 4 Quick Access Toolbar... 5 Excel Worksheet Components... 8 Navigating Through a Worksheet... 8 Making

More information

Excel Basics Fall 2016

Excel Basics Fall 2016 If you have never worked with Excel, it can be a little confusing at first. When you open Excel, you are faced with various toolbars and menus and a big, empty grid. So what do you do with it? The great

More information

Adaptable Blotter.JS User Guide

Adaptable Blotter.JS User Guide Adaptable Tools Support Team (support@adaptabletools.com) Supporting Product Version 1.1 June 2017 Copyright 2017 Adaptable Tools Table of Contents Getting Started... 5 How it Works... 5 Supported Grids...

More information

Users and roles. Contents

Users and roles. Contents Users and roles Help bits Contents Overview... 3 Users... 4 Operation... 5 Users tab... 6 Creating a new user... 9 Role tab... 10 Editing a role... 11 Creating a new role... 11 Role deletion... 12 Privacy

More information

Working with Data and Charts

Working with Data and Charts PART 9 Working with Data and Charts In Excel, a formula calculates a value based on the values in other cells of the workbook. Excel displays the result of a formula in a cell as a numeric value. A function

More information

1. Managing Information in Table

1. Managing Information in Table 1. Managing Information in Table Spreadsheets are great for making lists (such as phone lists, client lists). The researchers discovered that not only was list management the number one spreadsheet activity,

More information

Lesson 4: Introduction to the Excel Spreadsheet 121

Lesson 4: Introduction to the Excel Spreadsheet 121 Lesson 4: Introduction to the Excel Spreadsheet 121 In the Window options section, put a check mark in the box next to Formulas, and click OK This will display all the formulas in your spreadsheet. Excel

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 THE BASICS PAGE 02! What is Microsoft Excel?! Important Microsoft Excel Terms! Opening Microsoft Excel 2010! The Title Bar! Page View, Zoom, and Sheets MENUS...PAGE

More information

Excel Conditional Formatting (Mac)

Excel Conditional Formatting (Mac) [Type here] Excel Conditional Formatting (Mac) Using colour to make data analysis easier Excel conditional formatting automatically formats cells in your worksheet if specified criteria are met, giving

More information

CONTENTS INTRODUCTION... 3 ACCESSING AND MODIFYING FLEX SAMPLES... 4 CREATE AND POPULATE A NEW FLEX DOCUMENT... 6

CONTENTS INTRODUCTION... 3 ACCESSING AND MODIFYING FLEX SAMPLES... 4 CREATE AND POPULATE A NEW FLEX DOCUMENT... 6 CONTENTS INTRODUCTION... 3 ACCESSING AND MODIFYING FLEX SAMPLES... 4 CREATE AND POPULATE A NEW FLEX DOCUMENT... 6 INSERTING ITEMS IN A FLEX DOCUMENT FROM CONTENT EXPLORER... 9 CREATE A QUOTE LIST IN A

More information

Excel 2016: Part 2 Functions/Formulas/Charts

Excel 2016: Part 2 Functions/Formulas/Charts Excel 2016: Part 2 Functions/Formulas/Charts Updated: March 2018 Copy cost: $1.30 Getting Started This class requires a basic understanding of Microsoft Excel skills. Please take our introductory class,

More information

Contents All rights reserved.

Contents All rights reserved. Contents Essential #1: Expert Advisors Background Knowledge... 2 Essential #2: The Tick... 3 Essential #3: Variables and Data Types... 4 Essential #4: Built-in MQL Variables... 5 Essential #5: Functions...

More information

CFD-FX Marketmaker v5.0 Software User Guide. 16 th February 2004 v5.32

CFD-FX Marketmaker v5.0 Software User Guide. 16 th February 2004 v5.32 CFD-FX Marketmaker v5.0 Software User Guide 16 th February 2004 v5.32 Contents Page Introduction...4 Installing CFD-FX Marketmaker...4 Firewalls... 4 Install from the CD-ROM... 4 Install from the Internet...

More information

2015 Vanderbilt University

2015 Vanderbilt University Excel Supplement 2015 Vanderbilt University Introduction This guide describes how to perform some basic data manipulation tasks in Microsoft Excel. Excel is spreadsheet software that is used to store information

More information

When you pass Exam : Access 2010, you complete the requirements for the Microsoft Office Specialist (MOS) - Access 2010 certification.

When you pass Exam : Access 2010, you complete the requirements for the Microsoft Office Specialist (MOS) - Access 2010 certification. Appendix 1 Microsoft Office Specialist: Access Certification Introduction The candidates for Microsoft Office Specialist certification should have core-level knowledge of Microsoft Office Access 2010.

More information

The QuickStudy Guide for Zoho CRM

The QuickStudy Guide for Zoho CRM The QuickStudy Guide for Zoho CRM Susan Clark Cornerstone Solutions Inc. Houston The QuickStudy Guide for Zoho CRM Using Zoho Everyday How Did Quick Get Included in the Book Name? Using This QuickStudy

More information

Training Guide. Fees and Invoicing. April 2011

Training Guide. Fees and Invoicing. April 2011 Training Guide Fees and Invoicing April 2011 *These accreditations belong to Avelo FS Limited **This accreditation belongs to Avelo FS Limited and Avelo Portal Limited Adviser Office Workbooks Designed

More information

Excel 2010: Getting Started with Excel

Excel 2010: Getting Started with Excel Excel 2010: Getting Started with Excel Excel 2010 Getting Started with Excel Introduction Page 1 Excel is a spreadsheet program that allows you to store, organize, and analyze information. In this lesson,

More information

Chapter 2. Formulas, Functions, and Formatting

Chapter 2. Formulas, Functions, and Formatting Chapter 2 Formulas, Functions, and Formatting Syntax of List Functions Functions and formulas always start with an equal sign, = Colon means through : List inside of parentheses =AVERAGE(A1:A5) Name of

More information

Excel Expert Microsoft Excel 2010

Excel Expert Microsoft Excel 2010 Excel Expert Microsoft Excel 2010 Formulas & Functions Table of Contents Excel 2010 Formulas & Functions... 2 o Formula Basics... 2 o Order of Operation... 2 Conditional Formatting... 2 Cell Styles...

More information

Formulas and Functions

Formulas and Functions Conventions used in this document: Keyboard keys that must be pressed will be shown as Enter or Ctrl. Controls to be activated with the mouse will be shown as Start button > Settings > System > About.

More information

Spreadsheet definition: Starting a New Excel Worksheet: Navigating Through an Excel Worksheet

Spreadsheet definition: Starting a New Excel Worksheet: Navigating Through an Excel Worksheet Copyright 1 99 Spreadsheet definition: A spreadsheet stores and manipulates data that lends itself to being stored in a table type format (e.g. Accounts, Science Experiments, Mathematical Trends, Statistics,

More information

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Basic Topics: Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Review ribbon terminology such as tabs, groups and commands Navigate a worksheet, workbook, and multiple workbooks Prepare

More information

How to use the Sales Based Availability Dashboard

How to use the Sales Based Availability Dashboard How to use the Sales Based Availability Dashboard Supplier Guide Sept 2017 v1 1 Contents What is Sales Based Availability and why is it important?... 3 How is Sales Based Availability calculated and how

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Introduction This handout briefly outlines most of the basic uses and functions of Excel that we will be using in this course. Although Excel may be used for performing statistical

More information

Power BI 1 - Create a dashboard on powerbi.com... 1 Power BI 2 - Model Data with the Power BI Desktop... 1

Power BI 1 - Create a dashboard on powerbi.com... 1 Power BI 2 - Model Data with the Power BI Desktop... 1 Our course outlines are 1 and 2 hour sessions (all courses 1 hour unless stated) that are designed to be delivered presentation style with an instructor guiding attendees through scenario based examples

More information

CME E-quotes Wireless Application for Android Welcome

CME E-quotes Wireless Application for Android Welcome CME E-quotes Wireless Application for Android Welcome This guide will familiarize you with the application, a powerful trading tool developed for your Android. Table of Contents What is this application?

More information

Excel Basics: Working with Spreadsheets

Excel Basics: Working with Spreadsheets Excel Basics: Working with Spreadsheets E 890 / 1 Unravel the Mysteries of Cells, Rows, Ranges, Formulas and More Spreadsheets are all about numbers: they help us keep track of figures and make calculations.

More information

Guide for Transitioning From Fixed To Flexible Scenario Format

Guide for Transitioning From Fixed To Flexible Scenario Format Guide for Transitioning From Fixed To Flexible Scenario Format Updated December 23 2016 GGY AXIS 5001 Yonge Street Suite 1300 Toronto, ON M2N 6P6 Phone: 416-250-6777 Toll free: 1-877-GGY-AXIS Fax: 416-250-6776

More information

Chart Winner (Version 1.01)

Chart Winner (Version 1.01) Chart Winner (Version 1.01) User Manual (v 1.01) Presented by AASTOCKS.com Limited AASTOCKS.com LIMITED A TOM group company Unit 5711, 57/F, The Center, 99 Queen s Road Central, Hong Kong Service Hotline:

More information

Search, Save, and Graph

Search, Save, and Graph Search, Save, and Graph This manual introduces the concept of finding, importing and saving securities in Research Mode. Additionally, it will explain how Layout works so, so you can organize and view

More information

Frequently Asked Questions and other helpful information

Frequently Asked Questions and other helpful information Frequently Asked Questions and other helpful information FAQ How do I chart? To create a chart, left click on the Chart toolbar button in the upper left corner of your CQG screen. A chart appears. In the

More information

Quick Guide Copyright Bureau van Dijk 2010 Last updated September 2010

Quick Guide Copyright Bureau van Dijk 2010 Last updated September 2010 Quick Guide Copyright Bureau van Dijk 2010 Last updated September 2010 Table Of Contents 1.0. INTRODUCTION... 1 1.1. HOW IT HELP YOU... 1 1.2. COVERAGE... 2 1.3. SOFTWARE OVERVIEW... 2 1.4. SYSTEM REQUIREMENTS...

More information

Excel 2007 Fundamentals

Excel 2007 Fundamentals Excel 2007 Fundamentals Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on that information.

More information

HP StorageWorks Command View TL TapeAssure Analysis Template White Paper

HP StorageWorks Command View TL TapeAssure Analysis Template White Paper HP StorageWorks Command View TL TapeAssure Analysis Template White Paper Part Number: AD560-96083 1 st edition: November 2010 HP StorageWorks Command View TL TapeAssure Analysis Template The TapeAssure

More information

Visual Workflow Implementation Guide

Visual Workflow Implementation Guide Version 30.0: Spring 14 Visual Workflow Implementation Guide Note: Any unreleased services or features referenced in this or other press releases or public statements are not currently available and may

More information

1 Introduction to Using Excel Spreadsheets

1 Introduction to Using Excel Spreadsheets Survey of Math: Excel Spreadsheet Guide (for Excel 2007) Page 1 of 6 1 Introduction to Using Excel Spreadsheets This section of the guide is based on the file (a faux grade sheet created for messing with)

More information

VISUAL GUIDE to. RX Scripting. for Roulette Xtreme - System Designer 2.0. L J Howell UX Software Ver. 1.0

VISUAL GUIDE to. RX Scripting. for Roulette Xtreme - System Designer 2.0. L J Howell UX Software Ver. 1.0 VISUAL GUIDE to RX Scripting for Roulette Xtreme - System Designer 2.0 L J Howell UX Software 2009 Ver. 1.0 TABLE OF CONTENTS INTRODUCTION...ii What is this book about?... iii How to use this book... iii

More information

Unit 4 Agresso. Introduction to Desktop

Unit 4 Agresso. Introduction to Desktop Unit 4 Agresso Introduction to 5.7.1 Desktop Author S J Price June 2018 CONTENTS Installation - Agresso Desktop (formerly known as Smart Client or Back Office)... 3 For Users on a Supported (centrally

More information

Introduction to functions

Introduction to functions Introduction to functions This article introduces some basic ideas about functions in Teechart. It's an updated version of Teechart v6 tutorial document. TeeChart VCL : Working with Functions Contents

More information

LIGHTSPEED TRADING CUSTOMERS/TRADERS OPERATIONS GROUP LIGHTSPEED TRADER CHARTS DATE: 4/18/2017

LIGHTSPEED TRADING CUSTOMERS/TRADERS OPERATIONS GROUP LIGHTSPEED TRADER CHARTS DATE: 4/18/2017 TO: FROM: SUBJECT: LIGHTSPEED TRADING CUSTOMERS/TRADERS OPERATIONS GROUP LIGHTSPEED TRADER CHARTS DATE: 4/18/2017 Lightspeed Trader Charts: The Lightspeed Trader Charts are described in depth in this memo.

More information

Survey of Math: Excel Spreadsheet Guide (for Excel 2016) Page 1 of 9

Survey of Math: Excel Spreadsheet Guide (for Excel 2016) Page 1 of 9 Survey of Math: Excel Spreadsheet Guide (for Excel 2016) Page 1 of 9 Contents 1 Introduction to Using Excel Spreadsheets 2 1.1 A Serious Note About Data Security.................................... 2 1.2

More information

Mobile Computing Professor Pushpendra Singh Indraprastha Institute of Information Technology Delhi Java Basics Lecture 02

Mobile Computing Professor Pushpendra Singh Indraprastha Institute of Information Technology Delhi Java Basics Lecture 02 Mobile Computing Professor Pushpendra Singh Indraprastha Institute of Information Technology Delhi Java Basics Lecture 02 Hello, in this lecture we will learn about some fundamentals concepts of java.

More information

An Introduction to DLPAL

An Introduction to DLPAL An Introduction to DLPAL Deep Learning Price Action Lab Manual Introduction Deep Learning Price Action Lab (DLPAL) identifies strategies in historical price data that fulfill user-defined performance statistics

More information

XP: Backup Your Important Files for Safety

XP: Backup Your Important Files for Safety XP: Backup Your Important Files for Safety X 380 / 1 Protect Your Personal Files Against Accidental Loss with XP s Backup Wizard Your computer contains a great many important files, but when it comes to

More information

Meter Intelligence: Turning Your Meter Data Into Energy Management Information. Quick Guide for Users

Meter Intelligence: Turning Your Meter Data Into Energy Management Information. Quick Guide for Users Meter Intelligence: Turning Your Meter Data Into Energy Management Information Quick Guide for Users June 2007 Meter Intelligence Introduction Meter Intelligence is a web-based interval meter data analysis

More information

IP4 - Running reports

IP4 - Running reports To assist with tracking and monitoring HRIS recruitment and personnel, reports can be run from Discoverer Plus. This guide covers the following process steps: Logging in... 2 What s changed? Changed reference

More information

Advisor Workstation Quick Start Guide

Advisor Workstation Quick Start Guide SM Morningstar Advisor Workstation Morningstar Advisor Workstation provides financial advisors with tools for investment planning, portfolio analysis, security research, and sales presentations. This is

More information

CREATING DIMENSIONED METRICS AND REPORTS

CREATING DIMENSIONED METRICS AND REPORTS CREATING DIMENSIONED METRICS AND REPORTS Table of Contents Understanding Dimensioned Elements... 3 Use a Naming Template to Specify Dimensioned Elements Name Format... 4 Create a Dimensioned Element that

More information

Volatility Stops Indicator

Volatility Stops Indicator Enhanced Indicator for Tradestation Charts designed and programmed by Jim Cooper w2jc Volatility Stops Indicator Table of Contents Enhanced Indicator for Tradestation Charts... 1 Volatility Stops Indicator...

More information

ShareScript User Guide

ShareScript User Guide ShareScript User Guide 4 th Edition How to use this guide This guide to ShareScript comprises the following sections: Section 1 Section 2 Section 3 Section 4 Section 5 Section 6 Section 7 Section 8 Section

More information

Introduction to Microsoft Excel 2007

Introduction to Microsoft Excel 2007 Introduction to Microsoft Excel 2007 Microsoft Excel is a very powerful tool for you to use for numeric computations and analysis. Excel can also function as a simple database but that is another class.

More information

Step 1: Create a totals query to show the total cost price and total sale price of the wine for each supplier.

Step 1: Create a totals query to show the total cost price and total sale price of the wine for each supplier. Hands-On-2: Queries In D1 you used Select queries to extract required information from your database. You used these to list data that met certain criteria and also used totals queries (a special type

More information

QST Mobile Application for Android

QST Mobile Application for Android QST Mobile Application for Android Welcome This guide will familiarize you with the application, a powerful trading tool developed for your Android. Table of Contents What is this application? Logging

More information

R EIN V E N TIN G B U S I N E S S I L E M A. MARK5 Basic guide. - All rights reserved

R EIN V E N TIN G B U S I N E S S I L E M A. MARK5 Basic guide.   - All rights reserved R EIN V E N TIN G B U S I N E S S I L E M A MARK5 Basic guide 0.0 Welcome In this brief guide we will cover the basics of MARK5 such as starting up, understanding the MARK5 interface basics and sending

More information

January 19, 2017 HGSI Software Upgrade Notes HGSI V8 Build (replaces build 29019)

January 19, 2017 HGSI Software Upgrade Notes HGSI V8 Build (replaces build 29019) January 19, 2017 HGSI Software Upgrade Notes HGSI V8 Build 29471 (replaces build 29019) CHARTING - VIEWS / FILTERS / FEATURES New Chart Indicators: Moving Averages Least Squares Moving Average (LSQMA)

More information

2007, 2008 FileMaker, Inc. All rights reserved.

2007, 2008 FileMaker, Inc. All rights reserved. Bento User s Guide 2007, 2008 FileMaker, Inc. All rights reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker, the file folder logo, Bento and the Bento logo are either

More information

(Updated 29 Oct 2016)

(Updated 29 Oct 2016) (Updated 29 Oct 2016) 1 Class Maker 2016 Program Description Creating classes for the new school year is a time consuming task that teachers are asked to complete each year. Many schools offer their students

More information

Time & Technology Training Strategies & Secrets - Effective Management for Associated General Contractors of America

Time & Technology Training Strategies & Secrets - Effective  Management for Associated General Contractors of America Time & Technology Training Strategies & Secrets - Effective e-mail Management for Associated General Contractors of America Turner Time Management, LLC. www.turnertimemanagement.com Steve Turner 855-778-8463

More information

edofe Management Toolkit

edofe Management Toolkit edofe Management Toolkit A guide to effective edofe management for Directly Licensed Centres 1 2 Contents Section one: Setting up the correct infrastructure on edofe... 4 Creating a group... 4 Editing

More information

Table of Contents 1. DNBi Overview Define Fields Overview Edit Fields Create custom fields View All Fields...

Table of Contents 1. DNBi Overview Define Fields Overview Edit Fields Create custom fields View All Fields... Table of Contents 1. DNBi Overview... 3 2. Define Fields... 4 2.1 Overview..4 2.2 Edit Fields....5 2.3 Create custom fields..6 2.4 View All Fields...7 3. Build Scores... 8 3.1 Overview...8 3.2 View and

More information

Lecture-14 Lookup Functions

Lecture-14 Lookup Functions Lecture-14 Lookup Functions How do I write a formula to compute tax rates based on income? Given a product ID, how can I look up the product s price? Suppose that a product s price changes over time. I

More information

Morningstar Advisor Workstation SM Quick Start Guide

Morningstar Advisor Workstation SM Quick Start Guide Morningstar Advisor Workstation provides financial advisors with tools for security research, portfolio analysis, and sales presentations. This is designed to get you up and running quickly, taking you

More information

CIPHR Report Designer

CIPHR Report Designer CIPHR Report Designer [version 7.0.1] CIPHR Report Designer 1 October 2013 Table of Contents Introduction... 3 Example 1: Listing report using a Subset... 7 Example 2: Report in a specific Order (Sorting)...

More information

APPM 2460 Matlab Basics

APPM 2460 Matlab Basics APPM 2460 Matlab Basics 1 Introduction In this lab we ll get acquainted with the basics of Matlab. This will be review if you ve done any sort of programming before; the goal here is to get everyone on

More information

Microsoft Excel 2016 LEVEL 2

Microsoft Excel 2016 LEVEL 2 TECH TUTOR ONE-ON-ONE COMPUTER HELP COMPUTER CLASSES Microsoft Excel 2016 LEVEL 2 kcls.org/techtutor Microsoft Excel 2016 Level 2 Manual Rev 11/2017 instruction@kcls.org Microsoft Excel 2016 Level 2 Welcome

More information

IT2.weebly.com Applied ICT 9713

IT2.weebly.com Applied ICT 9713 Chapter 11 Database and charts You already know how to o define database record structures o enter data into a database o select subsets of data within a database o sort data within a database o produce

More information