Financial Functions (all with subtypes: Normal, Stairs, Points, Height, Hollow, Colors, Marks, No Border except where indicated):

Size: px
Start display at page:

Download "Financial Functions (all with subtypes: Normal, Stairs, Points, Height, Hollow, Colors, Marks, No Border except where indicated):"

Transcription

1 Financial Charting in TeeChart Pro TeeChart Pro has always been at the cutting edge of Financial Charting and the ActiveX v6 makes this very clear; with three distinct financial series and fourteen dedicated financial functions it is one of the most flexible Financial Charting tools on the market. Financial Charting. TeeChart Pro has always been at the cutting edge of Financial Charting and the ActiveX v6 makes this very clear; with three distinct financial series and fourteen dedicated financial functions it is one of the most flexible Financial Charting tools on the market. Financial Series and Functions A selection of these can be visualised here: Specifically, the TeeChart Pro v6 ActiveX Control consists of the following financial features: Financial Series: Candle (OHLC) Series, with subtypes: Normal, Bar, No Open, No Close, No Border and Line Volume Series, with subtypes: Normal, Dotted, Colors and Origin Point and Figure Series Financial Functions (all with subtypes: Normal, Stairs, Points, Height, Hollow, Colors, Marks, No Border except where indicated): ADX RSI Moving Average Exponential Moving Average Momentum MACD Stochastic Bollinger Bands Compression, with subtypes Normal, Bar, No Open, No Close, No Border, Line Close Location Value On Balanced Volume Commodity Channel Index Volume Oscillator All of these Series and Functions can be added to your Chart at design time; simply right-click over an embedded TeeChart ActiveX Object (on a VB.NET WinForm, for example) and select?edit?" and then hit the?add?" button. Selecting the Series tab and the Financial sub-tab and clicking on the bottom-left of the Candle series will give you the following:

2 Moving over to the Functions tab and again selecting the Financial sub-tab will give you:

