Setting Up Your ThinkorSwim Charts for Beginners

Size: px
Start display at page:

Download "Setting Up Your ThinkorSwim Charts for Beginners"

Transcription

1 Setting Up Your ThinkorSwim Charts for Feb 10,2017 A beginner s guide to creating studies, chart settings, adding support/resistance levels and saving your workspace. When you open ThinkorSwim (TOS) to a chart for the first time it will look like this. This is the SPY s intraday chart. This is a customized intraday chart suited for my needs. I will walk you through how to personalize the most commonly used features of the TOS chart.

2 We will cover the beaker and the gear icon (both are circled below in orange, read left to right) and how to draw levels of support and resistance. Adding Studies The beaker icon is first and is called the Edit Studies and Strategies Window. This is where you add your Studies (technical indicators), Strategies (already programmed strategies TOS provides) and Sets (your saved Studies ).

3 The most commonly used technical indicators are the Previous Close (or r/g line - the line that indicates at what price the stock closed on the previous day closed), VWAP (volume weighted average price), EMA (exponential moving average), and SMA (simple moving average). Refer to the below screenshot for order of reference. First (1 st ), we type in the name of the strategies we want to add. When the one you want appears, double-click to add the study. Note: notice how the exponential moving averages (MovAvgExponential) are listed differently than the simple moving averages (SimpleMovingAvg). Note: the Previous Close or r/g line in TOS is not automatically included, you have to add it the code. We will review this in a bit. Second (2 nd ), we ll click the gear icon located to the right of the study (labeled 2nd) to customize the way it looks and the specifics of the duration. Third (3 rd ), you can either double-click and type in the duration/number of your average or you can use the +/- to get the desired duration of the technical indicator. Fourth (4 th ), here you can change the Style of the line that appears to dashed or dotted. You can also change the width of the line by choosing your desired Width. Finally, you can select Color to define the color you want your indicator to appear as. Fourth (5 th ), you hit ok to save the indicator.

4 All of the technical indicators differ in the ways that you can manipulate them and I ll review the VWAP (below) as it s one of the most commonly used technical indicators. First (1 st ),double-click on the VWAP indicator. Second (2 nd ), you will select the UpperBand tab. Third (3 rd ), you will uncheck all of the options in the box if you do NOT want the VWAP Upper Deviation Band. If you do, you can modify it as you would the moving averages: the Style, Width, Color, etc. Fourth (4 th ), you will select the LowerBand tab and uncheck the same boxes as mentioned in step 3.

5 Now let s talk about Previous Close or r/g line in TOS which, as stated earlier, is not already a technical indicator built into ThinkorSwim but one that we have to program in. First (1 st ), we should still be inside the studies window labeled, Edit Studies and Strategies. Second (2 nd ), we will select New in the lower righthand corner of the Studies window which will launch the New script: NewStudy0 window. Third (3 rd ), we will copy and paste the code (below in italicized font) provided into the thinkscript Editor box. Fourth (4 th ), you will rename your study, I have called mine PrevClose. Fourth (5 th ), select Ok and you have added your study. plot Data = close;input aggregationperiod = AggregationPeriod.DAY; input length = 1; input displace = -1; input showonlylastperiod = no; plot PrevDayClose; if showonlylastperiod and!isnan(close(period = aggregationperiod)[-1]) { PrevDayClose = Double.NaN; } else { PrevDayClose = Highest(close(period = aggregationperiod)[-displace], length); } PrevDayClose.SetDefaultColor(GetColor(9)); PrevDayClose.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);

6 Once we have finished adding all of our studies we have to save our study set or we ll have to constantly readd and customize the studies. We do this by right-clicking on the chart, then Studies, then Save study set. This window (below) will be prompted, this is where you will name and Save your study set.

7 Simple vs Exponential Moving Average The difference between a simple and an exponential moving average is that the simple moving average will take the duration of the range and average out each data point and weigh them evenly. Let us use the daily 9ema vs the 9sma. The 9 sma would simply add each day and divide by 9 whereas the 9ema will apply more weight to the most recent days. You can find a more in depth discussion between the differences by visiting Below is an example of the difference between the 9ema (yellow line) and the 9sma (red line). Customizing Chart Settings: The Gear Icon Now we re customizing the chart setting by clicking the Gear Icon. I will walk you through the most popular options. We ll begin with the Content section under the General tab (the defaulted page you will prompt after selecting the Gear Icon). We ll being with 4 th in the screenshot below, Studies: Show studies. Ensure the Show studies box is checked so that your studies appear on the chart. Fifth (5 th ), Display: Show Trades. If you are using TOS as your broker and would like your trades to appear when you execute an order, you will need to check the box lanbeled, Show trades. Now let us move to the Settings section. Sixtgh (6 th ), Snap drawings to: OHLC. Select OHLC in the drop down menu under Snap drawings to, the default is (none). Choosing this option ensures that your drawings snap to either the Open/High/Low/Close of the candle. This makes drawing levels of support, resistance and trendlines much easier. Seventh (7 th ), Synchronize: Drawings and Crosshairs position. Checking the Drawings box ensures that if you have multiple charts of the same symbol open, let s say for multiple timeframes, that the drawings will sync

