First Steps To Become a Self-Directed Quantitative Investor. Course for New Portfolio123 Users. Fred Piard. version: May 2018

Size: px
Start display at page:

Download "First Steps To Become a Self-Directed Quantitative Investor. Course for New Portfolio123 Users. Fred Piard. version: May 2018"

Transcription

1 First Steps To Become a Self-Directed Quantitative Investor Course for New Portfolio123 Users Fred Piard version: May 2018 Disclaimer The information provided by the author is for educational purpose only. It is not investment advice. Before deciding to invest in financial markets you should carefully consider your investment objectives, level of experience, and risk appetite. The possibility exists that you could sustain a loss of some or all of your initial investment. You should seek advice from an independent financial advisor if you have any doubt. All products, ETPs, indexes, tools and websites quoted in this document are property and trademarks of their respective issuers. This document does not constitute a solicitation to purchase any financial instruments. The past performance of a system or methodology is not necessarily indicative for the future. CFTC RULE 4.41 HYPOTHETICAL OR SIMULATED PERFORMANCE RESULTS HAVE CERTAIN LIMITATIONS. UNLIKE AN ACTUAL PERFORMANCE RECORD, SIMULATED RESULTS DO NOT REPRESENT ACTUAL TRADING. ALSO, SINCE THE TRADES HAVE NOT BEEN EXECUTED, THE RESULTS MAY HAVE UNDER-OR-OVER COMPENSATED FOR THE IMPACT, IF ANY, OF CERTAIN MARKET FACTORS, SUCH AS LACK OF LIQUIDITY. SIMULATED TRADING PROGRAMS IN GENERAL ARE ALSO SUBJECT TO THE FACT THAT THEY ARE DESIGNED WITH THE BENEFIT OF HINDSIGHT. NO REPRESENTATION IS BEING MADE THAT ANY ACCOUNT WILL OR IS LIKELY TO ACHIEVE PROFIT OR LOSSES SIMILAR TO THOSE SHOWN. The Platform Portfolio123 is the best online tool I know to find, design, execute and manage quantitative investing strategies in the US and Canadian stock markets. It is used by individual and professional investors. It has professional grade daily data and powerful simulation features. Historical data include hundreds of fundamental and technical factors for thousands of stocks and ETFs. Companies that are now dead, merged, gone private are taken into account in backtests, as well as changes in indexes. Learning curve The interface is not fancy and the learning curve is long. There is a feature named Wizard to help beginners build their first screens in natural language, but it doesn t really simplify things. Learning how to use the rule-based language, understanding the components, identifying the most obvious pitfalls, may take months, if not years. I have been using the platform since February After thousands of hours I can t claim knowing all of it, despite being familiar with the technical concepts literally for decades. I worked for the first time with a database system in 1989, with industrial simulation software in 1990 and programmed a rule-based system in a nuclear plant in So, I can imagine the challenge for an average newcomer, and I understand why about 90% of the people coming to Portfolio123 give up. The platform has online help, tutorials, examples, but it is complicated for beginners. I hope this document fills the gap. Your P123 account If you have an old inactive Portfolio123 account, reactivate it. If you have forgotten your username or password, there is a link to ask it. If you need to create a new account Click This Link, then Sign Up (upper right). If you find a blank field Invitation Code in the process, copy and paste this: PIARD2 (this code is already in the link above, but it may not work in all browsers). My invitation link and code give you an extended free trial period. Page 1 - Bootstrap P123 - Fred Piard

2 You will have to choose a membership level. A free trial membership should be enough to follow this document. If you think the platform is good for you, you will need a paid membership to save your work after the free-trial. There are 4 levels of membership. Click the link Pricing at the bottom of the Portfolio123 home page for more info. Content of this document First Part: You will learn to code simple screens based on my book Quantitative Investing. You don t need to buy the book if you don t have it. Second Part: You will learn to use and combine pre-built ranking systems provided by Portfolio123. How to create a Screen and backtest it Click the menu item Screener, then click the button New and choose in the list if you want a screen in stocks, ETFs or CEFs. We will start with an ETF screen. A Screen has parameters dispatched in several tabs. When creating a screen, you land on the Rules tab, but first I suggest you have a look at the Settings tab. You can choose: a date to run the screen (by default the current date) the universe in which you want to run the screen (by default all U.S. ETFs) a ranking system (by default none) a benchmark to choose in a list of indexes and ETFs (by default SPY) a method (by default long) a maximum number of ETFs in the output list (by default 0, meaning all passing the rules) For all the examples hereafter, you will keep the default settings. Page 2 - Bootstrap P123 - Fred Piard

3 Go back to the tab Rules : Basically, a rule is a logical assumption expressed in a proprietary language. From a programming point of view, a rule is a line of code. The language is not case-sensitive. For every ETF, every rule has a logical value: TRUE or FALSE. Rules can be combined with the logical operators AND, OR. On instant execution (Button Run Screen, upper right), the screen will return the list of ETFs for which the combination or rules is TRUE at the specified date (upper right). A rule can be inactivated (or reactivated) by clicking on the green (or red) point on the left of the line. The screener skips rules with a red point. Every time you make a change, click the Save icon (upper right above Run Screen). The first time, you will be asked to give a name. It will help you find the screen next time you click on the menu item Screener. Let s take an example. Below are 3 rules in text: you can select, copy and paste them in the screener. ticker("iym,iyc,iyk,iye,iyf,iyh,iyj,iyr,iyw,iyz,idu") sma(50)>sma(200) sma(50,0,getseries("spy"))>sma(200,0,getseries("spy")) In the first rule, the function ticker() requires the ETF to be in a list. In the second rule, this first use of the function sma() requires the ETF s 50-day simple moving average to be above the 200-day simple moving average. In the third rule, the same condition is required for SPY. The Getseries() function can call any ETF. Page 3 - Bootstrap P123 - Fred Piard

