Directional Changes 2. Concept Directional Changes are changes on directions Applied in capital markets, they are changes of prices’ directions As a time.

Slides:



Advertisements
Similar presentations
Kaiguo Zhou Sun Yat-sen University, Guangzhou, China Michael C S Wong City University of Hong Kong, Hong Kong, China The Impact of Short Selling on China.
Advertisements

1 Chapter 12 The Supply of and Demand for Productive Resources.
P3 & M1.
Understanding “Margin Money” in derivatives – By Prof. Simply Simple TM I hope the last lesson on ‘Put Option’ in the real world helped you in getting.
Things you need to know before installing Linux Alan M Durham WHO/TDR/USP Bioinformatics Course July 2003.
Da Players’ Gold Store Where we sell gold cheap….real cheap!!!! Colin Dunn Mike Gaffney Mike Oberdorf.
How do we measure inflation? Some measurement problems Rósmundur Guðnason, Statistics Iceland Seventh meeting of the International Working Group on Price.
Equilibrium S3 EPA. D market Market of bread S market Price ($) Quantity
Chapter 1 Object Oriented Programming. OOP revolves around the concept of an objects. Objects are crated using the class definition. Programming techniques.
Pricing in Sales and Distribution (SD)  Companies have developed numerous pricing and discount strategies—some unencumbered by any logical methodology.
Inflection Points. Objectives Students will be able to Determine the intervals where a function is concave up and the intervals where a function is concave.
Recognize the importance of marketing.
With technical analysis, timing is the critical success factor. Technical Analysis serves to determine "when to buy or when to sell" shares. It is concerned.
Economics and The Business Cycle. What is The Business Cycle? The expansionary and contractionary phases in the growth rate of the real GDP.
Statistics and Modelling 3.8 Credits: Internally Assessed.
Accounting Ratios S4 Accounting. RATIO ANALYSIS Ratio analysis is the process of determining and interpreting numerical relationship based on financial.
SUBMITTED BY:- KAMALPREET KAUR ASSISTANT PROFESSOR GCCBA-42,CHANDIGARH Financial Statement Analysis.
 What is inflation? --a general upward movement in price of goods and services in an economy  What is deflation? --a general downward movement in.
ICT IN SHOPPING ICT in business. Barcode Scanning.
Economics Basics Demand and Supply.
Graphing Techniques: Transformations
Monthly Shelf Tags Purpose: Print Store Shelf Labels for Promoted Items, by Sales Person.
Supply and Demand Chapter 1, 1.3 (part 2). THE LAW OF DEMAND The law of demand says : as the price of a good or service rises, its quantity demanded falls.
Time Series 1.
Chapter 16 Jones, Investments: Analysis and Management
Setting budgets By the end of this unit you should understand:  the differences between income, expenditure and profits budgets  why businesses set budgets.
Creating Projects in JCreator Computer Science 40S.
What is a Moving Average? b Indicator that shows the average value of a security’s price over a period of time. b Used to produce buy and sell signals.
CSE1GDT Gameplay Mechanics. Core Mechanics The exact definition of the gameplay rules –It doesn’t matter where these rules are, just that you know them!
SDMX DATA STRUCTURE DEFINITION SDMX Training BANK INDONESIA SEPTEMBER 2015 YOGYAKARTA, INDONESIA.
Compiling a Services Producer Price Index using IMF developed Price Index Processor Software Niall O’Hanlon, CSO Ireland.
Chapter 9 Macros And Visual Basic For Applications.
BTS430 Systems Analysis and Design using UML Domain Model—Part 2: Associations and Attributes.
Office 2003 Post-Advanced Concepts and Techniques M i c r o s o f t Access Project 7 Advanced Report and Form Techniques.
Mission: “ To increase the profit of my client little by little as it becomes big. To do the things right at the first time.” Vision: “Don’t work for the.
Recording Your Evidence Bibilography. What is a Bibliography It is a list of all the places you have found information :- –That has been used in your.
1 Earned value analysis Planned value (PV) or Budgeted cost of work scheduled (BCWS) – original estimate of the effort/cost to complete a task (compare.
Representation of Data Binary Representation of Instructions teachwithict.weebly.com.
Money Market Graph Why do we have it? What makes the demand curve move?
Technical Analysis Triangles and Wedges. Ascending Triangle The ascending triangle is a bullish pattern, which gives an indication that the price of the.
Section 1.1 Marketing and the Marketing Concept. The Scope of Marketing Question: What is marketing? Marketing is the activity set of institutions, and.
8.3 Business Cycle Identify phases of the business cycle and the economic indicators used to measure economic activities and trends.
Understanding “Margin Money” in derivatives – By Prof. Simply Simple TM I hope the last lesson on ‘Put Option’ in the real world helped you in getting.
6.00 Understand Financial Analysis
Volatility Smiles Chapter 19
Investment Management
Graphical techniques in Economics
Efficient Methods for Data Cube Computation
Exercise The university wants to create a database for teaching. The database needs to contain information about the different courses, the different versions.
3 The Demand for Labor.
Aggregate Demand and Aggregate Supply
Chapter 15 Computers and trading systems
Statistics and Modelling 3.8
Supply and Demand: How Markets Work
Update Structures ____________________________________________
Marketing Concept 1-3.
مديريت موثر جلسات Running a Meeting that Works
6.00 Understand Financial Analysis
The Big Questions of Economic Growth
STORE MANAGER RESPONSIBILITIES.
NATIONAL 4/5 Administration & it
Section 3.3 The Slope of a Line.
Aggregate Demand and Aggregate Supply
23C: time series.
Chpt 2: Supply and Demand
Thing / Person:____________________ Dates:_________________
Record your QUESTIONS as your read.
Attractive Don’tPayAll Discount Codes Enable Good Savings.
Level 1 +3SD +2SD +1SD Mean -1SD -2SD -3SD Level 2.
EXHIBIT 1 Three Categories of Resources
Presentation transcript:

Directional Changes 2

Concept Directional Changes are changes on directions Applied in capital markets, they are changes of prices’ directions As a time series and a stochastic process, price had and will have only two directions – up and down

Task Your task becomes find out points, at which the direction of price changes That is, find out the points at which it changes from a upward trend to a downward trend, or from a downward trend to a upward trend. However, you are not looking for every directional change, but only under a t% threshold.

Technique

Under the threshold

Code Code for finding the very first t% change

t=0.05; %Threshold c=[]; %Space holder for change rates s=0; %Indicator for former change 0 means a downward run, 1 means an upward run sign=[]; %Stores all 's' SD=[]; %Records starting dates ED=[]; %Records ending dates i=1; j=i+1; %Get the first t%change while j<=length(p) change=(p(j)-p(i))/(p(i)); if abs(change)>=t c=[c change]; SD=[SD i]; ED=[ED j]; %Determine if the price goes up or down if change>0 s=1; sign=[sign s]; else if change<0 s=0; sign=[sign s]; end break else j=j+1; end i=j;