8 to each window. It will sync with every new chart of that symbol that you open. The Crosshairs position causes the cursor to appear in the same place on every chart, making analysis easier. Eigth (8 th ), Time Zone. This is where you select which timezone you want the chart to be in. If you select eastern time, as I have below, than your charts will display the open at 9:30am, as it does on the east coast. Ninth (9 th ), Layout: Overlap volume. I always uncheck the defaulted Overlap volume box because I do not like the volume in the same window as my candlesticks, I like them below. Tenth (10 th ), My Tools: On each chart. I select this option to display my most frequently used tools to float above my chart for easy access. Now we ll move onto the 11 th step in the screenshot below by selecting the Appearance tab.

9 The Appearance Tab This is where we customize the way the chart looks visually, i.e., the candles and the volume bars. First (1 st ), Chart Mode. This is where you select the Chart type, the colors of the candles and whether you want them to be hollow or filled in. Second (2 nd ), Common. This is where you select the option for Volume bars: Color as symbol ticks. I like to have the volume bars appear the same colors as the color of the candles. If you do not select this option or care you can leave this to the defaulted blue color. Now select OK to save all of our changes.

10 Adding Levels of Support and Resistance You can add levels of support and resistance through two ways. You can right-click on the chart, Add a drawing, then select Price Level.

11 Or you can select on the Drawings in the toolbar located above your chart and then select Price Level. This will activate the drawing tool. Simply double click anywhere on the chart to draw a level. Note: to draw a trendline, just select Trendline which is listed above Price Level. If you want to personalize the level of support/resistance you have just drawn, right-click on the level and select Edit Properties.

12 You will have prompted the Properties box which allows us to personalize the way the levels display. In the first section (labeled 1 st in the screenshot below), you can Name the price level and select Show name: in order to have the designated name appear on the level. Select Show price: to designate whether you want the price of the level to appear on the level and whether you want it to display on the left or right. In the second section, here we can key in the exact value of the price level in case we were a little off when drawing it under Value:. In the third section, we can change the Color, Style, and Width. To make this customization the default of all of our support/resistance levels we select Save as default (4 th in the screenshot below), then OK.

13 Saving Our Workspace Lastly, we want to save the modifications we ve made to the chart, simliar to how we had to save our studies. We ll do this by saving our workspace. First, click the gear icon next to the x button at the top of the ThinkorSwim window. Second, we ll select Save Workspace as, and now we ll name and save our workspace. Your workspace encompasses the entire ThinkorSwim layout. I typically have charts open on 3 monitors and I ll save the workspace layout to ensure that when I start up my workstation I can open ThinkorSwim and the layout I have prepared for all 3 monitors is prepared and ready to go. There are more advanced studies, saving techniques and tools you can utilize in ThinkorSwim. For more information you can always check out ThinkorSwim s Leaning Center at:

Step by Step: Format a Research Paper GET READY. Before you begin these steps, be sure to launch Microsoft Word. Third line: History 101

Step by Step: Format a Research Paper GET READY. Before you begin these steps, be sure to launch Microsoft Word. Third line: History 101 Step by Step: Format a Research Paper GET READY. Before you begin these steps, be sure to launch Microsoft Word. 1. OPEN the First Ladies document from the lesson folder. The document is unformatted. 2.

More information

How to Build A Table of Authorities in Word * By: Morgan Otway

How to Build A Table of Authorities in Word * By: Morgan Otway How to Build A Table of Authorities in Word * By: Morgan Otway Overview: A Table of Authorities (TOA) is a list of all of the sources cited in a legal document that notes the page numbers on which each

More information

EndNote X6 Workshop Michigan State University Libraries

EndNote X6 Workshop Michigan State University Libraries EndNote X6 Workshop Michigan State University Libraries http://libguides.lib.msu.edu/endnote/ endnote@mail.lib.msu.edu Contents What is EndNote?... 2 Building an EndNote Library... 2 Starting EndNote...

More information

Configuration options allow the trader to select up to 12 different ratios, the color, style, width and label contents can be configured too.

Configuration options allow the trader to select up to 12 different ratios, the color, style, width and label contents can be configured too. Automatic Arbitrary Range Fibonacci Retracements Automatic Intraday Range Fibonacci Retracements Automatic Interday Range Fibonacci Retracements Automatic Monthly Range Fibonacci Retracements Automatic

More information

Exercise #1: Create and Revise a Smart Group

Exercise #1: Create and Revise a Smart Group EndNote X7 Advanced: Hands-On for CDPH Sheldon Margen Public Health Library, UC Berkeley Exercise #1: Create and Revise a Smart Group Objective: Learn how to create and revise Smart Groups to automate

More information

Automatic Intraday Range Fibonacci Retracements. The indicator adds support of tick and share charts. All documentation changes are highlighted.

Automatic Intraday Range Fibonacci Retracements. The indicator adds support of tick and share charts. All documentation changes are highlighted. Automatic Intraday Range Fibonacci Retracements Table of Contents New in Version 4...1 Overview...1 Fibonacci Sequence...2 Fibonacci Ratios...2 Getting Started...3 Quick Start...3 Indicator Output...4

More information

Lab experience 1: Introduction to LabView

Lab experience 1: Introduction to LabView Lab experience 1: Introduction to LabView LabView is software for the real-time acquisition, processing and visualization of measured data. A LabView program is called a Virtual Instrument (VI) because

More information