3 Adding Data to the Financial Series Let?s assume that the data needed to be represented is in a database, one of a number of possible scenarios which can be coded along the same general principles. Let?s have a look at some VB6.0 code that connects a Candle Series with the Stocks table of the TeeChart Pro Database, a database that is installed by default with the TeeChart Pro v6 ActiveX Control licensed and evaluation versions. With a TeeChart Pro v6 ActiveX Object and a CheckBox on the VB6.0 Form (make sure you have referenced the?microsoft ActiveX Data Objects 2.8 Library" from Project -> References?), paste in the following code: Option Explicit Dim Conn As ADODB.Connection Dim rst As ADODB.Recordset Private Sub AddAsDatetime() With TChart1.RemoveAllSeries.AddSeries sccandle With.Series(0).DataSource = rst.ascandle.openvalues.valuesource = "Open".asCandle.HighValues.ValueSource ="High".asCandle.LowValues.ValueSource = "Low".asCandle.CloseValues.ValueSource = "Close".LabelsSource = "Date" Private Sub AddAsNoWeekend() Dim Count As Integer With TChart1.RemoveAllSeries.AddSeries sccandle With rst.movefirst While Not.EOF If Weekday(.Fields("Date")) <> 1 And Weekday(.Fields("Date")) <> 7 Then TChart1.Series(0).asCandle.AddCandle Count,.Fields("Open"),.Fields("High"),.Fields("Low"),.Fields("Close") TChart1.Series(0).PointLabel(Count) =.Fields("Date") Count = Count + 1 End If.MoveNext Wend Private Sub Check1_Click() If Check1.Value = 1 Then AddAsNoWeekend Else

4 AddAsDatetime End If Private Sub Form_Load() Set Conn = CreateObject("ADODB.Connection") Set rst = CreateObject("ADODB.Recordset") Conn.Open "DSN=TeeChart Pro Database" rst.open "select * from stock", Conn, 1, 1 TChart1.Axis.Bottom.Labels.Angle = 90 Check1.Caption = "Add without weekends" Check1.Value = 1 Private Sub Form_Unload(Cancel As Integer) rst.close Conn.Close Running the above code will give you the following two images, one with and one without the CheckBox checked:

5 As you can see from this code, avoiding the representation of weekend days in the Candle Series simply involves iterating through the dataset and only adding in the week days, setting the dates on the bottom axis with the ISeries.PointLabel method. Associating a Financial Function with a Financial Series Performing this operation is a simple task both at designtime and runtime. At runtime, using the VB6.0 example described above, we could simply add a CommandButton to our VB6.0 Form and paste in the following code: Private Sub Command1_Click() With TChart1.AddSeries scfastline.series(1).setfunction tfbollinger.series(1).datasource =.Series(0).Series(1).FunctionType.asBollinger.LowBand.Color = vbcyan.series(1).color = vbcyan.series(1).functiontype.asbollinger.deviation = 3.Series(1).FunctionType.asBollinger.Exponential = False.Series(1).FunctionType.PeriodAlign = palast.series(1).functiontype.periodstyle = psnumpoints.series(1).functiontype.period = 2.Series(1).CheckDataSource This will associate a Cyan coloured Bollinger Band function with the database-connected Candle Series as can be seen in the following image:

6 Of course, you may not wish the function to share the same axes as the original Candle Series, in which case you may consider the use of Custom Axes, an example of which can be found in both licensed and evaluation versions under: Examples/Visual%20Basic/Visual%20Basic%205%20%26%206/Multiple%20Axes/

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

EMu Release Notes. ADO Reports. EMu 5.0. Document Version 1

EMu Release Notes. ADO Reports. EMu 5.0. Document Version 1 EMu Release Notes ADO Reports EMu 5.0 Document Version 1 Contents SECTION 1 ADO Reports 1 Note 1 SECTION 2 Crystal Reports 3 How to create a Crystal ADO Report 3 How to modify a Crystal Report to use

More information

Cycle Trends Live 6. User Manual

Cycle Trends Live 6. User Manual 1 P a g e www.cycletrends.com support@cycletrends.co.za Cycle Trends Live 6 User Manual Welcome to the User Manual for version 6 of Cycle Trends Live. This manual will cover the features and basic usage

More information

SAULT COLLEGE OF APPLIED ARTS & TECHNOLOGY SAULT STE MARIE, ON COURSE OUTLINE

SAULT COLLEGE OF APPLIED ARTS & TECHNOLOGY SAULT STE MARIE, ON COURSE OUTLINE SAULT COLLEGE OF APPLIED ARTS & TECHNOLOGY SAULT STE MARIE, ON COURSE OUTLINE Course Title: Introduction to Visual Basic Code No.: Semester: Three Program: Computer Programming Author: Willem de Bruyne

More information

GFT Mobile Users Guide

GFT Mobile Users Guide GFT Mobile Users Guide GFT MOBILE USER GUIDE 1 I. OVERVIEW 2 GFT MOBILE ENHANCED 2 II. INSTALLATION 3 GFT MOBILE ENHANCED SCREENS 9 GFT MOBILE - BASIC 12 GFT MOBILE BASIC SCREENS 12 III. FAQ s 14 GFT Mobile

More information

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

UNLEASH THE POWER OF SCRIPTING F A C T S H E E T AUTHOR DARREN HAWKINS AUGUST 2015 UNLEASH THE POWER OF SCRIPTING F A C T S H E E T AUTHOR DARREN HAWKINS AUGUST 2015 Summary The ability to create your own custom formulas to scan or filter large sets of data can be a huge time-saver.

More information

FnCharts Standard Installation Guide

FnCharts Standard Installation Guide FnCharts Standard Installation Guide Table of contents How FnChars applet works Installing program on a web server Applet configuration Basic parameters Data access parameters Configuring the symbol of

More information

ต วอย างการสร างฟอร ม เมน การใช งาน

ต วอย างการสร างฟอร ม เมน การใช งาน ต วอย างการสร างฟอร ม เมน การใช งาน Option Explicit Dim conn As New ADODB.Connection Dim rs As New ADODB.Recordset Dim Sql As String Private Sub Command6_Click() Form2.Hide Form3.Show Private Sub Command7_Click()

More information

Simply Access Tips. Issue February 2 nd 2009

Simply Access Tips. Issue February 2 nd 2009 Hi [FirstName], Simply Access Tips Issue 02 2009 February 2 nd 2009 Welcome to the second edition of Simply Access Tips for 2009. Housekeeping, as usual, is at the end of the Newsletter so; if you need

More information

22. VB Programming Fundamentals Data Access with Data Objects

22. VB Programming Fundamentals Data Access with Data Objects 22. VB Programming Fundamentals Data Access with Data Objects 22.1 Data Access Object MS Data Access Object (DAO) enables you to use a programming language to access and manipulate data in local or remote

More information

20. VB Programming Fundamentals Variables and Procedures

20. VB Programming Fundamentals Variables and Procedures 20. VB Programming Fundamentals Variables and Procedures 20.1 Variables and Constants VB, like other programming languages, uses variables for storing values. Variables have a name and a data type. Array

More information

Trading View Chart Setup

Trading View Chart Setup Trading View Chart Setup Joining Trading View: 1. Click on this link or link in e-mail. 2. Click join for free. 3. Enter your e-mail, desired username, and password. Note Usernames and Passwords are case

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

Simply Access Tips. Issue April 26 th, Welcome to the twelfth edition of Simply Access Tips for 2007.

Simply Access Tips. Issue April 26 th, Welcome to the twelfth edition of Simply Access Tips for 2007. Hi [FirstName], Simply Access Tips Issue 12 2007 April 26 th, 2007 Welcome to the twelfth edition of Simply Access Tips for 2007. Housekeeping as usual is at the end of the Newsletter so, if you need to

More information

Erlanger 2000 (E2K) Research and Analytics Platform Initial Installation and Quick Start User Guide

Erlanger 2000 (E2K) Research and Analytics Platform Initial Installation and Quick Start User Guide Erlanger 2000 (E2K) Research and Analytics Platform Initial Installation and Quick Start User Guide I. Installation Phil Erlanger Research Co., Inc. (PER) or Quantitative Partners, Inc. (QPI) will guide

More information

Combo Charts. Chapter 145. Introduction. Data Structure. Procedure Options

Combo Charts. Chapter 145. Introduction. Data Structure. Procedure Options Chapter 145 Introduction When analyzing data, you often need to study the characteristics of a single group of numbers, observations, or measurements. You might want to know the center and the spread about

More information

Database charts. From tutorial files: Database charts. Contents

Database charts. From tutorial files: Database charts. Contents Database charts Another one from tutorial files. This time some basics about database charts which allow you to plot data from virtually any dataset with just a few clicks. From tutorial files: Database

More information

Crystal Reports. Overview. Contents. Using Crystal Reports Print Engine calls (API) in Microsoft Visual Basic

Crystal Reports. Overview. Contents. Using Crystal Reports Print Engine calls (API) in Microsoft Visual Basic Using Crystal Reports Print Engine calls (API) in Microsoft Visual Basic Overview Contents This document describes how to preview a report using Microsoft (MS) Visual Basic, by making direct API calls

More information

Visual Basic. The Integrated Development Environment. Menu Bar

Visual Basic. The Integrated Development Environment. Menu Bar Visual Basic Visual Basic is initiated by using the Programs option > Microsoft Visual Basic 6.0 > Visual Basic 6.0. Clicking the Visual Basic icon, we can view a copyright screen enlisting the details

More information

DATASTREAM CHART STUDIO GETTING STARTED

DATASTREAM CHART STUDIO GETTING STARTED DATASTREAM DATASTREAM CHART STUDIO GETTING STARTED Thomson Reuters Training Quick and easy access to Technical Analysis charts and data is essential in today s fast moving markets. The Datastream Chart

More information

A Back-End Link Checker for Your Access Database

A Back-End Link Checker for Your Access Database A Back-End for Your Access Database Published: 30 September 2018 Author: Martin Green Screenshots: Access 2016, Windows 10 For Access Versions: 2007, 2010, 2013, 2016 Working with Split Databases When

More information

AIM To analyze, design and develop code for Online Course Reservation System using Rational Rose software

AIM To analyze, design and develop code for Online Course Reservation System using Rational Rose software Ex. No.1 Date: ONLINE COURSE RESERVATION AIM To analyze, design and develop code for Online Course Reservation System using Rational Rose software PROBLEM STATEMENT As the head of information systems for

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

Using the Palladium Business Intelligence Functionality

Using the Palladium Business Intelligence Functionality Using the Palladium Business Intelligence Functionality This document will assist in using Palladium s Business Intelligence Module. The function of the module is to allow you a view into your data with

More information

Create a custom tab using Visual Basic

Create a custom tab using Visual Basic tutorials COM programming Create a custom tab using Visual Basic 1/5 Related files vb_tab.zip Description Visual basic files related to this tutorial Introduction This tutorial explains how to create and

More information

The Control Properties

The Control Properties The Control Properties Figure Before writing an event procedure for the control to response to a user's input, you have to set certain properties for the control to determine its appearance and how it

More information

REPORT DESIGNER GUIDE

REPORT DESIGNER GUIDE REPORT DESIGNER GUIDE 2018 Advance Workshop Report Designer Guide This document has been very carefully prepared in the hope to meet your expectations and to answer all your questions regarding the Advance

More information

Copyright 2012 Pulse Systems, Inc. Page 1 of 22

Copyright 2012 Pulse Systems, Inc. Page 1 of 22 Use the Pediatric Growth Chart Control to monitor a patient's measurements over an extended time vs. the national percentiles in a graphical output. Click anywhere to continue Copyright 2012 Pulse Systems,

More information

Overview of Professional Quest Technologies

Overview of Professional Quest Technologies Overview of Professional Quest Technologies Professional Quest Web Architecture Professional Quest's utilizes a number of industry standard components in its web architecture. Server Web Pages For the

More information

Password Protect an Access Database

Password Protect an Access Database Access a Password Protected Microsoft Access Database from within Visual Basic 6 Have you ever wanted to password protect an Access Database that is a Data Store (a repository of Data) used in one of your

More information

Desktop Studio: Charts. Version: 7.3

Desktop Studio: Charts. Version: 7.3 Desktop Studio: Charts Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived from,

More information

Instructions for Using Cycle Trends 5 (End-of-Day Edition) for Investing and Trading

Instructions for Using Cycle Trends 5 (End-of-Day Edition) for Investing and Trading Instructions for Using Cycle Trends 5 (End-of-Day Edition) for Investing and Trading Cycle Trends 5 operates on all recent releases of Windows, including Windows XP (with service pack 3), Windows 2000,

More information

LAMPIRAN LIST PROGRAM

LAMPIRAN LIST PROGRAM LAMPIRAN LIST PROGRAM 1. Modules Public conn As New ADODB.Connection Public rstb_pendekatan As ADODB.Recordset Public rstb_solusi As ADODB.Recordset Public rstb_alasan As ADODB.Recordset Public rstb_pilihan

More information

Desktop Studio: Charts

Desktop Studio: Charts Desktop Studio: Charts Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Working with Charts i Copyright 2011 Intellicus Technologies This document

More information

Quote & News With TraderConnect PR

Quote & News With TraderConnect PR 1 Quote & News With TraderConnect PR RO TM www.n2nconnect.com helpdesk@n2nconnect.com Quote & News With TraderConnect PRO TM 2 Information in this document is deemed accurate at the time of publishing.

More information

Charting Progress with a Spreadsheet

Charting Progress with a Spreadsheet Charting Progress - 1 Charting Progress with a Spreadsheet We shall use Microsoft Excel to demonstrate how to chart using a spreadsheet. Other spreadsheet programs (e.g., Quattro Pro, Lotus) are similarly

More information

Python extension functions & classes

Python extension functions & classes Chartboard Expert Advisor Quick Reference Ivyware Melbourne, Victoria, Australia, 3130 Phone (+61) (0) 417-337-313 www.ivyware.com.au 9 th February, 2018 Python extension functions & classes Chartboard

More information

esignal Index Symbols %R 21-82

esignal Index Symbols %R 21-82 Symbols %R 21-82 Numerics 123 Down Bar Study 21-19 3 Line Break chart 8-20 reversal 8-9 3 Point Break/3 Line Break Chart 8-43 30 Period Most Significant High 21-40 52-Week High/Low Alerts activating 7-17

More information

Advanced Financial Modeling Macros. EduPristine

Advanced Financial Modeling Macros. EduPristine Advanced Financial Modeling Macros EduPristine www.edupristine.com/ca Agenda Introduction to Macros & Advanced Application Building in Excel Introduction and context Key Concepts in Macros Macros as recorded

More information

esignal 11.4 March 2012

esignal 11.4 March 2012 esignal Release Notes Page 1 of 6 This new version of esignal introduces a host of new features and enhancements for active traders and investors. esignal 11.4 provides new alerts, toolbars, and so much

More information

D&B Market Insight Release Notes. November, 2015

D&B Market Insight Release Notes. November, 2015 D&B Market Insight Release Notes November, 2015 Table of Contents Table of Contents... 2 Charting Tool: Add multiple measures to charts... 3 Charting Tool: Additional enhancements to charts... 6 Data Grids:

More information

Procedures. This is a common situation -- there is some functionality that computers should have that the do not the solution is to write a procedure

Procedures. This is a common situation -- there is some functionality that computers should have that the do not the solution is to write a procedure Procedures Procedures are familiar in everyday life -- they are a standard process for achieving some objective. Procedures in computers are similar: They are a standard process of computing some result.

More information

Operation Manual for Real Time Quotes Service

Operation Manual for Real Time Quotes Service Operation Manual for Real Time Quotes Service www.eafutures.com.hk Enquiry and Account Opening Hotline: (852) 3608-8181 E-mail Enquiry: accounts@eafutures.com.hk Table of Contents 1. Introduction... 2

More information

151 Mixed bag of HOTS questions from VB 15 A VB program accepts a number in a text box and rounds the number to 0 decimal places. Write the VB code under the button cmdround to achieve this feature. Do

More information

Contents Introduction Getting Started Visual Basic Form Configuration Entering the VB Code

Contents Introduction Getting Started Visual Basic Form Configuration Entering the VB Code Your comments and suggestions on the operation of this software are welcome. Please address them to: ICONICS 100 Foxborough Blvd. Foxborough, MA 02035 Tel: 508-543-8600 Fax: 508-543-1503 E-mail: support@iconics.com

More information

Creating a Basic Chart in Excel 2007

Creating a Basic Chart in Excel 2007 Creating a Basic Chart in Excel 2007 A chart is a pictorial representation of the data you enter in a worksheet. Often, a chart can be a more descriptive way of representing your data. As a result, those

More information

MICROSOFT EXCEL TUTORIAL

MICROSOFT EXCEL TUTORIAL MICROSOFT EXCEL TUTORIAL G E T T I N G S T A R T E D Microsoft Excel is one of the most popular spreadsheet applications that helps you manage data, create visually persuasive charts, and thought-provoking

More information

Leveraging MapInfo ProViewer with Microsoft Visual Basic to provide company-wide access to spatial data resources.

Leveraging MapInfo ProViewer with Microsoft Visual Basic to provide company-wide access to spatial data resources. Leveraging MapInfo ProViewer with Microsoft Visual Basic to provide company-wide access to spatial data resources. Find a way to make data stored in MapInfo Professional tables accessible to anyone in

More information

Learning Microsoft Excel Module 1 Contents. Chapter 1: Introduction to Microsoft Excel

Learning Microsoft Excel Module 1 Contents. Chapter 1: Introduction to Microsoft Excel Module 1 Contents Chapter 1: Introduction to Microsoft Excel The Microsoft Excel Screen...1-1 Moving the Cursor...1-3 Using the Mouse...1-3 Using the Arrow Keys...1-3 Using the Scroll Bars...1-4 Moving

More information

EXAMGOOD QUESTION & ANSWER. Accurate study guides High passing rate! Exam Good provides update free of charge in one year!

EXAMGOOD QUESTION & ANSWER. Accurate study guides High passing rate! Exam Good provides update free of charge in one year! EXAMGOOD QUESTION & ANSWER Exam Good provides update free of charge in one year! Accurate study guides High passing rate! http://www.examgood.com Exam : 70-547(VB) Title : PRO:Design and Develop Web-Basd

More information

Error-Bar Charts from Summary Data

Error-Bar Charts from Summary Data Chapter 156 Error-Bar Charts from Summary Data Introduction Error-Bar Charts graphically display tables of means (or medians) and variability. Following are examples of the types of charts produced by

More information

Three-Dimensional (Surface) Plots

Three-Dimensional (Surface) Plots Three-Dimensional (Surface) Plots Creating a Data Array 3-Dimensional plots (surface plots) are often useful for visualizing the behavior of functions and identifying important mathematical/physical features

More information

Open Excel by following the directions listed below: Click on Start, select Programs, and the click on Microsoft Excel.

Open Excel by following the directions listed below: Click on Start, select Programs, and the click on Microsoft Excel. Candy is Dandy Grading Rubric You have been hired to conduct some market research about M&M's. First, you had your team purchase 4 large bags and the results are given for the contents of those bags. You

More information

TRAINING GUIDE FOR OPC SYSTEMS.NET. Simple steps to successful development and deployment. Step by Step Guide

TRAINING GUIDE FOR OPC SYSTEMS.NET. Simple steps to successful development and deployment. Step by Step Guide TRAINING GUIDE FOR OPC SYSTEMS.NET Simple steps to successful development and deployment. Step by Step Guide SOFTWARE DEVELOPMENT TRAINING OPC Systems.NET Training Guide Open Automation Software Evergreen,

More information

Lecture 4 DLLs and Custom Hardware Programming

Lecture 4 DLLs and Custom Hardware Programming Lecture 4 DLLs and Custom Hardware Programming Dynamically Link Libraries (DLL) Generating EXE file involves: (1) Compile source, which generates object/libraries files (.OBJ,.LIB), and (2) Linking object

More information

Angel International School - Manipay 1 st Term Examination November, 2015

Angel International School - Manipay 1 st Term Examination November, 2015 Angel International School - Manipay 1 st Term Examination November, 2015 Information & Communication Technology Grade 11A & C Duration: 3.00 Hours Part 1 Choose the most appropriate answer. 1) Find the