4 By the way, this screen stands for a simple market-timing strategy described at page 29 of Quantitative Investing. You can now click on Save, then Run Screen to see the list of ETFs passing the rules. Rules are combined by default with AND. If you click on AND, it will be changed into OR (and the other way). For example, you can change the second AND into OR. Now only one of the 2 sma rules needs to be TRUE for the combination to be TRUE. Restore AND before going on. In the bells and whistles, you will appreciate the autocomplete feature when typing a rule, and also the double-click. Double-clicking a function name shows a short description in the reference panel (if expanded), and a link to the full description with detailed syntax, parameters and use cases. Now, go to the Backtest tab. You will keep the default parameters, except those circled in red above and described below. Slippage: 0.1% is enough to model spreads and transaction costs for very liquid ETFs. Max Pos: limiting position size at 9.1% forces a position into cash when one of the 11 ETFs in the list doesn t pass the rules. Rebalancing Frequency: Every Week means the screen is run the first trading day of every week in the time interval. Dates: choose a time interval between 01/02/1999 and today. It makes sense if you take into account the look-back period (in this example we use 200-day moving averages) and ETF inception dates. The backtest runs the screen at the beginning of every rebalancing period in the time interval. Holdings are in equal weight at the beginning of every period. Advanced sizing features exist in Portfolio123, but they are out of our scope here. Hereafter is the result of the backtest specified in the previous screenshot. Page 4 - Bootstrap P123 - Fred Piard