A BEGINNER'S GUIDE TO ENDNOTE ONLINE

A BEGINNER'S GUIDE TO ENDNOTE ONLINE A BEGINNER'S GUIDE TO ENDNOTE ONLINE EndNote Online is a free tool which can help you collect, share, and organise your references. This tutorial will teach you how to use EndNote Online by guiding you

More information

Mendeley Basics. Get Mendeley. Get Articles and Documents into Mendeley. Import Citations from a Website

Mendeley Basics. Get Mendeley. Get Articles and Documents into Mendeley. Import Citations from a Website Mendeley Basics Get Mendeley 1. Go to www.mendeley.com 2. Create an online account and download the software. Use your MIT email address to get extra storage with our institutional account. 3. Open Mendeley

More information

USING MEDIACAST FOR LIVE EVENTS THERE ARE THREE SEPARATE KEYS NEEDED TO ACCESS THE FRONT AND BACK OF THE VIDEO CART.

USING MEDIACAST FOR LIVE EVENTS THERE ARE THREE SEPARATE KEYS NEEDED TO ACCESS THE FRONT AND BACK OF THE VIDEO CART. USING MEDIACAST FOR LIVE EVENTS THERE ARE THREE SEPARATE KEYS NEEDED TO ACCESS THE FRONT AND BACK OF THE VIDEO CART. 1). Plug in the cart to a power source and a network plug-in drop that is in the sam

More information

NISON CANDLESTICKS -ADDON-

NISON CANDLESTICKS -ADDON- NISON CANDLESTICKS -ADDON- www.agenatrader.com/steve-nisons-candlesticks TABLE OF CONTENTS Brief description of NisonCandleSticks 3 Instructions for package installation 4 Contents of NisonCandleSticks

More information

PART 2: Linking Word with your EndNote Library 8 EndNote Referencing Styles 8 Choosing a Style 8 UOW Harvard Style

PART 2: Linking Word with your EndNote Library 8 EndNote Referencing Styles 8 Choosing a Style 8 UOW Harvard Style PART 1: Setting up your EndNote Library 2 Creating an EndNote Library 2 Compressing your EndNote Library 3 Entering References into an Endnote Library 3 Importing References into an EndNote Library 4 PDF

More information

Microsoft Office Word 2016 for Mac

Microsoft Office Word 2016 for Mac Microsoft Office Word 2016 for Mac Tools for Your Research Paper University Information Technology Services Learning Technologies, Training & Audiovisual Outreach Copyright 2016 KSU Division of University

More information

NOTICE: This document is for use only at UNSW. No copies can be made of this document without the permission of the authors.

NOTICE: This document is for use only at UNSW. No copies can be made of this document without the permission of the authors. Brüel & Kjær Pulse Primer University of New South Wales School of Mechanical and Manufacturing Engineering September 2005 Prepared by Michael Skeen and Geoff Lucas NOTICE: This document is for use only

More information

Introduction to EndNote Online

Introduction to EndNote Online Introduction to EndNote Online Creating an EndNote Online account Go to EndNote Online. Click on the Access EndNote Online button and, if prompted, enter your Warwick username and password to confirm you

More information

EndNote on Windows: Class Notes. EndNote Training

EndNote on Windows: Class Notes. EndNote Training EndNote on Windows: Class Notes EndNote Training EndNote on Windows: Class Notes Page 2 1 After the Class 1.1 The Little EndNote How-To Book The Little EndNote How-To Book is a reference ebook with detailed

More information

EndNote X7 Getting Started. (adapted with permission from Thompson 2006)

EndNote X7 Getting Started. (adapted with permission from Thompson 2006) EndNote X7 Getting Started (adapted with permission from Thompson 2006) August 2013 Content 1. Introduction... 3 1.1 Finding Your Way Around EndNote... 3 2. Creating & Adding Records To Your EndNote Library...

More information

EndNote X7 CWYW in Word 2008/2011 (Mac)

EndNote X7 CWYW in Word 2008/2011 (Mac) EndNote X7 CWYW in Word 2008/2011 (Mac) TSRI, 400- S helplib@scripps.edu 858-784- 8705 A. Adding citations in Word: 1. Use the Find Citations tool to search for and insert a reference from your library.

More information

There are three categories of unique transitions to choose from, all of which can be found on the Transitions tab:

There are three categories of unique transitions to choose from, all of which can be found on the Transitions tab: PowerPoint 2013 Applying Transitions Introduction If you've ever seen a PowerPoint presentation that had special effects between each slide, you've seen slide transitions. A transition can be as simple

More information

How to Insert Page Numbers in WORD

How to Insert Page Numbers in WORD How to Insert Page Numbers in WORD The front matter, from the Committee Page through the Abstract, must be numbered with lower case Roman numerals. The Title Page is page i but it is not numbered. A page

More information

UY Upper Years Ages 14 and above. MY+ Middle Years Plus Ages 12 and above. MY Middle Years Ages LY Lower Years Ages 5 8.

UY Upper Years Ages 14 and above. MY+ Middle Years Plus Ages 12 and above. MY Middle Years Ages LY Lower Years Ages 5 8. Name ATOS Book Levels (ZPD Range) UY Upper Years Ages 14 and above MY Middle Years Ages 9 13 LY Lower Years Ages 5 8 Interest Level (tick one) 18 17 16 15 14 13 12 11 10 9 8 7 6 5 MY+ Middle Years Plus