More information

Chapter 3. Determining Effective Data Display with Charts

Chapter 3. Determining Effective Data Display with Charts Chapter 3 Determining Effective Data Display with Charts Chapter Introduction Creating effective charts that show quantitative information clearly, precisely, and efficiently Basics of creating and modifying

More information

Introduction to Visual Basic and Visual C++ Arithmetic Expression. Arithmetic Expression. Using Arithmetic Expression. Lesson 4.

Introduction to Visual Basic and Visual C++ Arithmetic Expression. Arithmetic Expression. Using Arithmetic Expression. Lesson 4. Introduction to Visual Basic and Visual C++ Arithmetic Expression Lesson 4 Calculation I154-1-A A @ Peter Lo 2010 1 I154-1-A A @ Peter Lo 2010 2 Arithmetic Expression Using Arithmetic Expression Calculations

More information

Microsoft Excel Tutorial

Microsoft Excel Tutorial Microsoft Excel Tutorial 1. GETTING STARTED Microsoft Excel is one of the most popular spreadsheet applications that helps you manage data, create visually persuasive charts, and thought-provoking graphs.

More information

CREATING PRINT FILES FROM MICROSOFT WORD 2007

CREATING PRINT FILES FROM MICROSOFT WORD 2007 CREATING PRINT FILES FROM MICROSOFT WORD 2007 This instruction does not guarantee the correct creation of your print files. Rather it is intended as an assistance. If you are not familiar with how to create

