How to use WinAnt to run JTAP

Size: px
Start display at page:

Download "How to use WinAnt to run JTAP"

Transcription

1 Table of Contents How to use WinAnt to run JTAP... 2 Running JTAP game server and clients separately... 3 Trading Strategies... 4 Bidding strategy:... 4 Investment strategy:... 4 JTAP Market Manual... 6 Configuration In cat.params... 7 Traders Design Terminology... 8 Trading Strategies... 9

2 How to use WinAnt to run JTAP Step 1: Download and Install the latest version of SUN JDK from Step 2: For Windows system, download and install the latest version of WinAnt from you will need to install JDK first, because WinAnt will ask you to allocate the JDK folder when being installed, and you will need to log off / reset the computer after WinAnt is installed. For Mac system, Ant should be already installed and can be run from your terminal. Step 3: Download and unzip the latest version of JTAP from i.e. under E:\JTAP_Traders The manual is located in the doc folder and called JTAP Traders Design Manual Step 4: Open your terminal, and then navigate to the folder where you have unzipped JTAP, for example E:\JTAP_Trader Step 5: Once there, you can use the command $: ant all to build the.jar file in the same directory, and then use command $: ant run if you are under main JTAP folder OR $: java -jar jtap_0.17_all.jar, The above commands will run JTAP with default parameters (.params files under params folder) If you want to use other parameters to run JTAP, you will need to specify which.params file you want JTAP to run with. i.e. $: ant run -Dparams=params/another.params under main JTAP folder OR $: java -jar jtap_0.17_all.jar params/another.params

3 Running JTAP game server and clients separately All the above methods launch a complete JTAP game, including a JTAP game server, a set of competing specialists, and a set of trading agents. In certain scenarios, you may need to run the game server and the clients separately, e.g., during a JTAP tournament. To run a JTAP server only, run $ ant server To run a JTAP server and a set of trading agents only, run $ ant servermarkets This is typically when the JTAP tournament organizers run the JTAP game server and provide the trading agents themselves. To start a set of trading agents only, run $ ant traders Again, additional -Dparams=params/JTAP.params can be added in these commands when you choose to use a configuration file other than the default params/jtap.params. NOTE: When you run a JTAP game with the game server and clients separately, make sure that the configuration files used by the game server and the separated clients all use the socket-based method to communicate with each other since the alternative methods do NOT support interprocess communication.

4 Trading Strategies The trading strategy is divided in to two classes Bidding Strategy and Investment Strategy: Bidding strategy: This strategy is associated to each market, i.e. trader should decide one bidding strategy for each market. Note that, trader can use a single bidding strategy for different markets. We have provided one abstract bidding strategy and a simple example in the source code. There is one key function in the AbstractBiddingStrategy class: public boolean timetoshout(); This function helps traders decides whether or not to shout and if it is time to shout, the price and the quantity of the shout. Investment strategy: This is the section of the program where the investment decision goes. For example, how to allocate investment to all available markets and what bidding strategy should be used for each market. AbstractInvestmentStrategy class proposed a basic structure of the strategy. It contains the following two key functions. public void revise(); Revise function will be used to decide the trader's market portfolio, i.e. market selection, bidding strategy selection, etc. This function can be called anytime during the game to revise the trader's decisions. public void addinvest(double amount); This function decides how to distribute investment among all selected markets. Note: Participates are free to choose their own strategy structure design. The sample strategies offered in the code are just samples, which may not necessarily meet your need.

5 Traders JTAP Trading Agent Strategy 1 Strategy 2 Strategy 3 Investment Strategy Bidding Strategy Revise() Buy/Sell AddInvest() Investment Amount Timetoshout() Price Timetoshout() Quantity

6 JTAP Market Manual STG consists of a number of days (500 in the trail run), each day consists of 10 rounds, and each round lasts for a number of milliseconds. Traders submit shouts at the beginning of each round, and at the end of the round, markets will clear the shouts it received during that round. Market will also send out the average clearing price (market price) for that round's matching. Traders can use this information to analyse the market and make decisions. This information is stored in the MarketData for traders. Traders can access these data by using the following command inside their trading strategies: agent.getmarketdata(marketid).getmarketpricehistory(numofdays); Will return the market price for the specific day, which sets back the number of \numofdays". agent.getmarketdata(marketid).getmarketpricehigh(numofdays); Will return the highest market price in the past number of \numofdays". agent.getmarketdata(marketid).getmarketpricelow(windowsize); Will return the lowest market price in the past number of \numofdays". agent.getmarketdata(marketid).getmarketmeanpriceoflast(windowsize); Will return the mean market price in the past number of \numofdays". agent.getmarketdata(marketid).getmarketmeanprice(); Will return the mean market price so far. agent.getmarketdata(marketid).getmarketprice(); Will return the latest market price. agent.getmarketdata(marketid).getclosingprice(); Will return the latest closing price.