More information

myevnts SYNDICATION QUICK START GUIDE AUGUST 2013

myevnts SYNDICATION QUICK START GUIDE AUGUST 2013 myevnts SYNDICATION QUICK START GUIDE AUGUST 2013 myevnts myevnts is The Nielsen Company s names collection tool. Clients can use this web-based product to enter, maintain, and release program lineup information

More information

This handout will help you prepare a research paper in the APA 6th Edition format.

This handout will help you prepare a research paper in the APA 6th Edition format. Easy APA Formatting Guide- Word 2010/2013 This handout will help you prepare a research paper in the APA 6th Edition format. FONT The font for APA is Times New Roman, with 12-point font size. MARGINS APA

More information

Thieme Dissector Manual

Thieme Dissector Manual Thieme Dissector Manual Contents About the Thieme Dissector Important Notes Overview Organizing and Editing Content Getting Started Manage Content Page Editing Text in Editing Mode Notes on Images Notes

More information

Class Notes for Cite While You Write Basics. EndNote Training

Class Notes for Cite While You Write Basics. EndNote Training Class Notes for Cite While You Write Basics EndNote Training EndNote X8 Class Notes for Cite While You Write Basics 1 January 3, 2017 Your EndNote data, both on the desktop and online, can be used in Microsoft

More information

02 MLA Manuscript Format: The Humanities Standard

02 MLA Manuscript Format: The Humanities Standard 02 MLA Manuscript Format: The Humanities Standard Writing in the Humanities in disciplines such as English, literary studies, philosophy, cultural studies, foreign language studies, and other related subjects

More information

EndNote Web Getting Started

EndNote Web Getting Started EndNote Web Getting Started August 2013 1 Table of Contents Page What is Endnote Web? 3 Registering for Endnote Web 3 1.1. Registering through Endnote X7 3 1.2. Registering through Web of Knowledge 3 1.3.

More information

After Effects Compositing Basics

After Effects Compositing Basics This tutorial is a continuation of the VIllus Capillary tutorial where you went through the basics of creating a Maya scene from A-to-Z. You re now ready to stitch together a final movie from the individual

More information

Health Sciences Library System University of Pittsburgh. Instructors Andrea Ketchum, MS, MLIS / Patricia Weiss, MLIS /

Health Sciences Library System University of Pittsburgh. Instructors Andrea Ketchum, MS, MLIS / Patricia Weiss, MLIS / E n d N o t e X 7 B a s i c s Health Sciences Library System University of Pittsburgh Instructors Andrea Ketchum, MS, MLIS / ketchum@pitt.edu Patricia Weiss, MLIS / pwf@pitt.edu Health Sciences Library

More information

The DataView PowerPad III Control Panel

The DataView PowerPad III Control Panel Setting Up a Recording Session in the DataView PowerPad III Control Panel By Mike Van Dunk The DataView PowerPad III Control Panel is designed for working with AEMC PowerPad III Power Quality Analyzers,

More information

INTRODUCTION TO ENDNOTE. NTNU University Library, Medicine and Health Library January 2017

INTRODUCTION TO ENDNOTE. NTNU University Library, Medicine and Health Library January 2017 INTRODUCTION TO ENDNOTE X8 NTNU University Library, Medicine and Health Library January 2017 CONTENTS About EndNote... 4 Obtaining and Installing EndNote... 4 Guides... 4 Creating a New Library... 5 Making

More information

Linkage 3.6. User s Guide

Linkage 3.6. User s Guide Linkage 3.6 User s Guide David Rector Friday, December 01, 2017 Table of Contents Table of Contents... 2 Release Notes (Recently New and Changed Stuff)... 3 Installation... 3 Running the Linkage Program...

More information

EndNote Online. Getting Started Guide (Windows)

EndNote Online. Getting Started Guide (Windows) EndNote Online Getting Started Guide (Windows) Volda University College, 2017 Table of Contents Registering and creating an account... 2 Downloading and installing the Cite While You Write EndNote Plug-In

More information

EndNote X7 Reference Management Software The Complete Reference Solution

EndNote X7 Reference Management Software The Complete Reference Solution EndNote X7 Reference Management Software The Complete Reference Solution Dr. Abbas B. Qadir Salihi University of Salahaddin, College of Science, Biology Department. 1 EndNote is a piece of computer software,

More information

Formatting Dissertations or Theses for UMass Amherst with MacWord 2008

Formatting Dissertations or Theses for UMass Amherst with MacWord 2008 January 2015 Formatting Dissertations or Theses for UMass Amherst with MacWord 2008 Getting started make your life easy (or easier at least) 1. Read the Graduate School s Guidelines and follow their rules.

More information

Chapter 4 Working with Bands

Chapter 4 Working with Bands Chapter 4 Working with Bands Introduction This chapter explains how to create band areas; insert, move, and copy band lines; and specify and modify band line properties. This information is presented in

More information

Using DICTION. Some Basics. Importing Files. Analyzing Texts

Using DICTION. Some Basics. Importing Files. Analyzing Texts Some Basics 1. DICTION organizes its work units by Projects. Each Project contains three folders: Project Dictionaries, Input, and Output. 2. DICTION has three distinct windows: the Project Explorer window

More information