More information

Introduction to Plot.ly: Customizing a Stacked Bar Chart

Introduction to Plot.ly: Customizing a Stacked Bar Chart Introduction to Plot.ly: Customizing a Stacked Bar Chart Plot.ly is a free web data visualization tool that allows you to download and embed your charts on other websites. This tutorial will show you the

More information

INTRODUCTION...3 ABOUT THIS MANUAL...4 OBTAINING TECHNICAL SUPPORT...4 INTEGRATING CHART FX...6 THE CHART FX SAMPLES...9 THE CHART FX OLE SERVER...

INTRODUCTION...3 ABOUT THIS MANUAL...4 OBTAINING TECHNICAL SUPPORT...4 INTEGRATING CHART FX...6 THE CHART FX SAMPLES...9 THE CHART FX OLE SERVER... Introduction Chart FX Programmer s Guide Table of Contents INTRODUCTION...3 ABOUT THIS MANUAL...4 OBTAINING TECHNICAL SUPPORT...4 INTEGRATING CHART FX...6 THE CHART FX SAMPLES...9 THE CHART FX OLE SERVER...13

More information

WHS NanoTrader Free Last Update: 10/09/2015

WHS NanoTrader Free Last Update: 10/09/2015 WHS NanoTrader Free Last Update: 10/09/2015 Page 1 of 16 Content A NanoTrader Free Start Page... 3 B - Manipulate Charts... 4 C - Place Orders & Manage Positions... 6 D - Create a Chart... 9 E - Create