7 Configuration In cat.params The following segment defines trading agents configuration. The parameter base for trading agents is JTAP.agent. ############################################################### # trading agents # trading agents JTAP.agent.n = 5 size = 1 JTAP.agent.0 = edu.cuny.jtap.traderclient JTAP.agent.0.n = &size; cat.agent.0.id = trader1 cat.agent.0.investmentstrategy = edu.cuny.cat.trader.strategy.sampleinvestmentstrategy cat.agent.0.investmentstrategy.biddingstrategy = edu.cuny.cat.trader.strategy.samplebiddingstrategy cat.agent.0.investmentstrategy.biddingstrategy.windowsize = 20 cat.agent.1 = edu.cuny.cat.traderclient cat.agent.1.n = &size; cat.agent.1.id = trader2 cat.agent.1.investmentstrategy = edu.cuny.cat.trader.strategy.sampleinvestmentstrategy cat.agent.1.investmentstrategy.biddingstrategy = edu.cuny.cat.trader.strategy.samplebiddingstrategy cat.agent.1.investmentstrategy.biddingstrategy.windowsize = 30 The trading agent can behave in two different ways that is defined in the trading strategy as part of java class file; the first type is buyer and the second seller. Both of the above trader sub-populations has 50 agents and each agent is implemented as an instance of edu.cuny.cat.traderclient. TraderClient, inheriting edu.cuny.cat.gameclient. Cat.agent.id defines the identity of the traders, which is used to implement the trader in the program. Cat.agent.investment strategy has the parameter which will describe which type of investment strategy is to be used by this certain trader.

8 Traders Design Terminology There will be a number of inputs that will be provided to design a trading agent strategy. The following definitions describe the information that will be required by the participants of STG to design trading agent. Fund: Fund is the amount of capital available to the trader. There will be a specific amount that will be provided at the start of the game. Tips: the funds can be split evenly between the trading strategies so that there is a limit to invest in the markets. E.g. Allocate 50% fund to Stock A and 50% fund to Stock B so that the risk of losing your investment due to bad performance of one is reduced. Inventory: It is the quantity of various assets (stocks) that a certain trader holds at a specific time in the game. Profit/Loss: Value representing the amount a trader gained as compared to the initial capital held by that trader. In case of a loss it would be the difference of Capital minus the current fund, resulting in a negative value. Profit/loss = Capital Current funds available High Price: The highest price that a stock reached in a certain day. Low Price: The lowest price a stock reached in a certain day. Price: A certain value generated in-between the Market High Price and the Market Low Price of the stock. Closing Price: The price of a stock at the end of the day. Transaction Cost: Cost incurred by the trader during the completion of a certain transaction. This is the amount every market will charge to complete a transaction. Quantity: Number of stocks to be bought or sold by a trader during a certain transaction. Note: Quantity will not be provided as an input it has be part of the decision of investment for the trading agent. Shout Price: Price that a trader will quote for a specific ask/bid in the market.

9 Input Fund Market Price Closing Price Inventory Transaction Cost Trader Trading strategy 1 Trading strategy 2... Trading strategy N Output Buy /Sell Shout price Quantuty This Process diagram demonstrates how the inputs will be provided to the trader and then using an appropriate strategy the trader will produce an output which will be sent to the market visa the server. Trading Strategies To design our strategy we have decided to divide it into two parts, so that the first one is more of the analysis section called market indicator. Market indicator will help find the market trend and help make a decision. Second part of the strategy is where the decision of investment will be made based on the analysis performed earlier, so that is how much to invest and at what price. In-case trading agent owns the stocks then he can decide to sell these stocks to the respective market. Market Indicator: This section of the strategy can help the trader decide the trend of the market. i.e. Bearish, Bullish or Neutral. There are various types of indicators available to help the trading agent make investment decision. Trading Actions: The ability of the trader to invest in a certain stock will be given in this section. Once the trading agent identifies a specific trend in the market it s time to decide if trading agent is going to buy or sell the stock or decide on the quantity to and how much of his fund he wants to invest.

E-Broker User Guide. Application e-broker

E-Broker User Guide. Application e-broker E-Broker User Guide Table of Contents: Installation... 2 Application interface... 5 Application windows... 7 1. Main window with general market information... 7 2. Detailed Order Book... 7 3. Price chart...

More information

CALL OPTION If you are the buyer of the CALL option, you are bullish the market

CALL OPTION If you are the buyer of the CALL option, you are bullish the market CALL OPTION If you are the buyer of the CALL option, you are bullish the market You bought a--sept---call option at this strike price--- 3.50---for this purchase price/premium of---20 ---that expire on---aug

More information

JBookTrader User Guide

JBookTrader User Guide JBookTrader User Guide Last Updated: Monday, July 06, 2009 Eugene Kononov, Others Table of Contents JBookTrader...1 User Guide...1 Table of Contents...0 1. Summary...0 2. System Requirements...3 3. Installation...4

More information

Margin Direct User Guide

Margin Direct User Guide Version 2.0 xx August 2016 Legal Notices No part of this document may be copied, reproduced or translated without the prior written consent of ION Trading UK Limited. ION Trading UK Limited 2016. All Rights

More information

Circular No.: PMEX/Operations/ April, Trading System Update Trailing Stop Market (TSM) Order

Circular No.: PMEX/Operations/ April, Trading System Update Trailing Stop Market (TSM) Order Circular No.: PMEX/Operations/13-2013 03 April, 2013 Trading System Update Trailing Stop Market (TSM) All brokers are hereby informed that Exchange has introduced Trailing Stop Market as a new order type

More information

Introduction to the Rotman Interactive Trader (RIT)

Introduction to the Rotman Interactive Trader (RIT) Introduction to the Rotman Interactive Trader (RIT) Installation and usage notes Requirements RIT runs under Microsoft Windows. It does not run under Apple Mac OS s. If you want to run RIT on your Mac,

More information

Genium INET PRM User's Guide

Genium INET PRM User's Guide TM Genium INET NASDAQ Nordic Version: 4.0.0250 Document Version: 11 Publication Date: Wednesday, 6th May, 2015 Confidentiality: Non-confidential Whilst all reasonable care has been taken to ensure that