EndNote on the Desktop and Online Class Notes for EndNote on Windows

EndNote on the Desktop and Online Class Notes for EndNote on Windows 1 After the Class EndNote on the Desktop and Online Class Notes for EndNote on Windows 1.1 The EndNote Quick Reference Card The Quick Reference Cards contains information on commonly used features, and

More information

Using RefWorks Write-N-Cite for Mac v.2.5

Using RefWorks Write-N-Cite for Mac v.2.5 Using RefWorks Write-N-Cite for Mac v.2.5 at the University of Manitoba Overview Write-N-Cite is a utility that allows users (who meet the compatibility requirements below) to run an abbreviated version

More information

May 2006 Edition /A. Getting Started Guide for the VSX Series Version 8.5

May 2006 Edition /A. Getting Started Guide for the VSX Series Version 8.5 May 2006 Edition 3725-21286-008/A Getting Started Guide for the VSX Series Version 8.5 GETTING STARTED GUIDE FOR THE VSX SERIES Trademark Information Polycom, the Polycom logo design, and ViewStation are

More information

Table of Contents Introduction

Table of Contents Introduction Page 1/9 Waveforms 2015 tutorial 3-Jan-18 Table of Contents Introduction Introduction to DAD/NAD and Waveforms 2015... 2 Digital Functions Static I/O... 2 LEDs... 2 Buttons... 2 Switches... 2 Pattern Generator...

More information

PYROPTIX TM IMAGE PROCESSING SOFTWARE

PYROPTIX TM IMAGE PROCESSING SOFTWARE Innovative Technologies for Maximum Efficiency PYROPTIX TM IMAGE PROCESSING SOFTWARE V1.0 SOFTWARE GUIDE 2017 Enertechnix Inc. PyrOptix Image Processing Software v1.0 Section Index 1. Software Overview...

More information

Class Notes for EndNote on Macintosh. EndNote Training

Class Notes for EndNote on Macintosh. EndNote Training Class Notes for EndNote on Macintosh EndNote Training EndNote X8 Class Notes for EndNote on Macintosh 1 November 22, 2016 1 After the Class 1.1 The Little EndNote How-To Book The Little EndNote How-To

More information

Getting Started with the LabVIEW Sound and Vibration Toolkit

Getting Started with the LabVIEW Sound and Vibration Toolkit 1 Getting Started with the LabVIEW Sound and Vibration Toolkit This tutorial is designed to introduce you to some of the sound and vibration analysis capabilities in the industry-leading software tool

More information

EndNote Tutorial Handout Table of Contents

EndNote Tutorial Handout Table of Contents EndNote Tutorial Handout Table of Contents What is EndNote?... 2 Getting Started... 2 Create a New Library... 2 EndNote Interface... 3 Set the Reference Style... 4 Adding References to Your Library...

More information

Using EndNote Online: health

Using EndNote Online: health Using EndNote Online: health 1. Registration & access p.1 2. Collecting & organising references p.2 Transferring references from Web of Science (p.2), PubMed (p.5) & others 3. Citing & referencing while

More information

Swinburne University of Technology

Swinburne University of Technology Swinburne University of Technology EndNote X8 Basics For Windows Swinburne Library EndNote resources page: http://www.swinburne.edu.au/library/referencing/references-endnote/endnote/ These notes include

More information

Reference Management with. EndNote X8 PC. Guide for Students and Researchers

Reference Management with. EndNote X8 PC. Guide for Students and Researchers Reference Management with EndNote X8 PC Guide for Students and Researchers Library & ICT Faculty of Medicine Lund University 2017 0 Table of Contents What is EndNote?... 2 How do I get access to the program?...

More information

EndNote X7. Contents.

EndNote X7. Contents. EndNote X7 Technical Support Training Videos Download Output Styles http://endnote.com//support/contact-support http://endnote.com/training#video http://endnote.com/downloads/styles Contents Create an

More information

Tutor Led Manual v1.7. Table of Contents PREFACE I.T. Skills Required Before Attempting this Course... 1 Copyright... 2 GETTING STARTED...

Tutor Led Manual v1.7. Table of Contents PREFACE I.T. Skills Required Before Attempting this Course... 1 Copyright... 2 GETTING STARTED... EndNote X7 Tutor Led Manual v1.7 Table of Contents PREFACE... 1 I.T. Skills Required Before Attempting this Course... 1 Copyright... 2 GETTING STARTED... 1 EndNote Explained... 1 Opening the EndNote Program...

More information

Getting started with EndNote X7

Getting started with EndNote X7 IT Training Getting started with EndNote X7 Sally Swaine, IT Training IT Services Version 3.3 Scope Learning outcomes Develop a better understanding of how EndNote works as a tool. Understand how EndNote

More information

APA Style Page Formatting Instructions Microsoft Word Windows Version. Adjust all margins to 1 inch on each side, page in Portrait orientation

APA Style Page Formatting Instructions Microsoft Word Windows Version. Adjust all margins to 1 inch on each side, page in Portrait orientation APA Style Page Formatting Instructions Microsoft Word Windows Version PART 1 GENERAL FORMATTING AND COVER PAGE Adjust all margins to 1 inch on each side, page in Portrait orientation 1. Click on the Page

More information

Cite While You Write Plug-In for Microsoft Word. The Cite While You Write plug-in creates an EndNote Web tab in Microsoft Word 2007.