More information

Learning Microsoft Excel Module 1 Contents. Chapter 1: Introduction to Microsoft Excel

Learning Microsoft Excel Module 1 Contents. Chapter 1: Introduction to Microsoft Excel Module 1 Contents Chapter 1: Introduction to Microsoft Excel Loading Microsoft Excel...1-1 The Microsoft Excel Screen...1-2 Moving the Cursor...1-4 Using the Mouse...1-4 Using the Arrow Keys...1-4 Using

More information

Creating Dashboard Widgets. Version: 7.3

Creating Dashboard Widgets. Version: 7.3 Creating Dashboard Widgets Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived

More information

Excel Functions & Tables

Excel Functions & Tables Excel Functions & Tables Winter 2012 Winter 2012 CS130 - Excel Functions & Tables 1 Review of Functions Quick Mathematics Review As it turns out, some of the most important mathematics for this course

More information

EXCEL SKILLS. Selecting Cells: Step 1: Click and drag to select the cells you want.

EXCEL SKILLS. Selecting Cells: Step 1: Click and drag to select the cells you want. Selecting Cells: Step 1: Click and drag to select the cells you want. Naming Cells: Viewlet available Step 2: To select different cells that are not next to each other, hold down as you click and

More information

Las Vegas, Nevada, December 3 6, Kevin Vandecar. Speaker Name:

Las Vegas, Nevada, December 3 6, Kevin Vandecar. Speaker Name: Las Vegas, Nevada, December 3 6, 2002 Speaker Name: Kevin Vandecar Course Title: Introduction to Visual Basic Course ID: CP11-3 Session Overview: Introduction to Visual Basic programming is a beginning

More information

Setting up Dynamics SL Data Migration Extension for D365 for Financials. For Microsoft Dynamics SL 2015

Setting up Dynamics SL Data Migration Extension for D365 for Financials. For Microsoft Dynamics SL 2015 Setting up Dynamics SL Data Migration Extension for D365 for Financials For Microsoft Dynamics SL 2015 Revision Date: 7/13/2017 Contents Introduction... 2 How to install the Dynamics SL Data Migration

More information

Using Tables, Sparklines and Conditional Formatting. Module 5. Adobe Captivate Wednesday, May 11, 2016

Using Tables, Sparklines and Conditional Formatting. Module 5. Adobe Captivate Wednesday, May 11, 2016 Slide 1 - Using Tables, Sparklines and Conditional Formatting Using Tables, Sparklines and Conditional Formatting Module 5 Page 1 of 27 Slide 2 - Lesson Objectives Lesson Objectives Explore the find and

More information

R:BASE X Development Kit

R:BASE X Development Kit R:BASE X Development Kit Products I R:BASE X Development Kit Table of Contents Part I Introducing the R:BASE X Development Kit 1 Part II Products 1 1 R:BASE... X 1 2 Oterro X... 2 3 R:Spell... Checker