More information

CFDs: overview and dealing online

CFDs: overview and dealing online CFDs: overview and dealing online Module 1 CFDs: overview and dealing online In this module we look at the basics of what CFDs are and how they work. We look at some worked examples, as well as how to

More information

Investment Analysis (FIN 383) Fall Homework 2

Investment Analysis (FIN 383) Fall Homework 2 Investment Analysis (FIN 383) Fall 2009 Homework 2 Instructions: please read carefully You should show your work how to get the answer for each calculation question to get full credit The due date is Thu,

More information

Market Maker Protection Model

Market Maker Protection Model Market Maker Protection Model NASDAQ OMX Derivatives Markets Equity Derivatives Version 1.1 May 21, 2010 1(16) Table of Contents 1 Introduction... 5 2 Solution summary... 6 3 Parameters... 6 3.1 Exposure

More information

FOREX ENIGMA USER GUIDE.

FOREX ENIGMA USER GUIDE. FOREX ENIGMA USER GUIDE http://www.forexenigma.com DISCLAIMER Please be aware of the loss, risk, personal or otherwise consequences of the use and application of this book s content. The author and the

More information

WHS options guide. Getting started with options. Refine your trading style and your market outlook. Hedge positions.

WHS options guide. Getting started with options. Refine your trading style and your market outlook. Hedge positions. Getting started with options WHS options guide Refine your trading style and your market outlook. Hedge positions. Benefit from the intelligent and dynamic SPAN margin. Get started right now. WH SELFINVEST

More information

Form MO-PROG1: Form A