Cite While You Write Plug-In for Microsoft Word. The Cite While You Write plug-in creates an EndNote Web tab in Microsoft Word 2007. MERVYN H. UAB STERNE LIBRARY Cite While You Write Plug-In for Microsoft Word Cite While You Write Plug-In The Cite While You Write (CWYW) plug-in is used to insert references and format citations and bibliographies

More information

Activity: Chairman. STEP 1: Add an activity. STEP 2: Committee / Group name

Activity: Chairman. STEP 1: Add an activity. STEP 2: Committee / Group name Activity: Chairman A Chairman activity allows the management of a committee with the participation of current committee members, the creation and viewing of agendas, scheduling and organizing of meetings,

More information

Essential EndNote X7.

Essential EndNote X7. Essential EndNote X7 IT www.york.ac.uk/it-services/training it-training@york.ac.uk Essential EndNote X7 EndNote X7 is a desktop application, and as such must be installed. All University of York classroom

More information

Getting Started Guide for the V Series

Getting Started Guide for the V Series product pic here Getting Started Guide for the V Series Version 9.0.6 March 2010 Edition 3725-24476-003/A Trademark Information POLYCOM, the Polycom Triangles logo and the names and marks associated with

More information

Introduction to EndNote. Presented October 3, B.C. Women and Children s Hospital

Introduction to EndNote. Presented October 3, B.C. Women and Children s Hospital Introduction to EndNote Presented October 3, 2018 @ B.C. Women and Children s Hospital Facilitator Marianne Hoffard, Student Librarian Woodward Library, UBC Agenda Getting started Capturing information

More information

GS122-2L. About the speakers:

GS122-2L. About the speakers: Dan Leighton DL Consulting Andrea Bell GS122-2L A growing number of utilities are adapting Autodesk Utility Design (AUD) as their primary design tool for electrical utilities. You will learn the basics

More information

How to Insert Endnotes and Remove the Endnotes Separator Line

How to Insert Endnotes and Remove the Endnotes Separator Line How to Insert Endnotes and Remove the Endnotes Separator Line Endnotes are explanations, comments, or references that are used instead of footnotes when the explanations, etc. are too lengthy or numerous

More information

Using EndNote Web to Manage your References. Workbook

Using EndNote Web to Manage your References. Workbook Using EndNote Web to Manage your References Workbook Edition 3 October 2013 Document Reference: 3673-2013 Using EndNote Web to Manage your References Contents 1. Create an EndNote Web Account... 1 2.

More information

Word Tutorial 2: Editing and Formatting a Document

Word Tutorial 2: Editing and Formatting a Document Word Tutorial 2: Editing and Formatting a Document Microsoft Office 2010 Objectives Create bulleted and numbered lists Move text within a document Find and replace text Check spelling and grammar Format

More information

MLA Format a Class Assignment Word points

MLA Format a Class Assignment Word points MLA Format a Class Assignment Word 2003 20 points Directions: Complete the following assignment by following the steps to create an essay in MLA format. MLA Format: A common format for school assignments

More information

Introduction to EndNote Desktop

Introduction to EndNote Desktop Introduction to EndNote Desktop These notes have been prepared to assist participants in EndNote classes run by the Federation University Library. Examples have been developed using Windows 8.1 (Enterprise)

More information

FOR WWW TEACUPSOFTWARE COM User Guide

FOR WWW TEACUPSOFTWARE COM User Guide User Guide Table of Contents Quick Start Guide...1 More Information...1 What It Does 1 Pattern Possibilities An Example 2 How It Works 2 PatternMaker and PatternPack 2 Pattern Presets 3 Using PatternMaker...3

More information

BullCharts BullScan Manager a Tutorial

BullCharts BullScan Manager a Tutorial BullCharts BullScan Manager a Tutorial August 2007 (revised) (c) Copyright August 2007 - Prepared by Robert Brain for Melbourne BullCharts User Group 1 Discussion Guidelines One person to lead the discussion

More information

DigiView User's Guide TechTools

DigiView User's Guide TechTools DigiView User's Guide DigiView User's Guide All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording,

More information

VISSIM TUTORIALS This document includes tutorials that provide help in using VISSIM to accomplish the six tasks listed in the table below.

VISSIM TUTORIALS This document includes tutorials that provide help in using VISSIM to accomplish the six tasks listed in the table below. VISSIM TUTORIALS This document includes tutorials that provide help in using VISSIM to accomplish the six tasks listed in the table below. Number Title Page Number 1 Adding actuated signal control to an

More information

SuperStar Basics. Brian Bruderer. Sequence Editors

SuperStar Basics. Brian Bruderer. Sequence Editors SuperStar Basics Brian Bruderer Sequence Editors Traditional sequence editors use a large grid to control when channels are turned on and off. This approach is like a Paint program where pictures are created

More information

Welcome to the New Zap2it TV Listings

Welcome to the New Zap2it TV Listings Welcome to the New Zap2it TV Listings Following is an overview of the new features of Zap2it s TV listings: Available Date Range for TV listings Data: Current listings show one week of TV programming.

More information

Defining and Labeling Circuits and Electrical Phasing in PLS-CADD