More information

Design & Application of Computer Controlled Switch

Design & Application of Computer Controlled Switch Design & Application of Computer Controlled Switch Rajesh Shrestha, Dipak Subedi and Shekhar Gurung Journal of Nepal Physical Society Volume 4, Issue 1, February 2017 ISSN: 2392-473X Editors: Dr. Gopi

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

Simply Access Tips. Issue May 4 th, Welcome to the thirteenth edition of Simply Access Tips for 2007.

Simply Access Tips. Issue May 4 th, Welcome to the thirteenth edition of Simply Access Tips for 2007. Hi [FirstName], Simply Access Tips Issue 13 2007 May 4 th, 2007 Welcome to the thirteenth edition of Simply Access Tips for 2007. Housekeeping as usual is at the end of the Newsletter so, if you need to

More information

REPORT DESIGNER GUIDE

REPORT DESIGNER GUIDE REPORT DESIGNER GUIDE 2017 Advance BIM Designers Report Designer Guide This document has been very carefully prepared in the hope to meet your expectations and to answer all your questions regarding

More information

INTRODUCTION TO THE MATLAB APPLICATION DESIGNER EXERCISES

INTRODUCTION TO THE MATLAB APPLICATION DESIGNER EXERCISES INTRODUCTION TO THE MATLAB APPLICATION DESIGNER EXERCISES Eric Peasley, Department of Engineering Science, University of Oxford version 4.6, 2018 MATLAB Application Exercises In these exercises you will

More information

Programming with visual Basic:

Programming with visual Basic: Programming with visual Basic: 1-Introdution to Visual Basics 2-Forms and Control tools. 3-Project explorer, properties and events. 4-make project, save it and its applications. 5- Files projects and exercises.

More information

WORD Creating Objects: Tables, Charts and More

WORD Creating Objects: Tables, Charts and More WORD 2007 Creating Objects: Tables, Charts and More Microsoft Office 2007 TABLE OF CONTENTS TABLES... 1 TABLE LAYOUT... 1 TABLE DESIGN... 2 CHARTS... 4 PICTURES AND DRAWINGS... 8 USING DRAWINGS... 8 Drawing

More information

Hands-On-8 Advancing with VBA

Hands-On-8 Advancing with VBA Hands-On-8 Advancing with VBA Creating Event Procedures In this exercise you will create a message box that will display a welcome message to the user each time your database is opened. Before starting

More information

C:\MasterPageWeb\HAPR\docu\HAPR_VB6_version15sept06.rtf 19/10/08. HARP_VB projet en VB6

C:\MasterPageWeb\HAPR\docu\HAPR_VB6_version15sept06.rtf 19/10/08. HARP_VB projet en VB6 HARP_VB projet en VB6 Option Explicit Dim Value As Integer Dim i As Integer Dim il As Long Dim LL, L1S, L250µS, L500µS, L1mS, L2mS, L5mS, L10mS As Single Dim offsetdepart As Long Dim police(256, 8) As

More information

PREVISIONS 2 Charting Program for Precision Timing

PREVISIONS 2 Charting Program for Precision Timing PREVISIONS 2 Charting Program for Precision Timing Copyright 2006-2012 Update for Version 2.0.0 (This version is for FDate Members only) 1 Getting Started... 5 Creating Your Portfolios... 5 Add Charts

More information

2Practicals Visual Basic 6.0

2Practicals Visual Basic 6.0 2Practicals Visual Basic 6.0 Practical 1: 1. Navigation of Visual Basic Integrated Development Environment The Visual Basic IDE is made up of a number of components Menu Bar Tool Bar Project Explorer Properties

More information

TRAINING GUIDE FOR OPC SYSTEMS.NET. Simple steps to successful development and deployment. Step by Step Guide

TRAINING GUIDE FOR OPC SYSTEMS.NET. Simple steps to successful development and deployment. Step by Step Guide TRAINING GUIDE FOR OPC SYSTEMS.NET Simple steps to successful development and deployment. Step by Step Guide SOFTWARE DEVELOPMENT TRAINING OPC Systems.NET Training Guide Open Automation Software Evergreen,

