ADL 101: Week 2 Syllabus

Size: px
Start display at page:

Download "ADL 101: Week 2 Syllabus"

Transcription

1 ADL 101: Week 2 Syllabus TYPES OF MESSAGING CONTINUOUS MESSAGES A stream of information that is continuously disseminated by an exchange. For instance, the bid quantity available at a specific price level is considered to be a continuous message since this information is essentially a continuous stream of data available at all times. These are designated as blue, green, or red values output from the blocks on the Canvas. DISCRETE EVENT MESSAGES Information disseminated from or submitted to an exchange upon occurrences of market events that happen at a single moment in time (denoted as Discrete Events). For instance, a Fill Confirmation message from an exchange server is considered to be a discrete event message since this information is a pulse of data disseminated only at the moment of an order execution.

2 The following market events are considered to occur at a single moment in time: Fill Confirmation, Order Add Request/Confirmation, Order Modify Request/Confirmation, and Order Delete Request/Confirmation. Several designated blocks, such as the Order Block, may exchange discrete event messages directly with an exchange. When a block submits or receives a discrete event message, it will distribute a copy of the message throughout the rest of the algorithm in the form a single pulse. A discrete event message will flow through an algorithm via discrete event message ports. Example: The Order Block is one of several designated blocks in ADL which can submit and receive discrete event messages from an exchange server. Several blocks (such as the Generator Block) do not interact directly with an exchange, but can also send a pulse of discrete event message throughout an algorithm at user-defined moments. However, since such discrete event messages are not associated with any real requests or confirmations, these messages are void of information and merely provide the function of triggering downstream blocks to perform an action at user-defined moments (resetting a block's continuous output values). USING DISCRETE EVENT MESSAGES FOR TIMING PRECISION Discrete event messages have a key characteristic: when a block outputs a discrete event message pulse, an algorithm temporarily stops channeling continuous messages from the exchange servers. Continuous message channels will remain closed while the pulse of discrete event message propagates throughout the algorithm. In effect, this behavior will "freeze" the output of blocks such as the Field Block which channels streaming market data. In this static state, the pulse of discrete event message will traverse the pathway designed by the user, updating the output values of the blocks which lie in its path. Once this propagation is complete, the algorithm will resume channeling continuous messages from all exchange servers.

3 Note that such propagation takes place within microseconds and will not be perceivable in practice. With this mechanism, however, ADL allows the user to capture and use the market data existing precisely at the moment of a discrete event. The following is a simplified illustration of this mechanism in effect: 1. The diagram below shows an example of a Field Block (yellow block on the left) channeling a continuous numeric value into the Order Block (blue block on the right). The Field Block channels the best bid price of an instrument specified by the user, and the Order Block uses this streaming data to quote buy orders at the best bid price for the specified instrument with the specified quantity (instrument and quantity inputs are not shown in the illustration). 2. When one or more of the quoted orders are executed, the Order Block receives a Fill Confirmation message from the exchange server and outputs a discrete event message in the form of a single pulse. At this time, the algorithm stops channeling continuous messages from the exchange server. The pulse of discrete event message propagates through the algorithm, following the pathway designed by the user. It updates the output values of the blocks which lie in its path.

4 3. Once the propagation is complete, the algorithm resumes channeling continuous messages from the exchange server. TYPES OF PORTS DISCRETE EVENT MESSAGE PORT Inputs/outputs a special type of information called a discrete event message that is generated by several designated blocks whenever a significant market event (ex. fill) occurs. Specifically, discrete event messages are generated whenever the user's algorithm submits or receives a message from an exchange server. The messages range from add requests to fill confirmations. Discrete event message ports are colored in white or black, with the input in white and the output in black. JUMP BLOCKS Jump blocks are representations of block inputs and outputs that the user can place at many locations throughout the algorithm in order to avoid cluttering up the canvas with edges. There are two components of a jump block: the anchor jump block (green arrow) which represents the output of a block, and the destination jump block (red arrow) which represents the input of another block. The pair can replace a direct edge between two blocks. They work with both continuous and discrete messages.

5 INTERNALIZED FORMULA BUILDER ( GREEN CANVAS ) Several blocks in ADL contain an internalized logic canvas which can be accessed by doubleclicking on the block.

6 The green canvas is used to define user-made equations which will play an important role in the overall operation of the respective block. The icons from the Logical Operators, Numerical Operators, Variables, or Misc categories can be dragged onto the green canvas and linked together to define an equation. The Block Value Icon allows the user to reference the output of any other block in the algorithm. When dragged onto the canvas, the Block Value Icon will display a menu from which the user will be able to choose a block within the algorithm (except for the blocks contained in a virtualized block, which we ll cover in week 3). The Message Field Icon allows the user to extract certain information embedded within a discrete event message, such as a Fill Confirmation Message. When dragged onto the canvas, the Message Field Icon will display the following selectable fields: Field Description LimitPrice The price of the respective order or the order about to be submitted OrderQuantity The total order quantity of the respective order or the order about to be submitted WorkingQuantity The working quantity of the respective order or the order about to be submitted FillPrice Fill price FillQuantity Fill quantity CumQuantity Total filled quantity of the respective order

7 DisclosedQuantity The disclosed quantity or percentage (%) of total goal quantity viewable to the market DeletedQuantity The canceled quantity of the deleted order or the order about to be deleted TradeQuantity Quantity of the last trade for a specific instrument TradePrice Price of the last trade for a specific instrument StopTrigger The price at which the respective stop-limit or stop-market order is activated IsBuy When this field is selected, the respective block will evaluate the user's fill confirmations messages (not trade data message disseminated by the exchange) and will output a Boolean value of TRUE if the user's fill was a buy side execution IsQuotingOrder Applies to discrete event messages generated by an ASE (Autospreader) Order Block. The field will output a Boolean value of TRUE if the message was generated from an order submission for the quote leg of the respective spread IsHedgeOrder Applies to discrete event messages generated by an ASE (Autospreader) Order Block. The field will output a Boolean value of TRUE if the message was generated from an order submission for the hedge leg of the respective spread Instrument Instrument of the submitted order User Field 1-4 An empty field that can be populated with a value using a Value Injector Block. The value may then be extracted using a Value Extractor Block

8 BLOCKS ORDER BLOCK The Order Block will submit a buy or sell order to the exchange. When the current working order is executed, a discrete event message is generated from the Fills output port. Using the discrete event output ports allows for additional logic to be performed at several key moments during an order's lifecycle. For instance, the user may connect a Value Extractor Block to the Add OK port to take a snapshot when the Order Block receives an order add confirmation message from the respective exchange.

9 WHEN EXTERNAL MODIFICATION OCCURS: o Ignore: The Order Block will not go dormant when its child order is externally modified by a user. If the modification was a delete, the Order Block will immediately try to add another child order. If the modification involved a price or quantity change, the Order Block will honor the new price or quantity until one of its input values changes. o Stop Managing: If the user manually deletes or modifies an order generated by the Order Block, it will relinquish control over to the user, but a discrete event fill message will still be generated upon order executions. To be specific, the Order Block will ignore left-side inputs, but still generate values from the right-side outputs. If the user pauses and resumes the algorithm, the Order Block will attempt to re-locate its managed order and re-take control. If it cannot locate the order, the Order Block will compare the number of fills it has achieved so far against the user-specified input quantity and submit a new order for the remaining balance. o Detach: If the user manually deletes or modifies an order generated by the Order Block, it will completely relinquish control over to the user. To be specific, the Order Block will ignore left-side inputs and won t generate messages from the right-side outputs. The only setting that will still apply is the Leave Child Order On selection that the user makes. LEAVE CHILD ORDER ON: o Pause: When this option is checked, orders generated by the Order Block remain in the order book even if the algorithm is paused. o Cancel: When this option is checked, orders generated by the Order Block remain in the order book even if the algorithm is canceled.

10 DISCRETE ORDER BLOCK When a discrete event message triggers the Discrete Order Block, it submits a one-shot order for the specified instrument at the price, quantity, and condition specified by the user. A discrete event message is generated from the Add OK output upon receiving an order add confirmation. Using the discrete event output ports allows for additional logic to be performed at several key moments during an order's lifecycle. For instance, the user may connect a Value Extractor Block to the Add OK port to take a snapshot when the Order Block receives an order add confirmation message from the respective exchange. As the generated order is a "one-shot" order, the Discrete Order Block will not update the working order to reflect any changes in the inputs after the initial submission. However, the block will delete the working order when the user pauses or stops his algorithm. In addition, the block will not resubmit when the generated order is automatically or manually deleted. Double-click on the block to bring up the Block Editor:

11 Clicking on the formula links will display a green canvas where the user can specify the Price, Quantity, and Conditions that define the "one-shot" order which will be submitted by the Discrete Order Block when it is triggered by a discrete message. SIDE: Select Buy or Sell from the drop-down menu to designate an order entry side. FLIP FOR SELL: Just like the Order Block, the Discrete Order Block also has FlipForSell functionality. Many automated strategies in ADL will have nearly identical buy and sell side routines, with certain blocks acting as "pivot" points. To enable a single algorithm to act either as buy or sell side routine as needed, several blocks in ADL will have the option "Flip For Sell." This option enables them to perform an alternate function depending on the user's selection of the Order Side Variable (either BUY or SELL). The user must set this variable prior to launching an algorithm. When this functionality is enabled, the Discrete Order Block will either submit Buy or Sell orders depending on the user's selection of the Order Side Variable. The user may alter the Order Side variable by using the Order Side drop-down menu located on the right side of the ADL Toolbar.

12 TIF (Time-in-Force): Use the drop-down menu to select the time-in-force designation for the order. This allows traders to be more specific about the time parameters in which an order is activated. o Day: Order works until the close of the trading day, and then it is cancelled. o GTC: (Good Till Canceled): Order works until it is either completely filled, you cancel it, or the contract expires. o IOC (Immediate or Cancel): Order that immediately fills to the extent possible; the remaining balance is canceled. o FOK (Fill or Kill): Entire order fills immediately or the order is immediately canceled. LEAVE CHILD ORDER ON: o Pause: When this option is checked, orders generated by the Order Block remain in the order book even if the algorithm is paused. o Cancel: When this option is checked, orders generated by the Order Block remain in the order book even if the algorithm is canceled. TIME AND SALES BLOCK Whenever a trade occurs for the specified instrument, the Time And Sales Block outputs a discrete event message containing information regarding the last trade (trade price or quantity). You can use a MsgInfo Extractor, a Value Extractor, or a Value Accumulator Block to withdraw the information within these discrete event messages for later use in your algorithms.

13 GENERATOR BLOCK The Generator Block produces an empty discrete event message depending on what mode it is set to. The Generator Block can be used to trigger other Discrete Blocks at precise moments in time. Double-click on the block to bring up the Block Editor. MODES: o TimeInterval: When selected, the Generator Block will generate a discrete message at a time interval (in milliseconds) set by the user. The input Boolean ports allow you to enable the Generator Block when a Boolean output port of another block is true, and you have the option to set up repeating messages. If there is nothing connected to the repeating Boolean input, the Generator block will fire only once. Connect any numeric block to the periodms input port to determine the frequency (in milliseconds) of your output discrete messages.

14 o BoolChange: When selected, the Generator Block exposes a True/False input port. The block will generate a message when this True/False input changes from FALSE to TRUE and from TRUE to FALSE. o BoolTrue: When selected, the Generator Block exposes a True/False input port. The block will generate a message when this True/False input changes from FALSE to TRUE. o EveryStart: When selected, the Generator Block will generate a message at the launch of the algorithm and every time the algorithm is paused and then resumed. o InitialStart: When selected, the Generator Block generates a message once at the launch of the algorithm, and will be inactive for the life of the algorithm. o AtStartTime: When selected, the Generator Block exposes numeric input ports depending on the Connectors setting in the Block Editor. When UTC Time is

15 selected, the hour, minute, second, and millisecond input ports are exposed. With UTC Date, additional input ports for year, month, and day are enabled. The block will generate a single discrete message at the specified time and date set by the user. You must connect a numeric input into all exposed input ports. Currently, this block operates on the 24 hour clock in the UTC time zone. For example, if you want to generate a discrete message at 2pm CST, you would enter in 20 for the hour (8pm UTC). o UserTrigger: When selected, the Generator Block exposes a button in the Algo Dashboard. While the algo is running from the dashboard, the user can click the button to manually fire off a discrete message. We cover the Algo Dashboard in Week 3 of our 101 course. DETAILS ON TIMING When using the Generator Block, it is important to know the exact timing at which the discrete event messages are generated. When InitialStart or EveryStart is selected, the following sequence of events occurs when the algorithm is started: 1. All actor blocks (blocks that can take tangible actions such as placing an order) first perform their actions.

16 2. The Generator Block generates and pushes a discrete event message downstream. Example: Generator Block set to InitialStart In this example, the following sequence of events occurs when the algorithm is started: 1. The Order Block places an order at the best bid price of the selected instrument. 2. The Generator Block (set to InitialStart ) generates and pushes a discrete event message downstream, instructing the Order Block to delete the order. When a Generator Block with a Boolean input is selected, a continuous update changes the value of the Boolean input on the Generator Block and the following sequence of events occurs: 1. The Generator Block does not generate a discrete event message immediately. It allows the continuous update to propagate completely throughout the algorithm. 2. All actor blocks (blocks that can take tangible actions such as placing an order) first take their actions. 3. The Generator Block generates and pushes a discrete event message downstream.

17 BOOLEAN BLOCK The Boolean output will be TRUE or FALSE, whichever is set by the user (set by double-clicking on the block). The Boolean Block can be declared as a User Defined Variable. The Boolean Block can also be declared as an Order Side Variable, meaning that the value will alternate depending on the user's selection of the Order Side Variable. A User Defined Boolean Block can function effectively as an on/off "switch" to activate and deactivate parts of the user's algorithm.

18 MSGINFO EXTRACTOR BLOCK A discrete event message triggers the MsgInfo Extractor Block. Upon trigger, the MsgInfo Extractor takes a "snapshot" of the information specified by the user within the Block Editor. The user may check any of the message fields inside to expose the respective continuous output ports. You can only take a snapshot of information contained within the message. After the taking the snapshot, the MsgInfo Extractor Block first outputs the snapshot as a continuous message out of the continuous message port(s), then passes the original discrete message unchanged through its lower-right discrete message port. This block is beneficial to use as a tester to see what types of fields can be withdrawn from certain discrete message output ports. For example, the discrete message output from the Order Block s Fills port will contain different fields inside than discrete messages output from a Time and Sales Block.

19 VALUE EXTRACTOR BLOCK A discrete event message triggers the Value Extractor Block. Upon trigger, the Value Extractor takes a "snapshot" of the information specified by the user (specified by the Formula Builder within the Block Editor). The user may choose to take a snapshot of information contained within the message or information unrelated to the message. After the taking the snapshot, the Value Extractor Block first outputs the snapshot as a continuous message out of the continuous message port, then passes the original discrete message unchanged through its lower-right discrete message port. o As indicated by the yellow output port, the continuous output port can be a Numeric, True/False (Boolean) or an Instrument type depending on the type of information captured by the snapshot. The Value Extractor Block is commonly used to take a snapshot of information that may be constantly changing in the market, such as the bid quantity of a given instrument. By taking a snapshot, the user can capture the information at a single moment in time and use the "frozen" information later on even if the market continues to change. However, when a new discrete event message triggers the Value Extractor Block, the block will replace the old snapshot with a new one. The Value Extractor Block can also be used as a "toggle" to indicate the occurrence of a specific event in the market. To do this, the user can instruct a Value Extractor Block to take a snapshot of the numeric value "1" (in the internal logic canvas, drag and drop the "#" icon onto the canvas and input the value "1") when triggered by a discrete event message. Before the discrete event message occurs, the Value Extractor Block will output the default value of zero. However, when the discrete event message occurs, the Value Extractor Block will output a value of 1, indicating that the discrete event has occurred.

20 Double-click on the block to bring up the Block Editor. Clicking on the formula link will display the green canvas where the user can define an equation which will determine the specific value to be captured by the snapshot at the moment the block is triggered by a message. (Optional) The user can also set up the Value Extractor Block to delete its internal data extraction when a discrete event message triggers the Reset input port. VALUE ACCUMULATOR BLOCK A discrete event message triggers the Value Accumulator Block. Upon trigger, the Value Accumulator retrieves and accumulates a numeric value specified by the user (specified by the Formula Builder within the Block Editor). The user may extract a numeric value contained within the message or retrieve a value unrelated to the message. After the accumulation, it first outputs the accumulated value as a continuous message out of the continuous message port, and then passes the original discrete message unchanged through its lower-right discrete message port. (Optional) The user can also set up the Value Accumulator Block to delete its internal data collection when a discrete event message triggers the Reset input port. SEQUENCER BLOCK

21 The Sequencer Block allows the user to determine the precise order of propagation of the discrete event message. 1. A discrete event message enters the Sequencer Block. 2. The Sequencer Block channels the original message, unchanged, as #1. It waits until the message is processed completely downstream. 3. Afterwards, it generates and outputs another copy of the original message as #2. It waits until the message is processed completely downstream. 4. Afterwards, it generates and outputs another copy of the original message as #3. FUNNEL BLOCK The Funnel Block takes in a single discrete event message (either in1, in2, or in3) and simply passes it through, unchanged, out the discrete event message output port. ADL does not allow multiple entries into a single input of a single block.

22 The Funnel Block makes it possible to do so. Note that the messages in1, in2, and in3 will not pass through the block simultaneously since discrete event messages are always processed sequentially, one stream at a time. BRANCH BLOCK 1. The user defines a True/False statement for the YES output by double-clicking on the block and using the Formula Builder. 2. When a discrete event message enters the Branch Block, the block evaluates the statement. 3. If the statement resolves to a TRUE, the Block directs the original message, unchanged, through the YES output port. If the statement resolves to a FALSE, it directs the original message through the NO output port. ***Though both the Branch Block and the State Block look alike, they are fundamentally different. Whereas the State Block waits until one of the internalized True/False statements turns TRUE to output a message, the Branch Block immediately directs the incoming message either through the YES or the NO output port.

23 STATE BLOCK The user can define custom discrete events by double-clicking on the State Block and defining True/False statements within the Formula Builder. When these True/False statements turn TRUE, ADL will consider it as an occurrence of a discrete event. By default, the user may define up to two discrete events, but an option exists to allow the user to add extra slots and define more than two events (see: Formula Editor below for more information). After the statements are defined, the State Block must be triggered by a discrete event message. The block does not act upon the trigger, but merely becomes "loaded," and ready to "fire" a discrete event message from one of its outputs when a user-made True/False statement turns TRUE. When a user-made True/False statement turns TRUE, the State Block generates and outputs a discrete event message in the following manner: Outputs from #1 if the statement tied to the #1 output turned TRUE Outputs from #2 if the statement tied to #2 output turned TRUE Outputs a message from the top-most port when multiple True/False statements turn TRUE at once After outputting a discrete event message, the State Block must be reloaded by another incoming discrete event message. The State Block will not "queue" up multiple incoming discrete event messages. Even if multiple messages enter the State Block, the block can only output a single discrete event message. Double-click on the block to bring up the Block Editor and then open up the Formula Builder:

24 Using the left column, the user must first select a slot (each slot represents an output port). By using the Label text box, the user can also label the output port. Once an output port is selected, the user can define a custom discrete event in the form of True/False statement on the green canvas. When the equation resolves to a True, the State Block will output a discrete event message from the corresponding output port. You will need to create a formula for each slot in the left column in order for the State Block to function properly. By clicking on the "+" icon located at the bottom of the left column, the user can add extra slots and define an unlimited number of discrete output ports. As additional slots are added, corresponding output ports are automatically exposed on the right-side of the block. The user may remove output ports by selecting a slot, and then clicking the "-" icon. ***Though both the Branch Block and the State Block look alike, they are fundamentally different. Whereas the State Block waits until one of the internalized True/False statements turns TRUE to output a message, the Branch Block immediately directs the incoming message either through the YES or the NO output port.

25 MOVING AVERAGE BLOCK A discrete event message triggers the Moving Average Block. At this time, the block creates a new bar. Upon trigger, the Moving Average Block retrieves a numeric value specified by the user (specified by double-clicking on the block). The user may extract a numeric value contained within the discrete message or retrieve a value unrelated to it. The retrieved value will be assigned to the bar as the value that represents the bar. The bar is then added and stored within the block s internal collection. The Moving Average Block takes a certain number of bars (specified by the #Bars input port) and computes an average of those bars. The result is output from the Avg port. After the calculation, it passes on the original message unchanged through its Msg output port. (Optional) Ready Port: This port can be used to determine whether the block has collected sufficient number of bars to satisfy the #Bars input. If the block does not have sufficient number of bars, the Ready port will output False. When the block accumulates sufficient number of bars, the Ready port will output True. (Optional) The user can also set up the Moving Average Block to delete its internal data collection and reset the Avg output to a NaN (Not A Number) when a discrete event message triggers the Reset input port.

26 STOPWATCH BLOCK When a discrete event message enters its discrete input port, the Stopwatch Block evaluates its Stop Time formula (defined by the user in the Formula Builder) to get the stop time in milliseconds. After the specified stop time, the block sends a discrete event message through its output port. The Stopwatch Block must be reset with a new incoming discrete event message to repeat its operation. The Stopwatch Block allows you to set a custom timer interval instead of a fixed interval of 250 ms. You can also use the Formula Builder to extract numbers from discrete messages with the Message Field icon or reference another number on the Canvas with the Block Value icon. DISCRETE MIN-MAX BLOCK 1. A discrete event message triggers the Discrete Min/Max Block. 2. Upon trigger, the Discrete Min/Max Block retrieves a numeric value specified by the user (specified by the Formula Builder within the Block Editor). The user may extract a numeric value contained within the message or retrieve a value unrelated to it. 3. The extracted value is added to the block's internalized data collection. 4. The block then determines the Minimum/Maximum value among its collection. The result is output from the continuous output port. 5. After the evaluation, it passes on the original message unchanged through its right-side output port.

27 PAUSE BLOCK When a discrete event message triggers the block or the True/False input turns TRUE, the entire algorithm will be paused. This block is useful for stopping your algo when your desired action has been completed. Make sure that the Pause Block is the last block triggered in your logic or else your algo may pause before it completes the intended course of action. Once the algorithm has been paused in this manner, the user must resume the algorithm manually. *** All of the above material has been sourced with the help of the Trading Technologies website at

KGI HK SP Mobile User Manual

KGI HK SP Mobile User Manual KGI HK SP Mobile User Manual Version 1.1 May 2013 Contents 1 Login Process... 3 2 Home Menu... 5 3 Quotes and Orders... 6 3.1 Quote List... 6 3.2 Add product quote (with product code)... 7 3.3 Add product

More information

MetaTrader 4 for iphone. User Manual

MetaTrader 4 for iphone. User Manual MetaTrader 4 for iphone User Manual LOG IN - After downloading and installing the terminal from the itunes store you will see the Metatrader 4 icon added to your app list. Tap the Metatrader 4 icon to

More information

MetaTrader 4 for Android. User Manual

MetaTrader 4 for Android. User Manual MetaTrader 4 for Android User Manual LOG IN After downloading and installing the terminal from the Google Play store you will see the Metatrader 4 icon added to your app list. Tap the Metatrader 4 icon

More information

ROX Quick Start Manual

ROX Quick Start Manual ROX Systems, Inc. One Liberty Plaza 52 nd Floor New York, NY 10006 www.roxsystems.com 1(646)-586-2100 help@roxsystems.com en Español: www.roxsystems.mx Last Revised: 11/16/2016 Contents Getting Started...

More information

Aggregator FX. Client s manual.

Aggregator FX. Client s manual. Aggregator FX. Client s manual. 1 Table of contents INTRODUCTION 4 INSTALLATION 5 1. PROGRAM INSTALLATION 5 2. NETWORK SETTINGS 6 3. PASSWORD SETTINGS 6 VISUAL INTERFACE 7 1. WINDOWS ADJUSTMENT 8 2. READ

More information

Futures Q U I C K S TA R T G U I D E

Futures Q U I C K S TA R T G U I D E + Futures Q U I C K S TA R T G U I D E TABLE OF CONTENTS LOG IN 8 POSITIONS VIEW 5 TIME & SALES TAB 3 MARKETS VIEW 9 ACCOUNTS VIEW 6 RISK TAB 4 SELECT A CHAIN 0 FAVORITES 7 LOGGING OUT 5 ORDER TICKET TAB

More information

Frame Editor 2 Manual

Frame Editor 2 Manual Chaos Culture Frame Editor 2 Manual Setup... 2 Editing clips... 2 Editing basics... 4 Managing colors... 6 Using effects... 7 Descriptions of the effects... 9 Fixed velocity... 9 Random velocity... 9 Rotate...

More information

The DTN Portal. Offer Management System with Hedging. User Manual

The DTN Portal. Offer Management System with Hedging. User Manual The DTN Portal Offer Management System with Hedging User Manual The DTN Portal Today s Environment Makes it Difficult to Manage Offers Increased market volatility Frequent basis changes affecting cash

More information

FXCC MT4 Android Mobile User Guide

FXCC MT4 Android Mobile User Guide FXCC MT4 Android Mobile User Guide 1. INSTALLATION OF THE APP The Android mobile application can be downloaded from the Google Play Store on your Android mobile device: Press the Install button to start

More information

SaxoTraderPRO Intro guide

SaxoTraderPRO Intro guide SaxoTraderPRO Intro guide Table of Content SETTING UP THE WORKSPACE... page 3 SAVING AND MANAGING WORKSPACES (latest edition).............. page 7 WATCHLIST MANAGEMENT... page 8 OPENING ONE OR MANY CHART

More information

Table of Contents 2 QST MOBILE APPLICATION FOR IPHONE

Table of Contents 2 QST MOBILE APPLICATION FOR IPHONE Table of Contents What is this application? Logging in Login screen Login options Entering and viewing contracts Pages Contracts About Quote Detail page Contract Details Symbol Search Block Trades Charts

More information

LION Android Trader. User Manual

LION Android Trader. User Manual LION Android Trader User Manual 1 Contents Download Logon P3 P4 Menu Menu Rates Accounts Orders Positions History Charts Instruments Settings P5 P6 P7 P8 P9 P10 P11 P12 P13 Trade Open a New Position(Market

More information

BTS Trading Station. Quick Reference Guide Cash Markets

BTS Trading Station. Quick Reference Guide Cash Markets BTS Trading Station Quick Reference Guide Cash Markets Contents Quick Reference Guide 1.0 Getting Started 4 1.1 Application Layout 4 1.2 User Login and Password Management 4 1.3 Default Set Up 5 1.4 Virtual

More information

What is DealBook WEB?

What is DealBook WEB? What is DealBook WEB? DealBook WEB helps you trade quickly from anywhere you can connect to the Internet. A browser-based application, DealBook WEB provides a simple platform for beginning traders as well

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

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

Qurrex mathcing module. Specification. https://qurrex.com/

Qurrex mathcing module. Specification. https://qurrex.com/ Qurrex mathcing module Specification https://qurrex.com/ Table of contents Introduction... 2 Module description... 3 Matching auction... 3 Features of the current implementation... 3 Types of messages...

More information

UTRADE Stock Options User Guide

UTRADE Stock Options User Guide UTRADE Stock Options User Guide Last Updated on June 2017 Contents 0. Installation & System Requirement 1. Login & Logout 2. Password Setting 3. Price Quote 4. Order Instructions 5. Order Enquiry 6. Account

More information

SW860 FlukeView Software

SW860 FlukeView Software SW860 FlukeView Software Version 2 (Windows and DOS) Users Manual PN 944520 January 1995 Rev. 1 12/95 1995 Fluke Corporation, Inc. All rights reserved. Printed in U.S.A. All product names are trademarks

More information

Online Demo Scheduling Tool: User Guide

Online Demo Scheduling Tool: User Guide Unrestricted Internal Use - Carestream Health, 2013 1 Online Demo Scheduling Tool: User Guide This document provides step by step instructions on how to successful use the Online Demo Scheduling tool for

More information

R. J. O Brien & Associates. RJO WebOE. WebOE User Manual. July 2017 Version 2.4

R. J. O Brien & Associates. RJO WebOE. WebOE User Manual. July 2017 Version 2.4 R. J. O Brien & Associates RJO WebOE WebOE User Manual July 2017 Version 2.4 Contents Getting Started... 2 Tool Bar... 4 The Order Log... 9 Viewing Orders... 9 Quick Cancel... 9 Right Click Context Menu...

More information

Altus Call Recording. Dashboard Admin User Guide. Document Version Maryland Way, Suite 300 Brentwood, TN Tel

Altus Call Recording. Dashboard Admin User Guide. Document Version Maryland Way, Suite 300 Brentwood, TN Tel Altus Call Recording Dashboard Admin User Guide Document Version 1.3 5121 Maryland Way, Suite 300 Brentwood, TN 37027 Tel +1 615.465.4001 WWW.ALTUSUC.COM Table of Contents About This Document... 5 1.1

More information

SaxoTraderPRO Intro guide

SaxoTraderPRO Intro guide SaxoTraderPRO Intro guide Table of Content SETTING UP THE WORKSPACE... page 3 SAVING AND MANAGING WORKSPACES... page 7 WATCHLIST MANAGEMENT... page 8 OPENING ONE OR MANY CHART MODULES... page 10 TRADE

More information

Contents 1. INTRODUCTION OVERVIEW GETTING STARTED... 7

Contents 1. INTRODUCTION OVERVIEW GETTING STARTED... 7 sin 2.9 Contents 1. INTRODUCTION...4 2. OVERVIEW...6 3. GETTING STARTED... 7 3.1 INSTALLING PROFIT... 8 3.2 LOGGING IN TO PROFIT... 9 3.3 FUNDING YOUR PROFIT ACCOUNT... 10 3.4 VIEWING THE PROFIT WORKSPACE

More information

BISTECH Pre-Trade Risk Management

BISTECH Pre-Trade Risk Management BISTECH Pre-Trade Risk Management User Guide BORSA İSTANBUL A.Ş. Version: 1.2 CONTENT 1. INTRODUCTION... 4 1.1. PURPOSE... 4 1.2. AUDIENCE... 4 1.3. DEFINITIONS... 4 2. OVERVIEW... 4 3. USER TYPES... 5

More information

POS Register Instructions

POS Register Instructions POS Register Instructions Updated April 29, 2016 Prepared by Tina Leinbaugh I. Daily Start-Up... 1 A. Receipt Printer ON... 1 B. The Screen should be ON... 1 C. Turn the Computer ON... 1 II. Start of Shift...

More information

Investnet User Manual INVESTNET USER MANUAL. Powered by FLIP 1

Investnet User Manual INVESTNET USER MANUAL. Powered by FLIP 1 INVESTNET USER MANUAL Powered by FLIP 1 Powered by FLIP 2 CONTENTS Investnet User Manual 1 SYSTEM OVERVIEW... 4 1.1 GENERAL LAYOUT... 4 2 FILE MENU... 5 2.1 CHANGE PASSWORD... 5 2.2 LOGIN HISTORY... 6

More information

Report Designer. Sage Business Intelligence 2013

Report Designer. Sage Business Intelligence 2013 Report Designer Sage Business Intelligence 2013 Reports Designer This guide will provide you with an understanding of the Reports Designer and how it is used in Sage 50 Intelligence. In this lesson, you

More information

BOSCH PRAESIDEO MESSAGE SCHEDULER

BOSCH PRAESIDEO MESSAGE SCHEDULER EIGER SOLUTIONS LIMITED BOSCH PRAESIDEO MESSAGE SCHEDULER Installation and Operation Manual Eiger Solutions 9/28/2011 Manual for the Message Scheduler Programme for the Bosch Praesideo Network Controller.

More information

iphone Trader Login The 5 Main Sections - Favorites - Rates - Positions - History - More

iphone Trader Login The 5 Main Sections - Favorites - Rates - Positions - History - More iphone Trader Login - How to Login - Servers - Save password - Opening a demo account The 5 Main Sections - Favorites - Rates - Positions - History - More - Calendar - News - Mail - Contacts Functionality

More information

Dynamics 365 for Customer Service - User's Guide

Dynamics 365 for Customer Service - User's Guide Dynamics 365 for Customer Service - User's Guide 1 2 Contents Dynamics 365 for Customer Service - User's Guide...9 Improve customer service with better automation and tracking...9 Create queue and route

More information

2 The Stata user interface

2 The Stata user interface 2 The Stata user interface The windows This chapter introduces the core of Stata s interface: its main windows, its toolbar, its menus, and its dialogs. The five main windows are the Review, Results, Command,

More information

ComTrader 2.7 Color Theme User Manual

ComTrader 2.7 Color Theme User Manual Color Theme User Manual User Manual Table of Contents 1 Introduction... 1 1.1 About this Document... 1 2 Resource file... 1 2.1 General expressions... 2 2.1.1 Base... 3 2.1.2 Secondary-window... 3 2.1.3

More information

ZeroWeb Manual. Securities offered to you by TradeZero America, Inc. Page 1 of 11

ZeroWeb Manual. Securities offered to you by TradeZero America, Inc. Page 1 of 11 ZeroWeb Manual Securities offered to you by TradeZero America, Inc Page 1 of 11 Contents WATCH LIST...3 CHARTS...4 LEVEL 2, TIME and SALES, ORDER ENTRY...6 SHORT LIST and LOCATES...7 NEW WINDOWS and LAYOUT...8

More information

Compatible with TradeStation 9.5! for TradeStation

Compatible with TradeStation 9.5! for TradeStation Compatible with TradeStation 9.5! for TradeStation BAR ANALYZER Version 4.0 Market Indicator The BAR ANALYZER allows traders to visualize the forces inside a price bar. Using advanced concepts that include

More information

Telerik Corp. Test Studio Standalone & Visual Studio Plug-In Quick-Start Guide

Telerik Corp. Test Studio Standalone & Visual Studio Plug-In Quick-Start Guide Test Studio Standalone & Visual Studio Plug-In Quick-Start Guide Contents Create your First Test... 3 Standalone Web Test... 3 Standalone WPF Test... 6 Standalone Silverlight Test... 8 Visual Studio Plug-In

More information

Electronic Sales Platform User s Manual

Electronic Sales Platform User s Manual Electronic Sales Platform User s Manual Version 1.1 2018 St. Petersburg 2 CONTENTS Preface... 3 1 Introduction... 4 1.1 Workstation Requirements and Settings... 4 1.2 Starting application... 5 2 Summary

More information

NASDAQ OMX COMMODITIES Genium INET Pre-trade Risk Management Service Guide 1.0

NASDAQ OMX COMMODITIES Genium INET Pre-trade Risk Management Service Guide 1.0 NASDAQ OMX COMMODITIES Genium INET Pre-trade Risk Management Service Guide 1.0 DOCUMENT SCOPE This document describes the NASDAQ OMX Genium INET Pre-Trade Risk Management (PRM) service, offered by NASDAQ

More information

LiveProfessor 2. User Manual. Rev audiostrom.com

LiveProfessor 2. User Manual. Rev audiostrom.com LiveProfessor 2 User Manual Rev 1.0 - audiostrom.com Contents Introduction 4 System Requirements 4 License files 4 First Run 5 Installing Plugins Plugin Manager Audio Settings MIDI Inputs 7 Replacing A

More information

EGGERS ONLINE. Customer User Guide - Quoting

EGGERS ONLINE. Customer User Guide - Quoting EGGERS ONLINE Customer User Guide - Quoting URL: www.eggersindustriesonline.com or www.eggersindustries.com (Customers / Eggers Online) You are strongly encouraged to change your initial password see 'CHANGING

More information

SUPERPLEX 2. User s Manual. High performance, simplified wireless home security controller. Products that work. Software Release: V2.

SUPERPLEX 2. User s Manual. High performance, simplified wireless home security controller. Products that work. Software Release: V2. SUPERPLEX 2 User s Manual Products that work Software Release: V2.0 KE-MOBILEHQ-12- High performance, simplified wireless home security controller Thank you for purchasing this Kingdom Electronics product.

More information

SmartView. User Guide - Analysis. Version 2.0

SmartView. User Guide - Analysis. Version 2.0 SmartView User Guide - Analysis Version 2.0 Table of Contents Page i Table of Contents Table Of Contents I Introduction 1 Dashboard Layouts 2 Dashboard Mode 2 Story Mode 3 Dashboard Controls 4 Dashboards

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

Specialized Quote Interface (SQF) VERSION 6.4N October 31, 2017

Specialized Quote Interface (SQF) VERSION 6.4N October 31, 2017 Specialized Quote Interface (SQF) VERSION 6.4N October 31, 2017 Nasdaq Options Market Nasdaq PHLX Nasdaq BX Options Specialized Quote Interface Version 6.4n Version 6.4n Page 1 Table of Contents 1 Overview...

More information

The Sales Rep s Guide to Using Drive

The Sales Rep s Guide to Using Drive The Sales Rep s Guide to Using Drive Table of Contents Activate Drive 2 Add Media 2 Copy from Library 2 Record Media 3 Upload File 3 Send Videos 3 Edit Metadata 4 Edit Chapters & Slide Timings 4 Add/Edit

More information

U.S. Pharmacopeia Pharmacopeial Forum. USP-PF Online Quick Start Guide

U.S. Pharmacopeia Pharmacopeial Forum. USP-PF Online Quick Start Guide U.S. Pharmacopeia Pharmacopeial Forum USP-PF Online Quick Start Guide Contents GETTING STARTED... 2 Document Conventions... 2 Technical Requirements... 2 LOGIN AND LOGOFF... 2 Logging On... 3 Logging Off...

More information

Tutorial 3: Using the Waveform Viewer Introduces the basics of using the waveform viewer. Read Tutorial SIMPLIS Tutorials SIMPLIS provide a range of t

Tutorial 3: Using the Waveform Viewer Introduces the basics of using the waveform viewer. Read Tutorial SIMPLIS Tutorials SIMPLIS provide a range of t Tutorials Introductory Tutorials These tutorials are designed to give new users a basic understanding of how to use SIMetrix and SIMetrix/SIMPLIS. Tutorial 1: Getting Started Guides you through getting

More information

Dallas Area Rapid Transit

Dallas Area Rapid Transit Dallas Area Rapid Transit Submit Bid Response User Guide If you have any questions or need help, please contact DART Procurement at (214)749-2701 (8:00am to 5:00pm CST) or send an email to Psupport@dart.org.

More information

MAS 90/200 Intelligence Tips and Tricks Booklet Vol. 1

MAS 90/200 Intelligence Tips and Tricks Booklet Vol. 1 MAS 90/200 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...

More information

Nasdaq ISE Trade Combo Feed Specification VERSION AUGUST 23, 2017

Nasdaq ISE Trade Combo Feed Specification VERSION AUGUST 23, 2017 Nasdaq ISE Trade Combo Feed Specification VERSION 1.0.1 AUGUST 23, 2017 Nasdaq ISE Trade Combo Feed Version 1.01 Nasdaq ISE Trade Combo Feed Table of Contents 1. Overview 3 2. Architecture 4 3. Data Types

More information

[ScalpTool Technical User Guide]

[ScalpTool Technical User Guide] [ScalpTool Technical User Guide] Revision History Version Date Revision Description 1.0 8/21/2011 First revision 1.1 4/2/2012 Add images in some commands ii Table of Contents ScalpTool Table of Contents

More information

SUPERPLEX. User s Manual. High performance, simplified wireless home security controller. Products that work. Software Release: V2.

SUPERPLEX. User s Manual. High performance, simplified wireless home security controller. Products that work. Software Release: V2. SUPERPLEX User s Manual Products that work Software Release: V2.5 KE-MOBILEHQ-12- High performance, simplified wireless home security controller Thank you for purchasing this Kingdom Electronics product.

More information

NASDAQ NORDIC Genium INET Pre-trade Risk Management Service Guide 2.2

NASDAQ NORDIC Genium INET Pre-trade Risk Management Service Guide 2.2 NASDAQ NORDIC Genium INET Pre-trade Risk Management Service Guide 2.2 DOCUMENT SCOPE This document describes the NASDAQ Nordic Genium INET Pre-Trade Risk Management (PRM) service, offered by NASDAQ Stockholm

More information

Nintex Reporting 2008 Help

Nintex Reporting 2008 Help Nintex Reporting 2008 Help Last updated: Thursday, 24 December 2009 1 Using Nintex Reporting 2008 1.1 Chart Viewer Web Part 1.2 Importing and Exporting Reports 1.3 Import Nintex report page 1.4 Item Level

More information

FXCC MetaTrader 4 User Guide

FXCC MetaTrader 4 User Guide FXCC MetaTrader 4 User Guide Content 1. Installing MetaTrader 4 2. Using MetaTrader 4 3. Customizable Toolbar 4. The Market Watch Window 5. Charts 6. Indicators 7. Trading Options 8. Closing a Position

More information

PART 1 - GETTING STARTED LOGIN AND LOGOUT OF EFUTURES... 3

PART 1 - GETTING STARTED LOGIN AND LOGOUT OF EFUTURES... 3 Contents PART 1 - GETTING STARTED... 3 1.1 LOGIN AND LOGOUT OF EFUTURES... 3 PART 2 - MARKET... 6 2.1 UNDERLYER PRICE... 6 2.2 PRICE DEPTH... 8 2.3 MARKET STATUS... 9 2.4 CLOCK... 10 2.5 FX RATIO... 11

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

MetaTrader 4 USER GUIDE

MetaTrader 4 USER GUIDE MetaTrader 4 USER GUIDE MT4 Chart Software Manual Table of Contents Introduction 1 MT4 Download link 2 Installing of MT4 3 Alice Blue Indicator 4 Alice Blue Scanner 5 Alice Blue One Click Trading 6 Alice

More information

Table of Contents. Contents. 1 Introduction. 2 The Main Menu Step #2 - PM Schedule. 8 Notification Popups. 9 Service Calendar

Table of Contents. Contents. 1 Introduction. 2 The Main Menu Step #2 - PM Schedule. 8 Notification Popups. 9 Service Calendar Contents I Table of Contents 1 Introduction...1 2 The Main Menu...1 3 The Equipment...3 Manager...6 4 Step #1 - Establishing Locations/Categories...6 5 Step #2 - PM Schedule Setup...9 6 Step #3 - Adding

More information

EXCHANGE AUDIT TRAIL REQUIREMENTS: FREQUENTLY ASKED QUESTIONS

EXCHANGE AUDIT TRAIL REQUIREMENTS: FREQUENTLY ASKED QUESTIONS EXCHANGE AUDIT TRAIL REQUIREMENTS: FREQUENTLY ASKED QUESTIONS NFX Website: business.nasdaq.com/futures 1: What are the audit trail requirements with Direct Access? Pursuant to Chapter V, Section 4, Clearing

More information

ArtOfTest Inc. Automation Design Canvas 2.0 Beta Quick-Start Guide

ArtOfTest Inc. Automation Design Canvas 2.0 Beta Quick-Start Guide Automation Design Canvas 2.0 Beta Quick-Start Guide Contents Creating and Running Your First Test... 3 Adding Quick Verification Steps... 10 Creating Advanced Test Verifications... 13 Creating a Data Driven

More information

BroadCloud PBX Call Recording

BroadCloud PBX Call Recording BroadCloud PBX Call Recording Dashboard Admin User Guide Document Version 1.1 9737 Washingtonian Boulevard, Suite 350 Gaithersburg, MD 20878 Tel +1 301.977.9440 WWW.BROADSOFT.COM BroadWorks Guide Copyright

More information

USER MANNUAL. Version 1.9.6

USER MANNUAL. Version 1.9.6 USER MANNUAL Version 1.9.6 Table of Contents 1. About this Document... 3 2. Manuscript Composition... 4 3. Getting Started... 4 3.1 BIPL Direct Login... 4 3.1.1 To log on to BIPL Direct... 5 3.1.2 Server

More information

Managing Your Reminders and Contact History in Contact Manager

Managing Your Reminders and Contact History in Contact Manager Managing Your Reminders and Contact History in Contact Manager Copyright 2016 TABLE OF CONTENTS Unit 1: Finding an Account in Contact Manager 1 Using the Incremental Search Tool 1 Using the Navigation

More information

Machine and Contract Setup

Machine and Contract Setup Machine and Contract Setup Updated July 2016 Contents About Machine and Contract Setup...3 Machine Detail...3 Machine Depreciation...4 Creating Database Records...5 Printing the Depreciation Report...5

More information

FXCC MetaTrader 4 User Guide

FXCC MetaTrader 4 User Guide FXCC MetaTrader 4 User Guide 1. Installing MetaTrader 4 Once you have downloaded the MT4 executable program and saved this to your desktop, installation is fast and simple. 1. Double-click the MetaTrader

More information

Vendor Registration and Training

Vendor Registration and Training Vendor Registration and Training Bid Express Registration Guide Bid Express Vendor Guide February 2015 Prepared By Address: 5700 SW 34th Street, Suite 1235, Gainesville, Florida 32608-5371 Web: www.infotechfl.com

More information

Salesforce Classic Guide for iphone

Salesforce Classic Guide for iphone Salesforce Classic Guide for iphone Version 35.0, Winter 16 @salesforcedocs Last updated: October 27, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Upgrading NIOS Software

Upgrading NIOS Software Upgrading NIOS Software Infoblox frequently releases updated NIOS software. Contact Infoblox Technical Support to learn which file name to use when downloading a new upgrade file, or watch your email for

More information

Release Notice. Version Release Date: June 12, (440)

Release Notice. Version Release Date: June 12, (440) Release Notice Version 5.7.57 Release Date: June 12, 2017 www.sedonaoffice.perennialsoftware.com (440) 247-5602 Table of Contents About this Document... 5 Overview... 5 Applications Enhancements/Improvements...

More information

User Manual. SmartLite WebQuiz SQL Edition

User Manual. SmartLite WebQuiz SQL Edition User Manual SmartLite WebQuiz SQL Edition SmartLite WebQuiz SQL All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including

More information

Sienna Database System is the ONLY Small Games of Chance reporting software that has 0 EVER been approved by the PA Dept.

Sienna Database System is the ONLY Small Games of Chance reporting software that has 0 EVER been approved by the PA Dept. Sienna Database System is the ONLY Small Games of Chance reporting software that has 0 EVER been approved by the PA Dept. of Rev EVERY YEAR TABLE OF CONTENTS *SELECT ITEM TO JUMP TO DESIRED PAGE* NEW CATEGORY..

More information

Salesforce Classic Mobile Guide for iphone

Salesforce Classic Mobile Guide for iphone Salesforce Classic Mobile Guide for iphone Version 41.0, Winter 18 @salesforcedocs Last updated: November 30, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

RIT VBA API Tutorial

RIT VBA API Tutorial RIT User Guide Build 1.02 RIT VBA API Tutorial Table of Contents Introduction... 2 Introduction to Excel VBA (Developer)... 3 VBA API Commands for RIT... 10 VBA API Initialization... 11 Algorithmic Trading

More information

Project Manager User Manual

Project Manager User Manual Project Manager User Manual Overview Welcome to your new Project Manager application. The Project Managaer is implemented as a web site that interfaces to an SQL database where all of the project and time

More information

UNDP etendering: User Guide for Bidders. January 2018

UNDP etendering: User Guide for Bidders. January 2018 UNDP etendering: User Guide for Bidders January 2018 Quick References to the Guide The UNDP etendering Guide for Bidders is a manual for individuals or companies who wish to participate in a UNDP tender

More information

TC200 Operation & Installation Guide. Revision 1.0

TC200 Operation & Installation Guide. Revision 1.0 TC200 Operation & Installation Guide Revision 1.0 2006 2007 Monit Limited. Product of New Zealand. Introduction Thank you for your purchase of this rally computer product. At monit, we take pride in everything

More information

QSalesData User Guide

QSalesData User Guide QSalesData User Guide Updated: 11/10/11 Installing the QSalesData Software... 2 Licensing the QSalesData Product... 3 Build QSalesData fields in ACT Step 2 of Install Checklist... 4 Adding the QB Data

More information

Developing with VMware vcenter Orchestrator

Developing with VMware vcenter Orchestrator Developing with VMware vcenter Orchestrator vcenter Orchestrator 4.2.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a

More information

Annexure 1 [Algo Test Lab Services User Manual]

Annexure 1 [Algo Test Lab Services User Manual] Annexure 1 [Algo Test Lab Services User Manual] Page 1 of 23 Presto Back Testing Tool A. Introduction Back Testing is the process of testing a trading strategy on prior time periods. By using this, a trader

More information

Entering a Purchase Order (Formerly DPO) - DO NOT USE SAFARI

Entering a Purchase Order (Formerly DPO) - DO NOT USE SAFARI Entering a Purchase Order (Formerly DPO) - DO NOT USE SAFARI Select the Finance Tab at the top right of the screen. Select Purchase Orders from menu list on the left side of page. Select or to start a

More information

Skill Set 3. Formulas

Skill Set 3. Formulas Skill Set 3 Formulas By the end of this Skill Set you should be able to: Create Simple Formulas Understand Totals and Subtotals Use Brackets Select Cells with the Mouse to Create Formulas Calculate Percentages

More information

DecisionPoint For Excel

DecisionPoint For Excel DecisionPoint For Excel Getting Started Guide 2015 Antivia Group Ltd Notation used in this workbook Indicates where you need to click with your mouse Indicates a drag and drop path State >= N Indicates

More information

TealTime User's Manual. Table of Contents

TealTime User's Manual. Table of Contents TealTime User's Manual Program Version 1.2.0 Last Updated: January 24, 2010 Table of Contents Chapter 1 Quick Start... 2 Description...2 Overview...2 Current Timer...2 Timer List...2 Chapter 2 3D World

More information

Instructor Info: Dave Tucker, LSSMBB ProModel Senior Consultant Office:

Instructor Info: Dave Tucker, LSSMBB ProModel Senior Consultant Office: This course is intended for previous Users of Process Simulator who have completed Basic Training but may not have used the software for a while. Our hope is that this training will help these Users brush

More information

Reminders. Overview. Creating a Scheduled Reminder

Reminders. Overview. Creating a Scheduled Reminder Reminders Overview Two types of reminders are available in OU Campus: scheduled and stale. Reminders can be set on pages and binary files. Reminder notifications can be sent to a user or a group, and can

More information

Zelio Logic 2 Online Help

Zelio Logic 2 Online Help Page 1 of 234 Zelio Logic 2 Online Help Overview of the Zelio Soft 2 Software At a Glance Subject of this Section This section provides an overview of the Zelio Soft 2 software. What's in this Part? This

More information

Mobile Application User Guide

Mobile Application User Guide Mobile Application User Guide SwipeSimple ios version 3.0 1 Contents 3 Part 1: Getting Started 3 Downloading the app 4 Signing in 5 Familiarizing yourself with the interface 19 Part 5: Items 19 Sorting

More information

Style Report Enterprise Edition

Style Report Enterprise Edition INTRODUCTION Style Report Enterprise Edition Welcome to Style Report Enterprise Edition! Style Report is a report design and interactive analysis package that allows you to explore, analyze, monitor, report,

More information

Electronic Record Keeping System (ERKS)

Electronic Record Keeping System (ERKS) Electronic Record Keeping System (ERKS) User Manual Table of Contents INTRODUCTION 1 ERKS CAPABILITIES 1 ERKS COMPONENTS 2 THE AIRCRAFT DIGITAL LOGBOOK (ADL) THE VIEWERS (ARM & ARR) THE DIGITAL RECORD

More information

Chapter 11 Running the Model

Chapter 11 Running the Model CHAPTER CONTENTS Simulation Menu 568 Section 1 Simulation Options...569 General Options & Settings 570 Output Reporting Options 572 Running a Specific Replication 574 Customized Reporting 574 Section 2

More information

FLP Merchant Website. User Guide. Version 0.14

FLP Merchant Website. User Guide. Version 0.14 FLP Merchant Website User Guide Version 0.14 Revision History Responsible Revision Date Version Vitalii Vysotskyi Created the initial version of the user guide 2017-11-28 0.1 Vitalii Vysotskyi Small updates

More information

WORKFLOW BUILDER TM FOR MICROSOFT ACCESS

WORKFLOW BUILDER TM FOR MICROSOFT ACCESS WORKFLOW BUILDER TM FOR MICROSOFT ACCESS Application Guide Version 06.05.2008 This document is copyright 2007-2008 OpenGate Software. The information contained in this document is subject to change without

More information

Contents I Table of Contents 1 Introduction...1 2 The Main Menu...1 3 The Equipment...2 Manager...5 4 Step #1 - Establishing Locations/Categories...6 5 Step #2 - Defining your PM Schedules...9 6 Step #3

More information

Capstone Appendix. A guide to your lab computer software

Capstone Appendix. A guide to your lab computer software Capstone Appendix A guide to your lab computer software Important Notes Many of the Images will look slightly different from what you will see in lab. This is because each lab setup is different and so

More information

Paperless Tax Office Automation

Paperless Tax Office Automation _ Topics in this Quick Start Guide Key steps for using GruntWorx in your tax practice How to submit jobs How to Populate UltraTax CS client tax files with GruntWorx How to purchase GruntWorx credits and

More information

1. Adding an instrument and setting its properties. Open Instrument Explorer window from VQ View menu. Right click and select New Instrument.

1. Adding an instrument and setting its properties. Open Instrument Explorer window from VQ View menu. Right click and select New Instrument. 1. Adding an instrument and setting its properties Open Instrument Explorer window from VQ View menu. Right click and select New Instrument. Fill in instrument details Click OK. AAPL instrument will be

More information

PayFirst Salon User Guide:

PayFirst Salon User Guide: PayFirst Salon User Guide: This user guide will outline basic system functionality such as: Logging into System Back Office Setup Setting up Employees Menu Setup Retail Product Setup Creating Package Setup

More information

Treasury Management User Guide. Online Banking

Treasury Management User Guide. Online Banking Treasury Management User Guide Online Banking Released August 2018 Treasury Management... 4 Logging in to Treasury Management...5 Helpful Hints...10 User Menu... 12 Profile and Preferences... 12 Notification

More information

General User Manual. Copyright , Better Days Enterprises, LLC West Main Street #119 Rapid City, SD

General User Manual. Copyright , Better Days Enterprises, LLC West Main Street #119 Rapid City, SD General User Manual Copyright 2008-2012, Better Days Enterprises, LLC. 3213 West Main Street #119 Rapid City, SD 57702-2314 Revision: February 4, 2012 Version: 1.917 CleverQ General User Manual Table of

More information