Defining and Labeling Circuits and Electrical Phasing in PLS-CADD 610 N. Whitney Way, Suite 160 Madison, WI 53705 Phone: 608.238.2171 Fax: 608.238.9241 Email:info@powline.com URL: http://www.powline.com Defining and Labeling Circuits and Electrical Phasing in PLS-CADD

More information

Dektak Step by Step Instructions:

Dektak Step by Step Instructions: Dektak Step by Step Instructions: Before Using the Equipment SIGN IN THE LOG BOOK Part 1: Setup 1. Turn on the switch at the back of the dektak machine. Then start up the computer. 2. Place the sample

More information

Project Reliability-based Control

Project Reliability-based Control Project 2007-18 - Reliability-based Control EXCEL WORKBOOK INFORMATION February 03, 2010 The Excel workbooks use a calculation of the Balancing Authority ACE Limit as defined in the draft Standard BAL-007.

More information

Parent s Guide. Questions and Answers

Parent s Guide. Questions and Answers Parent s Guide Questions and Answers Name ATOS Book Levels (ZPD Range) UG Upper Grades 9 12 MG Middle Grades 4 8 LG Lower Grades K 3 Interest Level (check one) 12 11 10 9 8 7 6 5 4 3 2 1 K MG+ Middle Grades

More information

GBA 327: Module 7D AVP Transcript Title: The Monte Carlo Simulation Using Risk Solver. Title Slide

GBA 327: Module 7D AVP Transcript Title: The Monte Carlo Simulation Using Risk Solver. Title Slide GBA 327: Module 7D AVP Transcript Title: The Monte Carlo Simulation Using Risk Solver Title Slide Narrator: Although the use of a data table illustrates how we can apply Monte Carlo simulation to a decision

More information

EndNote Web. Quick Reference Card THOMSON SCIENTIFIC

EndNote Web. Quick Reference Card THOMSON SCIENTIFIC THOMSON SCIENTIFIC EndNote Web Quick Reference Card Web is a Web-based service designed to help students and researchers through the process of writing a research paper. ISI Web of Knowledge, EndNote,

More information

EndNote Essentials. EndNote Overview PC. KUMC Dykes Library

EndNote Essentials. EndNote Overview PC. KUMC Dykes Library EndNote Essentials EndNote Overview PC KUMC Dykes Library Table of Contents Uses, downloading and getting assistance... 4 Create an EndNote library... 5 Exporting citations/abstracts from databases and

More information

Vision Call Statistics User Guide

Vision Call Statistics User Guide The Vision Call Reporting package is a web based near real time statistical tool that enables users to understand the call flow of inbound traffic both in terms of where calls have come from and also how

More information

Introduction to EndNote

Introduction to EndNote Library Services Introduction to EndNote Part 2: Creating an EndNote Library Table of Contents: Part 2 2. CREATING AN ENDNOTE LIBRARY - 3-2.1. CREATING A NEW LIBRARY - 3-2.2. ENTERING NEW REFERENCES MANUALLY

More information

February 2007 Edition /A. Getting Started Guide for the VSX Series Version 8.5.3

February 2007 Edition /A. Getting Started Guide for the VSX Series Version 8.5.3 February 2007 Edition 3725-21286-009/A Getting Started Guide for the VSX Series Version 8.5.3 GETTING STARTED GUIDE FOR THE VSX SERIES Trademark Information Polycom, the Polycom logo design, and ViewStation

More information

Configuring the Stack ST8961 VS Module when used in conjunction with a Stack ST81xx series display.

Configuring the Stack ST8961 VS Module when used in conjunction with a Stack ST81xx series display. Configuring the Stack ST8961 VS Module when used in conjunction with a Stack ST81xx series display. Your Stack ST8961 VS module allows you to synchronize, overlay, and record data available on your Stack

More information

Click on the Collect tab to start adding references to your Endnote Web library

Click on the Collect tab to start adding references to your Endnote Web library Endnote Web is web-based, unlike Endnote, which needs to be installed on your computer. Endnote Web enables you to create a personal set of references, called a library, and use this library to cite and

More information

Topic: Instructional David G. Thomas December 23, 2015

Topic: Instructional David G. Thomas December 23, 2015 Procedure to Setup a 3ɸ Linear Motor This is a guide to configure a 3ɸ linear motor using either analog or digital encoder feedback with an Elmo Gold Line drive. Topic: Instructional David G. Thomas December

More information

E X P E R I M E N T 1

E X P E R I M E N T 1 E X P E R I M E N T 1 Getting to Know Data Studio Produced by the Physics Staff at Collin College Copyright Collin College Physics Department. All Rights Reserved. University Physics, Exp 1: Getting to

More information

Wireless Studio. User s Guide Version 5.1x Before using this software, please read this manual thoroughly and retain it for future reference.

Wireless Studio. User s Guide Version 5.1x Before using this software, please read this manual thoroughly and retain it for future reference. 4-743-161-12 (1) Wireless Studio User s Guide Version 5.1x Before using this software, please read this manual thoroughly and retain it for future reference. DWR-R01D/R02D/R02DN/R03D 2018 Sony Corporation

More information

MT ON LIVE SIGNAL -ADDON-