More information

LISTING PROGRAM. Form Splash

LISTING PROGRAM. Form Splash LISTING PROGRAM Form Splash Private Sub Form_Load() lblversion.caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision lblproductname.caption = App.Title lblcopyright.caption = App.LegalCopyright

More information

Wise Technologies Ltd.,

Wise Technologies Ltd., User manual Wise Timetable online system Wise Technologies Ltd., In front of you is a short document for all the users and administrators of Wise Timetable, describing the important part of the whole system:

More information

Software for glucose data management. Manual

Software for glucose data management. Manual Software for glucose data management Manual Table of contents Fundamentals...2 Icons...3 Home Page...5 Data transfer...7 Print-outs...7 Import/Export...8 Patient...13 Glycaemia...16 List of results...16

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

Creating custom reports is for advanced users only. It is the sole responsibility of the user to debug any custom reports.

Creating custom reports is for advanced users only. It is the sole responsibility of the user to debug any custom reports. SI5 User and Administration Guide 527 Report Designer Pro users have the ability to create custom reports using the Report Designer. To open the report designer interface, go to Tools > Report Designer

More information

MetaTrader 4 transaction procedure

MetaTrader 4 transaction procedure MetaTrader 4 transaction procedure 1. After downloading and installing, first set your software to English - there are Languages in the View item, you can select English; 2. The user who has obtained the

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

About MetaStock Pro Templates

About MetaStock Pro Templates APPENDIX About MetaStock Pro Templates Dick Diamond s preferred charting platform is MetaStock Pro (intraday version). MetaStock Pro is a robust and powerful charting utility, ideal for charting, scanning,

More information

UAccess ANALYTICS A New Look, New Features, and New Functions

UAccess ANALYTICS A New Look, New Features, and New Functions UAccess Analytics has been updated to a new version of software! Naturally, a software update means there are some new features and functions available to UAccess Analytics users. An Updated Look One thing

More information

Welcome To VTL Course

Welcome To VTL Course Welcome To VTL Course VertexFX Trading Language Course Hybrid Solutions www.hybrid-solutions.com Contents 1 Hot Tips 2 Introduction 3 Programming structure 4 VTL Client Script 5 VTL Server Script Hot Tip

More information

<excelunusual.com> Easy Zoom -Chart axis Scaling Using VBA - by George Lungu. <www.excelunusual.com> 1. Introduction: Chart naming: by George Lungu

<excelunusual.com> Easy Zoom -Chart axis Scaling Using VBA - by George Lungu. <www.excelunusual.com> 1. Introduction: Chart naming: by George Lungu Easy Zoom -Chart axis Scaling Using VBA - by George Lungu Introduction: - In certain models we need to be able to change the scale of the chart axes function of the result of a simulation - An Excel chart

More information

Math 2524: Activity 1 (Using Excel) Fall 2002

Math 2524: Activity 1 (Using Excel) Fall 2002 Math 2524: Activity 1 (Using Excel) Fall 22 Often in a problem situation you will be presented with discrete data rather than a function that gives you the resultant data. You will use Microsoft Excel

More information

Open and arrange windows This section covers items like: Opening another window on to a workbook Arranging workbook windows Hiding and show windows

Open and arrange windows This section covers items like: Opening another window on to a workbook Arranging workbook windows Hiding and show windows Level 2 Excel Viewing workbooks Open and arrange windows Opening another window on to a workbook Arranging workbook windows Hiding and show windows Split panes Split panes Freeze panes Freeze panes Change

More information

LORD P.C.A.A LIONS MAT.HR.SEC SCHOOL, RESERVE LINE, SIVAKASI

LORD P.C.A.A LIONS MAT.HR.SEC SCHOOL, RESERVE LINE, SIVAKASI www.p COMMON HALF YEARLY EXAMINATION DECEMBER 2018 Standard 12 ( Virudhunagar ) Computer Science Answer Key Section I Choose the correct answer : 15 X 1 = 15 www.p 1. d) Ctrl + A 2. d) Fajita 3. d) MM/DD/YY

More information

Chapter 1. Block Diagram. Text .. 1

Chapter 1. Block Diagram. Text .. 1 Chapter 1 ก Visual Basic Scilab ก ก Visual Basic Scilab ก ก (Temporary File) ก ก ก ก ก ก Visual Basic ก (Interface) ก Scilab Text File ก Visual Basic ก ก ก ก Block Diagram ก ก Visual Basic ก Scilab ก.sce

More information