5 Returns are calculated with dividends reinvested. Now, I will give you the screens for most strategies described in the book Quantitative Investing. ETF screens These models have underperformed the benchmark between publication and 2018 (from 9/1/2013 to 1/1/2018), mostly because market timing and momentum indicators have been whipsawed in 2015 and However, they all have positive returns since 2013 and their logic still makes sense on a long time frame. If you follow me, you know that since May 2015 I don t use any more binary timing indicators, but a multi-valued risk indicator. Market Timing strategy p 17: Eval((sma(50,0,#Bench)>sma(200,0,#Bench)),Ticker("SPY"),Ticker("")) Note: The function Eval is an if...then...else... structure: double-click after pasting it to see the description. #Bench is a shorter way to access SPY data, provided that SPY has been declared as benchmark in the Settings tab. Market Timing strategy p 25: Ticker ("DIA,SPY,MDY,QQQ,IWM") sma(50)>sma(200) sma(50,0,#bench)>sma(200,0,#bench) Note: it is similar to the example of p29 with sectors, seen previously. Market-Timing p 32: Ticker ("IEF,TLT,ICF,SPY,ILF,EPP,IEV") sma(50)>sma(200) Note: MaxPos must be set to 14.3% in the backtest tab to keep positions in cash when ETFs don t pass. Page 5 - Bootstrap P123 - Fred Piard

6 Momentum p 39: Eval (sma(50,0,#bench)>sma(200,0,#bench), ticker("iym,iyc,iyk,iye,iyf,iyh,iyj,iyr,iyw,iyz,idu"), ticker("ief")) FOrder("Momentum(20,0,false)",#Previous,#DESC,false)<7 sma(50)>sma(200) Note: the first rule is split, paste the 2 lines in one. Double-click on FOrder to see the description. Momentum p 44: Ticker ("IEF,TLT,ICF,SPY,ILF,EPP,IEV") FOrder("Momentum(120,0,false)",#Previous,#DESC,false)<6 sma(50)>sma(200) Momentum p 47: Ticker("MDY,TLT")// Triple switch variant: Ticker("MDY,EEM,TLT") FOrder("Momentum(60,0)",#Previous,#DESC,false)=1 Seasonal p 60: Eval(inset(month,1,2,3,4,11,12),Ticker("EWS,EWZ"), Ticker("TLT")) Note: you already know Eval, double-click inset to learn the description. Seasonal p 63: Eval(inset(month,3,4,10,11,12),Ticker("EWG"), Ticker("TLT")) Stock screens These 3 screens have positive returns from 9/1/2013 to 1/1/2018, but 2 underperform the market. The second part of this document will give you a more robust screen to start your own work. Value strategy p 86: Universe(SP500) Pr2CashFlTTM<10 PEExclXorTTM<20 Pr2BookQ<8 AvgRec<=3 FOrder("DbtTot2EqQ",#Previous,#ASC,false)<=6 Note: This is with default parameters in the Settings tab. The first rule could be replaced by a universe declaration in Settings and the last one by choosing the factor DbtTot2EqQ as Quick Rank, also in Settings. There is no market timing here. Double-click on the factors to see their descriptions. Strategy p 89: Universe(SP500) EPS%ChgPQ>5 Sales%ChgPYQ>5 Pr2CashFlQ<8 RSI(14)<70 FOrder("DbtTot2EqQ",#Previous,#ASC,false)<=4 Page 6 - Bootstrap P123 - Fred Piard

7 Dividend Strategy p 91: Universe(SP500) Sector!=UTIL SI%Float<5 Yield5YAvg>4 Yield>4 FOrder("DbtTot2EqQ",#Previous,#ASC,false)<=10 Note:!= means different. UTIL is a constant naming the Utilities sector. You can find constants for sectors and industries seeking the full description of Sector. Portfolio123 ranking systems The Platform has pre-built ranking systems combining many factors. A ranking system applied to a universe results in a score between 0 and 100 for each stock or ETF in this universe. We will see now 2 ways to use ranking systems. Create a new stock screen, go to Settings and follow the next steps. 1. Choose S&P 500 Index in Universe 2. Choose Ranking System in Ranking 3. Choose Basic: Quality in the list of ranking systems 4. Type 25 in Max Number of Stocks This time, Rules are left blank. Go directly to the Backtest tab. Choose a 4-Week Rebalancing Frequency and a 0.1% slippage to model the bid-ask spread and transaction costs (which is realistic for S&P 500 stocks and a low-cost broker). Pick also dates to delimit a backtest period. If you run this backtest (with no rules), it will simulate a dynamic portfolio of 25 stocks, recomposed and rebalanced in equal weight every 4 weeks, holding the 25 companies with the highest scores in the pre-built ranking system Basic: Quality. From 1999 to 2018 the curve of total return (in red) compared to SPY (in blue) looks like this: Page 7 - Bootstrap P123 - Fred Piard

8 My purpose here is not discussing the performance, but showing how you can use pre-built components to code decent screens in minutes. Three points to keep in mind: Backtests picking illiquid stocks and penny stocks are pure fantasy. They must be eliminated by the choice of universe or by rules. The higher the number of holdings, the lower the risk of over-fitting. Outperformance coming from singularities is misleading. Short-selling backtests are flawed by definition. The availability and cost for shorting a stock in the past are unknown (and were variable across brokers). In the example above you can use only one ranking system. What if you want to select stocks using several ranking systems? The function Rating returns the score of a stock for any ranking system. Copy-paste the 2 lines below in the Rules of our current screen (blank until now): Rating("Basic: Value")>50 Rating("Basic: Growth")>50 What the screen does now is eliminating companies looking bad regarding the pre-built ranking systems Basic: Value and Basic: Growth before selecting the 25 best ones for Basic: Quality. The limit of good and bad is arbitrarily a score of 50. If you run the backtest again you will see a change in performance. Once again, the purpose is not discussing performances, but giving you insights to build winning strategies. You will understand what is inside a ranking system on the way to become an advanced user. For now, you just need to know how to use it. With pre-built ranking systems you can already design strategies based on Quality, Value, Growth, Momentum, Sentiment without caring about factors. You can permute ranking systems in Settings and Rules, change the limit 50 for Rating, try other prebuilt ranking systems, add other rules, change universes, modify the stock number. Doing so, you will learn more about what works and doesn t work in the stock market, and you may find good strategies. Page 8 - Bootstrap P123 - Fred Piard

9 Using Portfolio123 for research and reporting If you are not a pure quant, the platform has more to offer than screens, backtests and portfolios. You can search and visualize historical data on stocks and the economy in various ways in the menu items under Stocks and Data. You can plot any stock factor on charts: the example below shows the price, gross margin and PE ratio of Boeing (BA) on a 3-year period: You can create custom dashboards: Page 9 - Bootstrap P123 - Fred Piard

10 You can plot stocks, ETFs, indexes, economic indicators on the same chart:...and more. Conclusion Portfolio123 is certainly the best tool if you want to become a self-directed quantitative investor. It is also an excellent tool if you are a professional. I hope this document will save you some time and effort in the learning curve. You can copy and share this document unchanged and in whole with colleagues, friends, contacts. Diffusion by mass mailing and download links accessible by the public or search engines are excluded. You may not modify, publish, transmit parts of the document except sharing a whole copy with identified people. We reserve all rights not expressly granted. Page 10 - Bootstrap P123 - Fred Piard

Quantitative Trading System For The E-mini S&P

Quantitative Trading System For The E-mini S&P AURORA PRO Aurora Pro Automated Trading System Aurora Pro v1.11 For TradeStation 9.1 August 2015 Quantitative Trading System For The E-mini S&P By Capital Evolution LLC Aurora Pro is a quantitative trading

More information

QUICK START. Your Guide to Using Telemet Orion

QUICK START. Your Guide to Using Telemet Orion QUICK START Your Guide to Using Telemet Orion 1 Your Telemet investment platform is organized into Workspaces and component displays. Component displays are individual windows with market data, charts,

More information

BOCI SmartXpress iphone & Android Trading Platform User Guide

BOCI SmartXpress iphone & Android Trading Platform User Guide BOCI SmartXpress iphone & Android Trading Platform User Guide 1 P a g e Contents I. Start with Download P.3 P.5 II. Securities Account Login P.6 III. Quote and News P.7 P.15 IV. HK and US Securities Trading

More information

1. NEW Sector Trading Application to emulate and improve upon Modern Portfolio Theory.

1. NEW Sector Trading Application to emulate and improve upon Modern Portfolio Theory. OmniFunds Release 5 April 22, 2016 About OmniFunds OmniFunds is an exciting work in progress that our users can participate in. We now have three canned examples our users can run, StrongETFs, Mean ETF

More information

Tutorial. Morningstar DirectSM. Quick Start Guide

Tutorial. Morningstar DirectSM. Quick Start Guide April 2008 Software Tutorial Morningstar DirectSM Quick Start Guide Table of Contents Quick Start Guide Getting Started with Morningstar Direct Defining an Investment Lineup or Watch List Generating a

More information

DIY Trade Manager Plus

DIY Trade Manager Plus DIY Trade Manager Plus Version 25.00 User Guide 11 May 2018 1 P a g e Risk Disclosure Statement and Disclaimer Agreement This User Guide ( User Guide ) is for installation and associated illustrative purposes

More information

Zacks Method for Trading: Home Study Course Workbook. Disclaimer. Disclaimer

Zacks Method for Trading: Home Study Course Workbook. Disclaimer. Disclaimer Zacks Method for Trading: Home Study Course Workbook Disclaimer Disclaimer The performance calculations for the Research Wizard strategies were produced through the backtesting feature of the Research

More information

GuruFocus User Manual: My Portfolios

GuruFocus User Manual: My Portfolios GuruFocus User Manual: My Portfolios 2018 version 1 Contents 1. Introduction to User Portfolios a. The User Portfolio b. Accessing My Portfolios 2. The My Portfolios Header a. Creating Portfolios b. Importing

More information

Forex Kinetics Advanced Price Action Trading System. All rights reserved

Forex Kinetics Advanced Price Action Trading System. All rights reserved Forex Kinetics 2.0.2 Advanced Price Action Trading System All rights reserved www.forex21.com First Steps Configuration of your MT 4 terminal Installation of the trading system Attach the trading system

More information

Trading Diary Manual. Introduction

Trading Diary Manual. Introduction Trading Diary Manual Introduction Welcome, and congratulations! You ve made a wise choice by purchasing this software, and if you commit to using it regularly and consistently you will not be able but

More information

Zacks Method for Trading: Home Study Course Workbook. Disclaimer. Disclaimer

Zacks Method for Trading: Home Study Course Workbook. Disclaimer. Disclaimer Zacks Method for Trading: Home Study Course Workbook Disclaimer Disclaimer The performance calculations for the Research Wizard strategies were produced through the backtesting feature of the Research

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. PortfolioAnalyst Users' Guide October 2017 2017 Interactive Brokers LLC. All Rights Reserved Any symbols displayed within these pages are for illustrative purposes only, and are not intended to portray

More information

Illustration Software Quick Start Guide

Illustration Software Quick Start Guide Illustration Software Quick Start Guide The illustration software is primarily designed to create an illustration that highlights the benefits of downside risk management and illustrates the effects of

More information

Zacks Method for Trading: Home Study Course Workbook. Disclaimer. Disclaimer

Zacks Method for Trading: Home Study Course Workbook. Disclaimer. Disclaimer Zacks Method for Trading: Home Study Course Workbook Disclaimer Disclaimer The performance calculations for the Research Wizard strategies were produced through the backtesting feature of the Research

More information

Using the Clients & Portfolios Module in Advisor Workstation

Using the Clients & Portfolios Module in Advisor Workstation Using the Clients & Portfolios Module in Advisor Workstation Disclaimer - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 Overview - - - - - - - - - - - - - - - - - - - - - -

More information

Portfolio123 Book. The General tab is where you lay out both a few identifying characteristics of the model and some basic assumptions.

Portfolio123 Book. The General tab is where you lay out both a few identifying characteristics of the model and some basic assumptions. Portfolio123 Book Portfolio123 s book tool lets you design portfolios of portfolios. The page permits Ready 2 Go models, publicly available Portfolio123 portfolios and, at some membership levels, your

More information

FxPro Direct User Guide. Version 1.0

FxPro Direct User Guide. Version 1.0 FxPro Direct User Guide Version 1.0 New to FxPro? Open a live trading account now with the world s #1 FX broker*. New to trading? Try one of our unlimited demo accounts. Get ready to experience an online

More information

Introduction to RELCOST. Carolyn Roos, Ph.D. Northwest CHP Technical Assistance Partnerships Washington State University Energy Program

Introduction to RELCOST. Carolyn Roos, Ph.D. Northwest CHP Technical Assistance Partnerships Washington State University Energy Program Introduction to RELCOST Carolyn Roos, Ph.D. Northwest CHP Technical Assistance Partnerships Washington State University Energy Program 1 Overview of RELCOST Presentation Outline Program use Results A review

More information

Opening an Account on Schwab Retirement Center

Opening an Account on Schwab Retirement Center Opening an Account on Schwab Retirement Center (With the ability to request and review 408(b)(2) Fee Disclosure Reports) For Charles Schwab Trust and Custody Services Opening an Account/Requesting 408(b)(2)

More information

PNC BENEFIT PLUS HSA INVESTMENT USER GUIDE. Home Page and Dashboard Navigation. pnc.com/pncbenefitplus

PNC BENEFIT PLUS HSA INVESTMENT USER GUIDE. Home Page and Dashboard Navigation. pnc.com/pncbenefitplus PNC BENEFIT PLUS HSA INVESTMENT USER GUIDE Home Page and Dashboard Navigation Top Right Quick Link Options: Home (will always return to the screen below), Print Screen and Logout. Menu Bar: Contains your

More information

A Window to Your Financial World

A Window to Your Financial World A Window to Your Financial World NetXInvestor provides you with online access to your investment accounts, night and day, seven days-a-week. 1 In addition, you can have instant access to balances, portfolio

More information

FxPro Direct User Guide

FxPro Direct User Guide FxPro Direct User Guide New to FxPro? Open a live trading account now with the world s #1 FX broker*. New to trading? Try one of our unlimited demo accounts. Get ready to experience an online trading account,

More information

Contents. Introduction

Contents. Introduction Getting Started Introduction O&M Profiler User Guide (v6) Contents Contents... 1 Introduction... 2 Logging In... 2 Messages... 3 Options... 4 Help... 4 Home Screen... 5 System Navigation... 5 Dashboard...

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

END OF DAY DATA CORPORATION. Scanning the Market. using Stock Filter. Randal Harisch 2/27/2011

END OF DAY DATA CORPORATION. Scanning the Market. using Stock Filter. Randal Harisch 2/27/2011 END OF DAY DATA CORPORATION Scanning the Market using Stock Filter Randal Harisch 2/27/2011 EOD's Stock Filter tool quickly searches your database, identifying stocks meeting your criteria. The results

More information

Student Guide: RWC Simulation Lab. Free Market Educational Services: RWC Curriculum

Student Guide: RWC Simulation Lab. Free Market Educational Services: RWC Curriculum Free Market Educational Services: RWC Curriculum Student Guide: RWC Simulation Lab Table of Contents Getting Started... 4 Preferred Browsers... 4 Register for an Account:... 4 Course Key:... 4 The Student

More information

Client Software Feature Guide

Client Software Feature Guide RIT User Guide Build 1.01 Client Software Feature Guide Introduction Welcome to the Rotman Interactive Trader 2.0 (RIT 2.0). This document assumes that you have installed the Rotman Interactive Trader

More information

Your guide to Fidelity NetBenefits

Your guide to Fidelity NetBenefits Your guide to Fidelity NetBenefits Includes simple steps to: Access and log into Fidelity NetBenefits Navigate the Home Page Review Investment Options and Performance Change Your Contribution Update Your

More information

Gold Space USER GUIDE

Gold Space USER GUIDE Gold Space USER GUIDE The risk of trading can be substantial and each investor and/or trader must consider whether this is a suitable investment. Past performance, whether actual or indicated by simulated

More information

Quick-Star Quick t Guide -Star

Quick-Star Quick t Guide -Star Quick-Start Guide The Alpha Stock Alert Quick-Start Guide By Ted Bauman, Editor of Alpha Stock Alert WELCOME to Alpha Stock Alert! I m thrilled that you ve decided to join this exciting new system. As

More information

Adaptive Retirement Accounts

Adaptive Retirement Accounts Adaptive Retirement Accounts Frequently asked questions Overview of Adaptive Retirement Accounts... 3 1. What are Adaptive Retirement Accounts?... 3 2. Why should I consider Investing in an Adaptive Retirement

More information

Morningstar Hypothetical Illustrator SM Quick Start Guide

Morningstar Hypothetical Illustrator SM Quick Start Guide Morningstar Hypothetical Illustrator SM Quick Start Guide Morningstar Hypothetical Illustrator module helps advisors support a recommended investment or portfolio strategy to clients and prospects. This

More information

TraderEx Self-Paced Tutorial and Case

TraderEx Self-Paced Tutorial and Case Background to: TraderEx Self-Paced Tutorial and Case Securities Trading TraderEx LLC, July 2011 Trading in financial markets involves the conversion of an investment decision into a desired portfolio position.

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

FTS Real Time Project: Smart Beta Investing

FTS Real Time Project: Smart Beta Investing FTS Real Time Project: Smart Beta Investing Summary Smart beta strategies are a class of investment strategies based on company fundamentals. In this project, you will Learn what these strategies are Construct

More information

We are not saying it s easy, we are just trying to make it simpler than before. An Online Platform for backtesting quantitative trading strategies.

We are not saying it s easy, we are just trying to make it simpler than before. An Online Platform for backtesting quantitative trading strategies. We are not saying it s easy, we are just trying to make it simpler than before. An Online Platform for backtesting quantitative trading strategies. Visit www.kuants.in to get your free access to Stock

More information

Copyright 2013 www.binaryoptionsbuddy.com 1 Table of Contents Binary Options Buddy Introduction...p. 3 OptiMarkets Platform Installation... p. 3-4 Indicator Installation process... p. 5-6 Alert Pop Up

More information

Identifying Market Bottoms: IBD Follow-Through Days

Identifying Market Bottoms: IBD Follow-Through Days Issue 39 Wednesday, June 13, 2012 Identifying Market Bottoms: IBD Follow-Through Days Erik Skyba, CMT Senior Quantitative Analyst TSLabs@TradeStation.com Features Studies/Files Included: Focus: Technical

More information

This document will provide a step-by-step tutorial of the RIT 2.0 Client interface using the Liability Trading 3 Case.

This document will provide a step-by-step tutorial of the RIT 2.0 Client interface using the Liability Trading 3 Case. RIT User Guide Client Software Feature Guide Rotman School of Management Introduction Welcome to Rotman Interactive Trader 2.0 (RIT 2.0). This document assumes that you have installed the Rotman Interactive

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

A Guide to Our REAL SPEND. Investment Strategies A RETIREMENT INCOME STRATEGY.

A Guide to Our REAL SPEND. Investment Strategies A RETIREMENT INCOME STRATEGY. A Guide to Our REAL Investment Strategies A www.horizoninvestments.com horizoninvestments.com 2 Challenge + Opportunity Challenge + Opportunity horizoninvestments.com 3 Demographic Shift Over the next

More information

FUNDAMENTALS. A Guide for Reviewing Your Fund Information

FUNDAMENTALS. A Guide for Reviewing Your Fund Information FUNDAMENTALS A Guide for Reviewing Your Fund Information Welcome! Lipper is proud to offer you the information you ll need to make informed decisions when selecting from your plan s investment options.

More information

GuruFocus User Manual: Interactive Charts

GuruFocus User Manual: Interactive Charts GuruFocus User Manual: Interactive Charts Contents: 1. Introduction and Overview a. Accessing Interactive Charts b. Using the Interactive Chart Interface 2. Basic Features a. Financial Metrics b. Graphing

More information

Guide to working with Aviva

Guide to working with Aviva Retirement Investments Insurance Health Guide to working with Aviva via pensionsync Contents Open an account with Aviva 3 How to apply for a new pension scheme with Aviva 4 Can I apply for an Aviva scheme

More information

A Window to Your Financial World

A Window to Your Financial World A Window to Your Financial World NetXInvestor TM provides you with online access to your investment accounts, night and day, seven days-a-week. 1 In addition, you can have instant access to balances,

More information

GuruFocus User Manual: New Guru Pages

GuruFocus User Manual: New Guru Pages GuruFocus User Manual: New Guru Pages September 2018 version Contents: 0. Introduction a. What is a guru? b. New Guru Pages Overview 1. Key Guru Statistics 2. The Flash Chart 3. The Portfolio Composition

More information

Hi, everyone. there. should be. We are an this for 28 Louie, our

Hi, everyone. there. should be. We are an this for 28 Louie, our TRANSCRIPT OF THE TD AMERITRADE WEBINAR January 22, 2015 Hi, everyone. We appreciate you taking time out of your day to join us. My name is Andrew Harris, and I head the national sales team to the advisors.

More information

EFE 2 Contracts USER GUIDE

EFE 2 Contracts USER GUIDE EFE 2 Contracts USER GUIDE The risk of trading can be substantial and each investor and/or trader must consider whether this is a suitable investment. Past performance, whether actual or indicated by simulated

More information

S-Enrooter 1.0. Automatic trading strategy USER GUIDE. Version 1.0

S-Enrooter 1.0. Automatic trading strategy USER GUIDE. Version 1.0 S-Enrooter 1.0 Automatic trading strategy USER GUIDE Version 1.0 Revised 22.08.2016 Trading method Breakout signals Trading Style Swing trading system Description of automatic strategy S-Enrooter 1.0 -

More information

Benchmarking. Club Fund. We like to think about being in an investment club as a group of people running a little business.

Benchmarking. Club Fund. We like to think about being in an investment club as a group of people running a little business. Benchmarking What Is It? Why Do You Want To Do It? We like to think about being in an investment club as a group of people running a little business. Club Fund In fact, we are a group of people managing

More information

2015 Performance Report

2015 Performance Report 2015 Performance Report Signals Site -> http://www.forexinvestinglive.com

More information

Gtrade manual version 2.04 updated

Gtrade manual version 2.04 updated Gtrade manual version 2.04 updated 9.30.2016 Table of Contents Contents Table of Contents2 Getting started, Logging in and setting display language in TurboTick Pro3 Level 25 Order Entry8 Streamlined Order

More information

LAB 2 INSTRUCTIONS PROBABILITY DISTRIBUTIONS IN EXCEL

LAB 2 INSTRUCTIONS PROBABILITY DISTRIBUTIONS IN EXCEL LAB 2 INSTRUCTIONS PROBABILITY DISTRIBUTIONS IN EXCEL There is a wide range of probability distributions (both discrete and continuous) available in Excel. They can be accessed through the Insert Function

More information

PROFIT TRADE SCANNER. USER GUIDE

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

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

McDowell s Special Market Report Using the TradersCoach.com Software Tools

McDowell s Special Market Report Using the TradersCoach.com Software Tools McDowell s Special Market Report Using the TradersCoach.com Software Tools JULY 2018: Welcome to this month s Market Report! This written report is going to forecast the Dow Jones Industrial Average (hereafter

More information

Stock Forecast Toolbox

Stock Forecast Toolbox Stock Forecast Toolbox An institutional-grade tool for the self-directed trader Overview The Stock Forecast Toolbox is at the core of our research platform. This toolset delivers highly accurate forecasts

More information

Creating a Standard AssetMatch Proposal in Advisor Workstation 2.0

Creating a Standard AssetMatch Proposal in Advisor Workstation 2.0 Creating a Standard AssetMatch Proposal in Advisor Workstation 2.0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 What you will learn - - - - - - - - - - - - - - - - - -

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. Fully Disclosed Brokers Getting Started Guide October 2017 2017 Interactive Brokers LLC. All Rights Reserved Any symbols displayed within these pages are for illustrative purposes only, and are not intended

More information

FX-GO platform Webtrader manual V 2.0

FX-GO platform Webtrader manual V 2.0 FX-GO platform Webtrader manual V 2.0 TradeTools FX FX-GO platform - Webtrader manual V. 2.0 - Product description Table of contents: 1 FXGO Webtrader... 2 1.1 Product description... 2 1.2 Login to Trade

More information

We Provide the Insights. You Invest in the Right Opportunities. Solutions for Private Equity

We Provide the Insights. You Invest in the Right Opportunities. Solutions for Private Equity We Provide the Insights. You Invest in the Right Opportunities. Solutions for Private Equity S&P Global Market Intelligence offers private equity practitioners access to essential information about companies,

More information

AUTOMATED TRADE PREDATOR

AUTOMATED TRADE PREDATOR Presents AUTOMATED TRADE PREDATOR Automated Trade Predator Published by Alzaiak Trading CC Nominee Old Tree Publishing CC Suite 509, Private Bag X503 Northway, 4065, KZN, ZA www.tradeology.com Copyright

More information

Designing a Retirement Portfolio That s Just Right For You

Designing a Retirement Portfolio That s Just Right For You Designing a Retirement Portfolio That s Just Right For You July 10, 2015 by Chuck Carnevale of F.A.S.T. Graphs Introduction No one knows your own personal financial situation better than you do. Every

More information

Quant -Ideas. User Guide

Quant -Ideas. User Guide 2013 Quant -Ideas User Guide What is Quant- Ideas?... 3 Why Quant- Ideas?... 3 What time Quant- Ideas is up daily?... 3 Quant-Ideas Screenshot... 3 Glossary of Fields... Error! Bookmark not defined. Pricing

More information

Research Wizard: Upgrade -- April 2007 Descriptions and Screenshots

Research Wizard: Upgrade -- April 2007 Descriptions and Screenshots Research Wizard: Upgrade -- April 2007 Descriptions and Screenshots Below are some of the Descriptions and Screenshots for the new April 2007 upgrade for the Research Wizard. Free Upgrade to 6 Years of

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

MT4 TRADING SIMULATOR

MT4 TRADING SIMULATOR v MT4 TRADING SIMULATOR fxbluelabs.com 1. Overview of the FX Blue Trading Simulator... 2 1.1 Purpose of the Trading Simulator... 2 1.2 Licence... 2 2. Installing the Trading Simulator... 3 2.1 Installing

More information

client user GUIDE 2011

client user GUIDE 2011 client user GUIDE 2011 STEP ACTION Accessing Risk Register 1. Type https://www.scm rms.ca/riskregister/login.aspx 2. Click in the Username field on the Risk Register home page. 3. Type your Username and

More information

Viive 5.2 QUICK START GUIDE MAC-VIIVE

Viive 5.2 QUICK START GUIDE MAC-VIIVE Viive 5.2 QUICK START GUIDE 1-855-MAC-VIIVE ii Contents PUBLICATION DATE January 2016 COPYRIGHT 2016 Henry Schein, Inc. All rights reserved. No part of this publication may be reproduced, transmitted,

More information

FOREX GEMINI CODE. Presents. Dynamic Triple Edge

FOREX GEMINI CODE. Presents. Dynamic Triple Edge FOREX GEMINI CODE Presents Forex Gemini Code Published by Alaziac Trading CC Suite 509, Private Bag X503 Northway, 4065, KZN, ZA www.forexgeminicode.com Copyright 2014 by Alaziac Trading CC, KZN, ZA Reproduction

More information

OMNILIFE USER GUIDE 1.0 QUOTE... 2

OMNILIFE USER GUIDE 1.0 QUOTE... 2 OMNILIFE USER GUIDE 1.0 QUOTE... 2 1.1 QUOTE SETTINGS... 2 1.2 PREMIUMS... 2 1.3 SPLIT PREMIUM FERQUENCIES... 3 1.4 ACTIONS DROPDOWN... 3 1.5 GRAPHS... 4 1.6 ACCIDENT ONLY... 6 1.7 SUPERLINK / FLEXILINK...

More information

IPO VITAL SIGNS. Participant Training Guide

IPO VITAL SIGNS.  Participant Training Guide IPO VITAL SIGNS http://ipovitalsigns.com February, 2008 Table of Contents Introduction...2 Course Objectives...2 IPO Vital Signs Login...3 Search IPO Vital Signs...4 Using the IPO Process for Law Firms

More information

WIN NEW CLIENTS & INCREASE WALLET-SHARE with HiddenLevers Engaging prospects + clients with portfolio stress testing

WIN NEW CLIENTS & INCREASE WALLET-SHARE with HiddenLevers Engaging prospects + clients with portfolio stress testing WIN NEW CLIENTS & INCREASE WALLET-SHARE with HiddenLevers Engaging prospects + clients with portfolio stress testing TABLE OF CONTENTS INTRO: How it works 3 ONE: Introduce and position risk at the first

More information

PriceMyLoan.com Lender AE Guide. Revision 0707

PriceMyLoan.com Lender AE Guide. Revision 0707 PriceMyLoan.com Revision 0707 PriceMyLoan INTRODUCTION... 3 CUSTOMER SUPPORT... 3 VIEWING LOAN SUBMISSIONS... 4 AUTOMATIC EMAIL NOTIFICATIONS... 5 PRICING ENGINE COMMON SCENARIOS... 6 Running the LPE on

More information

HOW TO SWITCH AN INVESTMENT HOW TO SWITCH AN INVESTMENT GETTING STARTED HELP GUIDE. Use this step by step guide designed to help you get started.

HOW TO SWITCH AN INVESTMENT HOW TO SWITCH AN INVESTMENT GETTING STARTED HELP GUIDE. Use this step by step guide designed to help you get started. HOW TO SWITCH AN INVESTMENT HOW TO SWITCH AN INVESTMENT GETTING STARTED HELP GUIDE Use this step by step guide designed to help you get started. How to switch an investment 2 TABLE OF CONTENTS How it works:

More information

Using the Principia Suite

Using the Principia Suite Using the Principia Suite Overview - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -1 Generating Research Mode Reports........................................... 2 Overview -

More information

GuruFocus User Manual: Interactive Charts version

GuruFocus User Manual: Interactive Charts version GuruFocus User Manual: Interactive Charts 2018 version 1 Contents: 0. Introduction and Overview a. Accessing Interactive Charts b. Interactive Chart Layout 1. Adding Stocks to the Chart 2. Graphing Financial

More information

Beta Test Quick-Start Guide

Beta Test Quick-Start Guide The Stock Trader Alert Beta Test Quick-Start Guide Stock Trader ALERT Stock Trader ALERT The Stock Trader Alert Beta Test Quick-Start Guide By Ted Bauman, Editor of Stock Trader Alert WELCOME to Stock

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

HEALTH SAVINGS ACCOUNT (HSA) INVESTMENT PORTAL GUIDE

HEALTH SAVINGS ACCOUNT (HSA) INVESTMENT PORTAL GUIDE HEALTH SAVINGS ACCOUNT (HSA) INVESTMENT PORTAL GUIDE Table of Contents HOME PAGE... 3 Menu Bar... 3 Welcome to your HSA Investment Account... 3 Your Investment Portfolio... 3 Your Investment Elections:...

More information

Getting started as an investor. A guide for investors

Getting started as an investor. A guide for investors Getting started as an investor A guide for investors MAKE A RETURN AND A DIFFERENCE You can earn attractive, stable returns by lending to businesses through Funding Circle. Set up your account in minutes,

More information

Web BORSAT User s Manual

Web BORSAT User s Manual Web BORSAT User s Manual December 2018 Version 3.2 SICO Financial Brokerage L.L.C Important Notice: This manual has been prepared only to assist the client how to interact with the Web BORSAT application

More information

Forex Online Trading User Guide

Forex Online Trading User Guide Forex Online Trading User Guide WING FUNG FOREX LIMITED Tel (HK) : (852) 2303 8690 Tel (China) : 400 120 1080 Fax (HK) : (852) 2331 9505 Fax (China) : 400 120 1003 Email : cs@wfgold.com Website : www.wfgold.com

More information

Crude oil Arrow USER GUIDE

Crude oil Arrow USER GUIDE Crude oil Arrow USER GUIDE The risk of trading can be substantial and each investor and/or trader must consider whether this is a suitable investment. Past performance, whether actual or indicated by simulated

More information

Money Management (MX) Frequently Asked Question s

Money Management (MX) Frequently Asked Question s Money Management (MX) Frequently Asked Question s Account Maintenance How do I get rid of duplicate accounts? How do I permanently delete an account? How do I hide/exclude an account? How do I rename my

More information

Synaptic Analyser USER GUIDE

Synaptic Analyser USER GUIDE Synaptic Analyser USER GUIDE Version 1.0 October 2017 2 Contents 1 Introduction... 3 2 Logging in to Synaptic Analyser... 3 3 Client Screen... 5 3.1 Client Details... 6 3.2 Holdings... 6 3.3 Income Sources...

More information

MT4 Awesomizer V3. Basics you should know:

MT4 Awesomizer V3. Basics you should know: MT4 Awesomizer V3 Basics you should know: The big idea. Awesomizer was built for scalping on MT4. Features like sending the SL and TP with the trade, trailing stops, sensitive SL lines on the chart that

More information

Introduction to Client Online

Introduction to Client Online Introduction to Client Online Trade Finance Guide TradeFinanceNewClientsV2Sept15 Contents Introduction 3 Welcome to your introduction to Client Online 3 If you have any questions 3 Logging In 4 Welcome

More information

A16 Documenting CECAS PRC 29 Request & Baseline SIF Data Training Script ( ) 1

A16 Documenting CECAS PRC 29 Request & Baseline SIF Data Training Script ( ) 1 A16 Documenting CECAS PRC 29 Request & Baseline SIF Data Training Script (04.17.14) 1 Welcome 9:00 9:05 1:00 1:05 Hello and welcome to the Documenting CECAS PRC 29 Request and Baseline SIF Data training

More information

USER MANUAL. Version 1.7

USER MANUAL. Version 1.7 USER MANUAL Version 1.7 1 LEGAL NOTICE NO INVESTMENT ADVICE. The information contained in this user manual has no regard to the specific investment objective, financial situation or particular needs of

More information

Dear Client, We appreciate your business!

Dear Client, We appreciate your business! FTJ FundChoice Website Guide Page 1 Dear Client, Thank you for choosing FTJ FundChoice. This guide will assist you in managing your online account at: www.portfoliologin.com. In keeping with our mission

More information

FOREX PROFITABILITY CODE

FOREX PROFITABILITY CODE FOREX PROFITABILITY CODE Forex Secret Protocol Published by Old Tree Publishing CC Suite 509, Private Bag X503 Northway, 4065, KZN, ZA www.oldtreepublishing.com Copyright 2013 by Old Tree Publishing CC,

More information

Plan Access ABA-RF Guide

Plan Access ABA-RF Guide Plan Access ABA-RF Guide September 1, 2014 Copyright Copyright 2009, 2014 Voya Institutional Plan Services, LLC All rights reserved. No part of this work may be produced or used i4 any form or by any means

More information

DIRECT INVESTOR. Take the sting out of downturns. Leading the way in service. In this issue

DIRECT INVESTOR. Take the sting out of downturns. Leading the way in service. In this issue SPRING 2015 A QUARTERLY EDUCATIONAL NEWSLETTER FOR CLIENTS OF RBC DIRECT INVESTING INC. DIRECT INVESTOR 45184 (03/2015) Leading the way in service 2014 Dalbar Award for Excellence in Service 1 Take the

More information

Work management. Work managers Training Guide

Work management. Work managers Training Guide Work management Work managers Training Guide Splitvice offers you a new way of managing work on all levels of your company. Of course, an innovative solution to managework requires a slightly different

More information

StuckyNet-Link.NET User Interface Manual

StuckyNet-Link.NET User Interface Manual StuckyNet-Link.NET User Interface Manual Contents Introduction Technical Information General Information Logging In & Out Session Timeout Changing Your Password Working with the Borrowing Base Creating

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

Workplace Education Series. NetBenefits Overview: Get answers to your questions about retirement

Workplace Education Series. NetBenefits Overview: Get answers to your questions about retirement NetBenefits Overview: Get answers to your questions about retirement Welcome More than just a place to check your account balance NetBenefits provides the information, education, and functionality you

More information

Judge InvestWrite Essays in Three Easy Steps

Judge InvestWrite Essays in Three Easy Steps Generously underwritten for the SIFMA Foundation by Judge InvestWrite Essays in Three Easy Steps Step One The student essays you will judge are based on the InvestWrite assignment below. Please familiarize

More information

Customer Guide. Don t just be good with money, be MoneyBrilliant

Customer Guide. Don t just be good with money, be MoneyBrilliant Customer Guide Welcome to MoneyBrilliant. Your Financial Partner has invited you to use the MoneyBrilliant service and to share your MoneyBrilliant information with them. They can work with you and provide

More information