Form MO-PROG1: Form A Application for the Program Trading Software Form MO-PROG1: Form A Date To: President of The Stock Exchange of Thailand (SET)/ Managing Director of Thailand Futures Exchange (TFEX) We,,(hereinafter referred

More information

TradeOptionsWithMe.com

TradeOptionsWithMe.com TradeOptionsWithMe.com 1 of 18 Option Trading Glossary This is the Glossary for important option trading terms. Some of these terms are rather easy and used extremely often, but some may even be new to

More information

MODULE 1 INTRODUCTION PROGRAMME. CFDs: OVERVIEW AND TRADING ONLINE

MODULE 1 INTRODUCTION PROGRAMME. CFDs: OVERVIEW AND TRADING ONLINE INTRODUCTION PROGRAMME CFDs: OVERVIEW AND TRADING ONLINE JUNE 2016 In this module we look at the basics: what CFDs are and how they work. We look at some worked examples, as well as how to place a trade

More information

Depth of Market (DOP) for ECN Prime accounts

Depth of Market (DOP) for ECN Prime accounts Depth of Market (DOP) for ECN Prime accounts AMTS Depth of Market features Reflecting current liquidity One-click trading. It optimizes the trader's work in situations when the speed is especially important.

More information

MOBILE (iphone/ipad)

MOBILE (iphone/ipad) MOBILE (iphone/ipad) USER GUIDE www.fxbtrading.com 1 CONTENTS Download and installation...3 Quotes...5 Chart...8 Trade...9 Type of orders...10 Setting Stop Loss & Take Profit (Modify order)...12 History...14

More information

Data Sheet for Trendline Trader Pro

Data Sheet for Trendline Trader Pro Data Sheet for Trendline Trader Pro Introduction Trendline Trader Pro is a hybrid software application which used a JavaFX based interface to communicate with an underlying MetaTrader MT4 Expert Advisor.

More information

Aliceblue Mobile App. User Manual

Aliceblue Mobile App. User Manual Aliceblue Mobile App User Manual Introduction Aliceblue Mobile Application gives the Investor Clients of the Brokerage House the convenience of secure and real time access to quotes and trading. The services

More information

Epicor Tax Connect for Eclipse. Release 9.0.3

Epicor Tax Connect for Eclipse. Release 9.0.3 Epicor Tax Connect for Eclipse Release 9.0.3 Disclaimer This document is for informational purposes only and is subject to change without notice. This document and its contents, including the viewpoints,

More information

NFX TradeGuard User's Guide

NFX TradeGuard User's Guide NFX TradeGuard User's Guide NASDAQ Futures, Inc. (NFX) Version: 4.1.1229 Document Version: 4 5 Publication Date: Monday, 12 th Dec, 2016 Confidentiality: Non-confidential Genium, INET, ITCH, CONDICO, EXIGO,

More information

USER GUIDE

USER GUIDE USER GUIDE http://www.superprofitscalper.com DISCLAIMER Please be aware of the loss, risk, personal or otherwise consequences of the use and application of this book s content. The author and the publisher

More information

META TRADER 5 MOBILE (iphone/ipad)

META TRADER 5 MOBILE (iphone/ipad) (iphone/ipad) USER GUIDE www.fxbtrading.com 1 CONTENTS Getting started...4 Quotes...6 Depth of market...9 Chart...11 How to trade...13 History...19 2 The world s most popular forex trading platform MetaTrader

More information

A unique trading tool designed to help traders visualize and place orders based on market depth and order flow. DepthFinder TradingApp

A unique trading tool designed to help traders visualize and place orders based on market depth and order flow. DepthFinder TradingApp A unique trading tool designed to help traders visualize and place orders based on market depth and order flow. DepthFinder TradingApp DepthFinder Trading App for TradeStation Table of Contents Introduction

More information

Nasdaq CXC Limited. CHIXMMD 1.1 Multicast Feed Specification

Nasdaq CXC Limited. CHIXMMD 1.1 Multicast Feed Specification Nasdaq CXC Limited CHIXMMD 1.1 Multicast Feed Specification Nasdaq CXC Limited CHIXMMD 1.1 Multicast Feed Specification Synopsis: This document describes the protocol of the Nasdaq CXC Limited (Nasdaq

More information

STRATEGY GUIDE I. OPTIONS UNIVERSITY - STRATEGY GUIDE I Page 1 of 16

STRATEGY GUIDE I. OPTIONS UNIVERSITY - STRATEGY GUIDE I Page 1 of 16 STRATEGY GUIDE I Buy-Write or Covered Call Construction Long stock, short one call for every 100 shares of stock owned. Function To enhance profitability of stock ownership and to provide limited downside

More information

Avalara Tax Connect version 2017

Avalara Tax Connect version 2017 version 2017 Disclaimer This document is for informational purposes only and is subject to change without notice. This document and its contents, including the viewpoints, dates and functional content

More information

Chapter 6. Company Tasks. In this chapter:

Chapter 6. Company Tasks. In this chapter: Chapter 6 Company Tasks This chapter covers the tasks contained within Sage 50 Accounts Company module. The chapter introduces the topics of prepayments, accruals, budgeting, fixed asset handling and VAT

More information

USERGUIDE MT4+ MARKET MANAGER

USERGUIDE MT4+ MARKET MANAGER TABLE OF CONTENTS. INSTALLATION OF PAGE 03. ABOUT THE PAGE 06 3. CHOOSING THE SYMBOLS TO DISPLAY PAGE 07 4. TRADING FROM THE PAGE 08 A. PLACING ORDERS PAGE 08 B. QUICK TRADE-ENTRY FROM TEMPLATES PAGE 0

More information

Introduction to Futures & Options Markets

Introduction to Futures & Options Markets Introduction to Futures & Options Markets Kevin McNew Montana State University Marketing Your Crop Marketing: knowing when and how to price your crop. When Planting Pre-Harvest Harvest Post-Harvest How

More information

Blackberry Trader User Guide

Blackberry Trader User Guide Blackberry Trader User Guide Table of Contents IronForex Blackberry Trader... 3 A. How to Find and Install using Desktop Manager... 3 B. How to Find and Install using Blackberry Smartphone... 4 C. How

More information

Getting Started Guide Lindorff invoice and instalment solution via Netaxept

Getting Started Guide Lindorff invoice and instalment solution via Netaxept Getting Started Guide Lindorff invoice and instalment solution via Netaxept Version 1.2 You are able to offer Lindorff as a payment method to your webshop customers via Netaxept. Lindorff is an invoice

More information

STRATEGIES WITH OPTIONS

STRATEGIES WITH OPTIONS MÄLARDALEN UNIVERSITY PROJECT DEPARTMENT OF MATHEMATICS AND PHYSICS ANALYTICAL FINANCE I, MT1410 TEACHER: JAN RÖMAN 2003-10-21 STRATEGIES WITH OPTIONS GROUP 3: MAGNUS SÖDERHOLTZ MAZYAR ROSTAMI SABAHUDIN

More information

META TRADER 5 MOBILE (ANDROID)

META TRADER 5 MOBILE (ANDROID) META TRADER 5 MOBILE (ANDROID) USER GUIDE www.fxbtrading.com 1 CONTENTS Getting Started...3 Quotes...4 Depth of Market...8 Chart...8 Trade...10 Type of orders...13 Market execution...16 History...19 Accounts...20

More information

FundamentalData Downloader V1.2

FundamentalData Downloader V1.2 FundamentalData Downloader V1.2 Copyright (C) 2012, Trading-Tools.com mailto:info@trading-tools.com User manual Table of Contents Table of Contents...2 Welcome...3 Getting Started...4 Keeping stock exchange

More information

Rental Agreement Walkthrough. Rental vs Purchase vs EZ Lease

Rental Agreement Walkthrough. Rental vs Purchase vs EZ Lease Rental Agreement Walkthrough Rental vs Purchase vs EZ Lease TABLE OF CONTENTS / AGENDA Postage Machine Basics Meter vs Equipment Three Different agreement types Straight Rental Purchase/Lease EZ Lease

More information

Introduction to Futures & Options Markets for Livestock

Introduction to Futures & Options Markets for Livestock Introduction to Futures & Options Markets for Livestock Kevin McNew Montana State University Marketing Your Cattle Marketing: knowing when and how to price your cattle. When Prior to sale At time of sale

More information

Sage Bank Services User's Guide

Sage Bank Services User's Guide Sage 300 2017 Bank Services User's Guide This is a publication of Sage Software, Inc. Copyright 2016. Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage product and service names

More information

Abu Dhabi Securities Exchange Virtual Market Game Manual

Abu Dhabi Securities Exchange Virtual Market Game Manual Abu Dhabi Securities Exchange Virtual Market Game Manual Table of Contents Introduction... 3 Brief... 3 Scope... 3 In details... 3 Signing up for a user name on ADX website... 3 Joining an existing game

More information

Foxzard Trader MT4 Expert Advisor Manual Contents

Foxzard Trader MT4 Expert Advisor Manual Contents Foxzard Trader MT4 Expert Advisor Manual Contents Foxzard Trader MT4 Expert Advisor Manual... 1 Overview... 3 Features... 3 Installation Guide... 3 User Interface... 4 Input Parameters and Default Values...

More information

Basic Order Strategies

Basic Order Strategies Basic Order Strategies Introduction... 3 Using the Pre-Defined Order Strategies with your Trading Interfaces... 3 Entry Order Strategies... 3 Basic Entry Order Strategies explained... 3 Exit Order Strategies...

More information

Data Analysis and Machine Learning Lecture 8: Limit Order Book and Order Flow Imbalance

Data Analysis and Machine Learning Lecture 8: Limit Order Book and Order Flow Imbalance Data Analysis and Machine Learning Lecture 8: Limit Order Book and Order Flow Imbalance Guest Lecturer: Douglas M. Vieira PhD student, Imperial College London 2017.11.01 Outline of the lecture Order flow

More information

PROTRADE February 2017

PROTRADE February 2017 PROTRADE February 2017 Introduction PROTRADE Application gives the Investor Clients of the Brokerage House the convenience of secure and real time access to quotes and trading. The services are specifically

More information

Knowing When to Buy or Sell a Stock

Knowing When to Buy or Sell a Stock Knowing When to Buy or Sell a Stock Overview Review & Market direction Driving forces of market change Support & Resistance Basic Charting Review & Market Direction How many directions can a stock s price

More information

MT4 Supreme Edition Trade Terminal

MT4 Supreme Edition Trade Terminal MT4 Supreme Edition Trade Terminal In this manual, you will find installation and usage instructions for MT4 Supreme Edition. Installation process and usage is the same in new MT5 Supreme Edition. Simply

More information

Welcome to FOREX e-book

Welcome to FOREX e-book Welcome to FOREX e-book Table of Contents 1. Trading platforms... 2 2. What is traded in the Forex Market?... 3 3. What is Forex?... 3 4. Advantages of the Forex Market... 4 5. How to read currency quotes...

More information

BlitzTrader. Next Generation Algorithmic Trading Platform

BlitzTrader. Next Generation Algorithmic Trading Platform BlitzTrader Next Generation Algorithmic Trading Platform Introduction TRANSFORM YOUR TRADING IDEAS INTO ACTION... FAST TIME TO THE MARKET BlitzTrader is next generation, most powerful, open and flexible

More information

US Options Risk Management Specification

US Options Risk Management Specification Risk Management Specification Version 1.4.2 January 17, 2018 Contents 1 Introduction... 3 1.1 Overview... 3 1.2 Risk Root... 3 1.3 Certification... 3 1.4 Risk Limit Types... 3 1.4.1 Limit Execution Details...

More information

Directors: Mark Barnes/Chairman Charles Savage/CEO Michael Wilson/CFO T +27 (0) F +27 (0)

Directors: Mark Barnes/Chairman Charles Savage/CEO Michael Wilson/CFO T +27 (0) F +27 (0) Cape Town Office: KZN Office: Johannesburg Office: Directors: T +27 (0) 87 940 6110 F +27 (0) 21 425 9237 W gt247.com T +27 (0) 87 940 6090 F +27 (0) 31 576 5088 W gt247.com T +27 (0) 11 214 8000 F +27

More information

How To Guide X3 Bank Card Processing Sage Exchange

How To Guide X3 Bank Card Processing Sage Exchange How To Guide X3 Bank Card Processing Sage Exchange Table of Contents Introduction... 2 Credit Card Parameters GESXA0... 3 Payment Types GESTPY... 6 Invoicing Method GESBPC... 6 Sales Order Processing -

More information

US Options Complex Book Process. Version 1.1.1

US Options Complex Book Process. Version 1.1.1 Complex Book Process Version 1.1.1 October 17, 2017 Contents 1 Overview... 4 2 Complex Order Basics... 5 2.1 Ratios... 5 2.2 Net Price... 5 2.3 Availability of Complex Order Functionality... 5 2.3.1 Eligible

More information

NASDAQ Opening and Closing Crosses and the Net Order Imbalance Indicator (NOII) Guide

NASDAQ Opening and Closing Crosses and the Net Order Imbalance Indicator (NOII) Guide NASDAQ Opening and Closing Crosses and the Net Order Imbalance Indicator (NOII) Guide Access Through the NASDAQ Workstation and Select Service Bureaus Table of Contents One of the primary benefits of the

More information

1. For initial testing, log into your Trading Simulation accounts.

1. For initial testing, log into your Trading Simulation accounts. Instructions Product: TradeAssistant Pro Date: January 4, 2017 Purpose: TradeAssistant Pro is for fast and flexible order placements. Setup custom triggers. Put orders in OCO groups to leverage buying

More information

[1] THE INTERFACE 05 [2] LOGGING IN 07 [3] ACCOUNTS 08 [4] THE QUOTES BOARD 09 [5] POSITIONS [5.1] USING STOP LOSS, TAKE PROFIT, AND CLOSING POSITIONS

[1] THE INTERFACE 05 [2] LOGGING IN 07 [3] ACCOUNTS 08 [4] THE QUOTES BOARD 09 [5] POSITIONS [5.1] USING STOP LOSS, TAKE PROFIT, AND CLOSING POSITIONS ipad USER GUIDE TABLE OF CONTENTS [1] THE INTERFACE 05 [2] LOGGING IN 07 [3] ACCOUNTS 08 [4] THE QUOTES BOARD 09 [5] POSITIONS [5.1] USING STOP LOSS, TAKE PROFIT, AND CLOSING POSITIONS 10 10 [6] ORDERS

More information

QUICKSTART LESSON 1 GAME INTRODUCTION DISCOVER HOW THE WORLD REALLY WORKS ASX Schools Sharemarket Game

QUICKSTART LESSON 1 GAME INTRODUCTION DISCOVER HOW THE WORLD REALLY WORKS ASX Schools Sharemarket Game QUICKSTART LESSON 1 GAME INTRODUCTION DISCOVER HOW THE WORLD REALLY WORKS 2015 ASX Schools Sharemarket Game The Sharemarket Game! In this lesson you will learn about the sharemarket and how you can play

More information

AASTOCKS Market Intelligence Express (MIE)

AASTOCKS Market Intelligence Express (MIE) AASTOCKS Market Intelligence Express (MIE) User Guide Version 1.3.4 Provided by AASTOCKS.com LIMITED AASTOCKS.com LIMITED A TOM Group Company Unit 4706, 47/F, The Center, 99 Queen s Road Central, Hong

More information

Point and Figure Charting

Point and Figure Charting Technical Analysis http://spreadsheetml.com/chart/pointandfigure.shtml Copyright (c) 2009-2018, ConnectCode All Rights Reserved. ConnectCode accepts no responsibility for any adverse affect that may result

More information

Any symbols displayed within these pages are for illustrative purposes only, and are not intended to portray any recommendation.

Any symbols displayed within these pages are for illustrative purposes only, and are not intended to portray any recommendation. Allocation Fund Investment Manager Getting Started Guide February 2018 2018 Interactive Brokers LLC. All Rights Reserved Any symbols displayed within these pages are for illustrative purposes only, and

More information

SAMCO Mobile App User Manual

SAMCO Mobile App User Manual SAMCO Mobile App User Manual (I) Basic Trading Features Table of Contents 01 How to get My Trading ID?. 03 02 How to Download & Login The SAMCO Mobile App?. 04 03 How to add Scripts to my Market Watch?....

More information

Chapter 2 Securities Markets. T 1. A major function of organized securities markets is to facilitate the transfers of securities among investors.

Chapter 2 Securities Markets. T 1. A major function of organized securities markets is to facilitate the transfers of securities among investors. Chapter 2 Securities Markets TRUE/FALSE T 1. A major function of organized securities markets is to facilitate the transfers of securities among investors. T 2. A round lot is the general unit for trading

More information

SIX Corporate Bonds AG. Directive 3: Trading. Dated 16 March 2018 Entry into force: 27 March 2018

SIX Corporate Bonds AG. Directive 3: Trading. Dated 16 March 2018 Entry into force: 27 March 2018 SIX Corporate Bonds AG Directive : Trading Dated 6 March 08 Entry into force: 7 March 08 Content Purpose and principle... General.... Trading day and trading period.... Trading hours... Definitions....

More information

USER GUIDE

USER GUIDE USER GUIDE http://www.winningsignalverifier.com DISCLAIMER Please be aware of the loss, risk, personal or otherwise consequences of the use and application of this book s content. The author and the publisher

More information

SmartOrder Manual. (Novembre 2010) ActivTrades PLC. ActivTrades SmartOrder User Guide

SmartOrder Manual. (Novembre 2010) ActivTrades PLC. ActivTrades SmartOrder User Guide SmartOrder Manual (Novembre 2010) ActivTrades PLC 1 Table of Contents 1. General Information... 3 2. Installation... 3 3. Starting the application... 3 4. Usage and functionality... 4 4.1. Selecting symbol...

More information

Preparation 2. Initializing 2. Full Stocktake 2 Partial Stocktake 3. Scanning/ Counting 4. Printing/ Reviewing Variances 4. Finalizing 5.

Preparation 2. Initializing 2. Full Stocktake 2 Partial Stocktake 3. Scanning/ Counting 4. Printing/ Reviewing Variances 4. Finalizing 5. Stocktake The purpose of this Stocktake procedure is to check the physical stock quantities with the system stock on hand quantities. A Stock Valuation (Stock Analysis Report) may be run at anytime, without

More information

WEEK 1: INTRODUCTION TO FUTURES

WEEK 1: INTRODUCTION TO FUTURES WEEK 1: INTRODUCTION TO FUTURES Futures: A contract between two parties where one party buys something from the other at a later date, at a price agreed today. The parties are subject to daily settlement

More information

The Stock Market. What It Is and How It Works. Ashlee Garn, Brokerage Consultant Fidelity Investments

The Stock Market. What It Is and How It Works. Ashlee Garn, Brokerage Consultant Fidelity Investments The Stock Market What It Is and How It Works Ashlee Garn, Brokerage Consultant Fidelity Investments Topics We Will Cover: 1. How corporations raise money. Debt vs. Equity 2. How stocks are bought and sold

More information

PHILLIP FUTURES PTA. POEMS Installation and Quick Start User Guideline

PHILLIP FUTURES PTA. POEMS Installation and Quick Start User Guideline PHILLIP FUTURES PTA POEMS 1.8.3 Installation and Quick Start User Guideline NOTICE The best effort has been put in to ensure that the information given in this POEMS Professional 1.8.3 Quick Start User

More information

Instruction (Manual) Document

Instruction (Manual) Document Instruction (Manual) Document This part should be filled by author before your submission. 1. Information about Author Your Surname Your First Name Your Country Your Email Address Your ID on our website

More information

LUXEMBOURG STOCK EXCHANGE MARKETS TRADING MANUAL

LUXEMBOURG STOCK EXCHANGE MARKETS TRADING MANUAL LUXEMBOURG STOCK EXCHANGE MARKETS TRADING MANUAL Published 2017 Entry into force 03 January 2018 Terms beginning with a capital letter shall have the same meaning as those defined in Part 0 of the Rules

More information

Chapter 2 Securities Markets. T 1. A major function of organized securities markets is to facilitate the transfers of securities among investors.

Chapter 2 Securities Markets. T 1. A major function of organized securities markets is to facilitate the transfers of securities among investors. Chapter 2 Securities Markets TRUE/FALSE T 1. A major function of organized securities markets is to facilitate the transfers of securities among investors. T 2. A round lot is the general unit for trading

More information

QUICKSTART LESSON 1 GAME INTRODUCTION DISCOVER HOW THE WORLD REALLY WORKS ASX Schools Sharemarket Game 21 AUGUST - 29 OCTOBER

QUICKSTART LESSON 1 GAME INTRODUCTION DISCOVER HOW THE WORLD REALLY WORKS ASX Schools Sharemarket Game 21 AUGUST - 29 OCTOBER QUICKSTART LESSON 1 GAME INTRODUCTION DISCOVER HOW THE WORLD REALLY WORKS 2014 ASX Schools Sharemarket Game 21 AUGUST - 29 OCTOBER QUICKSTART LESSON 1: TEACHER NOTES Introduction to Teacher Lesson Plans

More information

VirtualDealer versus Manual Execution: What Is Better?

VirtualDealer versus Manual Execution: What Is Better? VirtualDealer versus Manual Execution: What Is Better? Permalink: http://support.metaquotes.net/articles/349 14 March 2006 Introduction Virtual Dealer Plugin is intended for full or partial emulation of

More information

End of Financial Year Guide 2018

End of Financial Year Guide 2018 End of Financial Year Guide 2018 How to use your software to guide your business through the end of financial year period Need some help? Visit help.myob.com, or find answers, ask questions, and share

More information

Finance 527: Lecture 30, Options V2

Finance 527: Lecture 30, Options V2 Finance 527: Lecture 30, Options V2 [John Nofsinger]: This is the second video for options and so remember from last time a long position is-in the case of the call option-is the right to buy the underlying

More information

Forex Trend Detector User Guide

Forex Trend Detector User Guide Forex Trend Detector User Guide - 1 - Contents: - Getting Started ------------------------------------------------------------------------------------- 3 - The MetaTrader 4 (MT4) Trading Platform -------------------------------------------------

More information

HEDGING WITH FUTURES AND BASIS

HEDGING WITH FUTURES AND BASIS Futures & Options 1 Introduction The more producer know about the markets, the better equipped producer will be, based on current market conditions and your specific objectives, to decide whether to use

More information

Sage Accpac epos 5.5

Sage Accpac epos 5.5 SAGE ACCPAC Sage Accpac ERP Sage Accpac epos 5.5 Update Notice 2008 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and all Sage Accpac product and service names are registered

More information

TRAVEL PORTAL INSTRUCTIONS

TRAVEL PORTAL INSTRUCTIONS TRAVEL PORTAL INSTRUCTIONS Date: June 22, 2018 Version: Version 3.1 Prepared By: Berkley Canada Table of Contents 1 ACCESSING THE PORTAL... 3 1.1 LOGIN & LOGOUT... 3 1.2 RESET YOUR PASSWORD... 3 2 THE

More information

June 2018 HKATS RISK FUNCTIONS USER S GUIDE

June 2018 HKATS RISK FUNCTIONS USER S GUIDE June 2018 HKATS RISK FUNCTIONS USER S GUIDE Introduction to HKATS Risk Functions HKATS Risk Functions is a Java web-based software which operates within HKATS to monitor and control pre-trade risks by

More information

AyersGTS (Internet) User Manual. Ayers Solutions Limited

AyersGTS (Internet) User Manual. Ayers Solutions Limited AyersGTS (Internet) User Manual By Ayers Solutions Limited Amendment History AyersGTS User Manual (Internet) v1.12.1 Version Date Details V1.0 1-Jun-04 Initial Copy V1.1 3-Aug-04 Updated Images V1.2 20-Dec-04

More information

This E-Book contains the best methods for trading stock options, commodities options, or any other options in the financial markets period.

This E-Book contains the best methods for trading stock options, commodities options, or any other options in the financial markets period. Table of Contents Introduction: Why Trade Options?...3 Strategy #1: Buy-Write or Covered Call...4 Strategy #2: Sell-Write or Covered Put...5 Strategy #3: Protective Put...6 Strategy #4: Collar...7 Strategy

More information

MachBuildFin. MachFin can be downloaded off the Internet at:

MachBuildFin. MachFin can be downloaded off the Internet at: MachBuildFin INTRODUCTION MachBuildFin is a Windows based program designed to analyze machine and building financing alternatives. Annual cash flows, net present values, and annuity equivalents are used

More information

Terms of Business 11 th April 2016 TERMS OF BUSINESS

Terms of Business 11 th April 2016 TERMS OF BUSINESS 1 TERMS OF BUSINESS 1. Introduction 1.1. These Terms of Business govern all actions in respect of the execution of the Customer s Instructions and Orders. 1.2. These Terms of Business specify: a) the Company

More information

How To Place And Manage Your Orders With Your MT4 Platform

How To Place And Manage Your Orders With Your MT4 Platform How To Place And Manage Your Orders With Your MT4 Platform I. How To Place A Simple Buy/Sell Order To place an Order (Sell or Buy), you have to open the Order window (Pic. 1). Pic. 1 - Order window There

More information

4. Viewing account information

4. Viewing account information 4. Viewing account information Overview Individual transactions and positions are displayed in the Account Information section of the Portfolio Manager window. Of the seven tabs at the top of this section,

More information

Informed Storage: Understanding the Risks and Opportunities

Informed Storage: Understanding the Risks and Opportunities Art Informed Storage: Understanding the Risks and Opportunities Randy Fortenbery School of Economic Sciences College of Agricultural, Human, and Natural Resource Sciences Washington State University The

More information

HandDA program instructions

HandDA program instructions HandDA program instructions All materials referenced in these instructions can be downloaded from: http://www.umass.edu/resec/faculty/murphy/handda/handda.html Background The HandDA program is another

More information

Introduction. MetaTrader 4 is a trading platform developed by MetaQuotes Software for online trading in the forex, CFD and futures markets.

Introduction. MetaTrader 4 is a trading platform developed by MetaQuotes Software for online trading in the forex, CFD and futures markets. 1 2 3 DISCLAIMER Trading and investing often involves a very high degree of risk. Past results are not indicative of future returns and financial instruments can go down as well as up resulting in you

More information

META TRADER 4 MOBILE (ANDROID) USER GUIDE MOBILE (ANDROID) USER GUIDE.

META TRADER 4 MOBILE (ANDROID) USER GUIDE MOBILE (ANDROID) USER GUIDE. MOBILE (ANDROID) USER GUIDE www.fxbtrading.com 1 CONTENTS Download and installation...3 Quotes...5 Chart...8 Type of orders...10 History...13 Indicators for technical analysis...14 2 MetaTrader 4 for Android

More information

INTRODUCING THE GAME. Quickstart lesson 1. Includes: Student lessons. Teacher notes & answers

INTRODUCING THE GAME. Quickstart lesson 1. Includes: Student lessons. Teacher notes & answers INTRODUCING THE GAME Quickstart lesson 1 Includes: Student lessons. Teacher notes & answers Quickstart Teacher Notes: THE GAME Introduction to Teacher Lesson Plans These lesson plans include 3 Quickstart

More information

MSU Report User Guide

MSU Report User Guide MSU Report User Guide 2/12/2015 Contents 1. Adaptive Insights... 2 2. Browsers... 2 3. Nomenclature... 2 4. Logging into Adaptive Insights... 3 5. New Report Navigation... 3 6. Viewing Reports... 5 7.

More information

Polaris (XPR) Dividend Paying Mining Farm on the Blockchain

Polaris (XPR) Dividend Paying Mining Farm on the Blockchain Polaris (XPR) Dividend Paying Mining Farm on the Blockchain 1 Abstract: The Polaris Token (XPR) is a representation of a share in the Polaris mining farm. Powerhouse Network, the parent company, has already

More information

Protocol Specification

Protocol Specification Lightspeed Book Engine Protocol Specification Version 1.04 October 25, 2016 All messages are text based in order to ensure human readability. End Of Message (EOM) is a Line Feed (ASCII code 0x0a) or optionally

More information

CME Direct 13.3 Release Notes. 24 Sept 2018

CME Direct 13.3 Release Notes. 24 Sept 2018 13.3 Release Notes 24 Sept 2018 Disclaimer Neither futures trading nor swaps trading are suitable for all investors, and each involves the risk of loss. Swaps trading should only be undertaken by investors

More information

Enhanced Retirement Plans

Enhanced Retirement Plans Enhanced Retirement Plans User Guide For Microsoft Dynamics GP Version 2015 125 N. Kickapoo Lincoln, Illinois 62656 integrity-data.com 888.786.6162 **Updated Documentation** visit our website to check

More information

ULTRA II User Manual. Ultra II is a new Internet security trading system that has been developed to facilitate Bualuang i-trading's customers.

ULTRA II User Manual. Ultra II is a new Internet security trading system that has been developed to facilitate Bualuang i-trading's customers. ULTRA II User Manual Ultra II is a new Internet security trading system that has been developed to facilitate Bualuang i-trading's customers. 1. Over View Ultra II consists of 5 main category pages: 1.1

More information

US Options Risk Management Specification

US Options Risk Management Specification Risk Management Specification Version 1.5.0 November 16, 2018 Contents 1 Introduction... 3 Overview... 3 Risk Limit Types... 3 1.2.1 Limit Execution Details... 5 1.2.2 Supported Order Types... 8 Risk Type

More information

MAGENTO 2 AUCTION. (Version 1.0) USER GUIDE

MAGENTO 2 AUCTION. (Version 1.0) USER GUIDE MAGENTO 2 AUCTION (Version 1.0) USER GUIDE 0 Confidential Information Notice Copyright2016. All Rights Reserved. Any unauthorized reproduction of this document is prohibited. This document and the information

More information

Polaris (XPR) Dividend Paying Mining Farm on the Blockchain

Polaris (XPR) Dividend Paying Mining Farm on the Blockchain Polaris (XPR) Dividend Paying Mining Farm on the Blockchain 1 Abstract: The Polaris Token (XPR) is a representation of a share in the Polaris mining farm. Powerhouse Network, the parent company, has already

More information

CUR 412: Game Theory and its Applications, Lecture 4

CUR 412: Game Theory and its Applications, Lecture 4 CUR 412: Game Theory and its Applications, Lecture 4 Prof. Ronaldo CARPIO March 27, 2015 Homework #1 Homework #1 will be due at the end of class today. Please check the website later today for the solutions

More information