MT ON LIVE SIGNAL -ADDON- MT ON LIVE SIGNAL -ADDON- www.agenatrader.com CONTENTS BRIEF DESCRIPTION OF THE ON PACKAGE 3 INSTRUCTIONS FOR PACKAGE-INSTALLATION 3 CONTENT MT ON LIVE SIGNAL (ON) - ADDON 4 1. ON WORKSPACE 5 2. ON-INDICATORS

More information

EndNote X6 Basics. Health Sciences Library System University of Pittsburgh

EndNote X6 Basics. Health Sciences Library System University of Pittsburgh EndNote X6 Basics Health Sciences Library System University of Pittsburgh Instructors Linda M. Hartman, MLS/lhartman@pitt.edu Andrea Ketchum, MLIS / ketchum@pitt.edu Melissa Ratajeski, MLIS, RLAT / mar@pitt.edu

More information

Getting started with EndNote online

Getting started with EndNote online [Type here] Getting started with EndNote online This workshop is an introduction to using EndNote online, a web based version of the desktop software EndNote, which is a bibliographic database programme

More information

FORMATTING IN MS WORD 2008 MAC 1. General Formatting Guidelines

FORMATTING IN MS WORD 2008 MAC 1. General Formatting Guidelines FORMATTING IN MS WORD 2008 MAC 1 APA 6 th Edition Guidelines: Formatting in MS Word 2008 for Mac The guidelines for formatting a research paper in APA style are set forth in the Publication Manual of the

More information

Using an IDT Redlake X4 High-Speed Camera with MiDAS DA

Using an IDT Redlake X4 High-Speed Camera with MiDAS DA Date Published: March 2010 Revised: December 2012 Abstract This camera connection guide describes the hardware connections and software settings for using MiDAS DA software with an IDT/Redlake X4 model

More information

MIS 0855 Data Science (Section 005) Fall 2016 In-Class Exercise (Week 6) Advanced Data Visualization with Tableau

MIS 0855 Data Science (Section 005) Fall 2016 In-Class Exercise (Week 6) Advanced Data Visualization with Tableau MIS 0855 Data Science (Section 005) Fall 2016 In-Class Exercise (Week 6) Advanced Data Visualization with Tableau Objective: Learn how to use Tableau s advanced data visualization tools Learning Outcomes:

More information

EndNote X8. Research Smarter. Online Guide. Don t forget to download the ipad App

EndNote X8. Research Smarter. Online Guide. Don t forget to download the ipad App EndNote X8 Research Smarter. Online Guide Don t forget to download the ipad App EndNote online EndNote online is the online component of our popular EndNote reference management and bibliography-creation

More information

Analyzing and Saving a Signal

Analyzing and Saving a Signal Analyzing and Saving a Signal Approximate Time You can complete this exercise in approximately 45 minutes. Background LabVIEW includes a set of Express VIs that help you analyze signals. This chapter teaches

More information

Problem 5 Example Solutions

Problem 5 Example Solutions Problem 5 Example Solutions This document provides pictures of a working Tynker program for both game options described. Keep in mind that these are example solutions. Problems can be solved computationally

More information

Keeping a Bibliography using EndNote

Keeping a Bibliography using EndNote Keeping a Bibliography using EndNote Student Guide Edition 5 December 2009 iii Keeping a Bibliography using EndNote Edition 5, December 2009 Document number: 3675 iv Preface Preface This is a beginner

More information

Click on the Sign Up button to create an EndNote Web account.

Click on the Sign Up button to create an EndNote Web account. Endnote Web is web-based, unlike Endnote, which needs to be installed on your computer. Endnote Web enables you to create a personal set of references, called a library, and use this library to cite and

More information

B2 Spice A/D Tutorial Author: B. Mealy revised: July 27, 2006

B2 Spice A/D Tutorial Author: B. Mealy revised: July 27, 2006 B2 Spice A/D Tutorial Author: B. Mealy revised: July 27, 2006 The B 2 Spice A/D software allows for the simulation of digital, analog, and hybrid circuits. CPE 169, however, is only concerned with the

More information

Quality-Assured Traffic Signal Coordination. User's Manual. 1985, 1989, 1996, 2000, 2003, 2006, 2008 Gregory L. Bullock

Quality-Assured Traffic Signal Coordination. User's Manual. 1985, 1989, 1996, 2000, 2003, 2006, 2008 Gregory L. Bullock Quality-Assured Traffic Signal Coordination User's Manual 1985, 1989, 1996, 2000, 2003, 2006, 2008 Gregory L. Bullock User's Manual (rev. 2010-09-10) Table of Contents Introduction to Tru-Traffic TS/PP...8

More information

Reason Overview3. Reason Overview

Reason Overview3. Reason Overview Reason Overview3 In this chapter we ll take a quick look around the Reason interface and get an overview of what working in Reason will be like. If Reason is your first music studio, chances are the interface

More information

What is Endnote? A bibliographical management software package designed to : Organize bibliographic references Create a bibliography

What is Endnote? A bibliographical management software package designed to : Organize bibliographic references Create a bibliography UTM Library What is Endnote? A bibliographical management software package designed to : Organize bibliographic references Create a bibliography What is Endnote? A bibliographical management software package

More information

Self Publishing Your Genealogy. You can do it!!!

Self Publishing Your Genealogy. You can do it!!! Self Publishing Your Genealogy You can do it!!! Start with your Genealogy Software From your genealogy software, go to publish or generate a report. Start with the oldest member in the family you are going

More information