Analysis of Complex Systems

Slides:



Advertisements
Similar presentations
XML: Extensible Markup Language
Advertisements

Web Technologies By Andreas Vetter and Yong Soo Deutschle.
 Fundamentals of Web Design.  Describe the history and theory of XHTML  Understand the rules for creating valid XHTML documents  Apply a DTD to an.
Web Mining Research: A Survey Authors: Raymond Kosala & Hendrik Blockeel Presenter: Ryan Patterson April 23rd 2014 CS332 Data Mining pg 01.
Information Retrieval in Practice
Creating a Well-Formed Valid Document. 2 Objectives Introducing XHTML Creating a Well-Formed Document Creating a Valid Document Creating an XHTML Document.
CS155b: E-Commerce Lecture 10: Feb. 13, 2003 XML and its relationship to B2B commerce Acknowledgements: R. Glushko, A. Gregory, and V. Ramachandran.
Tutorial 11 Creating XML Document
Overview of Search Engines
RSS RSS is a method that uses XML to distribute web content on one web site, to many other web sites. RSS allows fast browsing for news and updates.
Introducing HTML & XHTML:. Goals  Understand hyperlinking  Understand how tags are formed and used.  Understand HTML as a markup language  Understand.
Chapter 6: Hostile Code Guide to Computer Network Security.
TERMS TO KNOW. Programming Language A vocabulary and set of grammatical rules for instructing a computer to perform specific tasks. Each language has.
Languages in WEB Presented by: Jenisha Kshatriya BCM SS09.
Working with XHTML Creating a Well-Formed Valid Document.
XP Tutorial 9New Perspectives on Creating Web Pages with HTML, XHTML, and XML 1 Working with XHTML Creating a Well-Formed Valid Document Tutorial 9.
XP 1 CREATING AN XML DOCUMENT. XP 2 INTRODUCING XML XML stands for Extensible Markup Language. A markup language specifies the structure and content of.
Implementing Genetic Algorithms in Finance Applications Nihaar Sinha.
Extensible Hypertext Markup Language A successor to HTML 4.01 XML-compliant W3C is improving and expanding.
Pros and Cons Comparison By Justin Bost Olivia Bischoff.
Fundamentals of Web Design Copyright ©2004  Department of Computer & Information Science Introducing XHTML: Module A: Web Design Basics.
XP Tutorial 9 1 Working with XHTML. XP SGML 2 Standard Generalized Markup Language (SGML) A standard for specifying markup languages. Large, complex standard.
Text Feature Extraction. Text Classification Text classification has many applications –Spam detection –Automated tagging of streams of news articles,
Analysis of Complex Systems John Sherwood Period 2.
XP 1 Creating an XML Document Developing an XML Document for the Jazz Warehouse XML Tutorial.
XML Design Goals 1.XML must be easily usable over the Internet 2.XML must support a wide variety of applications 3.XML must be compatible with SGML 4.It.
1 Tutorial 11 Creating an XML Document Developing a Document for a Cooking Web Site.
HTML Hyper Text Markup Language 1BFCET BATHINDA. Definitions Web server: a system on the internet containing one or more web site Web site: a collection.
Representing data with XML SE-2030 Dr. Mark L. Hornick 1.
NETWORK VISUALIZATION ABHISHEK KUMAR (2011CS50272)
The World Wide Web. What is the worldwide web? The content of the worldwide web is held on individual pages which are gathered together to form websites.
Analysis of Complex Systems John Sherwood Period 2.
XP Tutorial 9New Perspectives on HTML and XHTML, Comprehensive 1 Working with XHTML Creating a Well-Formed Valid Document Tutorial 9.
Analysis of Complex Systems John Sherwood Period 2.
Tutorial 9 Working with XHTML. New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition 2 Objectives Describe the history and theory of XHTML.
Basic Steps to create a Website using HTML5. Hypertext Markup Language.
McGraw-Hill Technology Education © 2004 by the McGraw-Hill Companies, Inc. All rights reserved. Office Word 2003 Working Together 1 Word 2003 and Your.
Basic Web Page Design. Text book: HTML, XHTML, and CSS: Visual QuickStart Guide, Sixth Edition written by Elizabeth Castro. Software: Adobe® Dreamweaver®
HTML And the Internet. HTML and the Internet ► HTML: HyperText Markup Language  Language in which all pages on the web are written  Not Really a Programming.
Glencoe Introduction to Web Design Chapter 4 XHTML Basics 1 Review Do you remember the vocabulary terms from this chapter? Use the following slides to.
Agenda9/11/13  Do Now  Display your name tag and log into your computer  Pre-Assessment Test  Info and Interests  Syllabus and Course Expectations.
SNU OOPSLA Lab. A Tour of XML © copyright 2001 SNU OOPSLA Lab.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
Extensible Markup Language (XML) Pat Morin COMP 2405.
Data mining in web applications
Social Networking sites and Indian caste system
Information Retrieval in Practice
Accessibility Evaluations of 100 Banking and Finance Websites
Efficient Evaluation of XQuery over Streaming Data
Creating a Well-Formed Valid Document
The Object-Oriented Thought Process Chapter 11
Search Engine Architecture
Introducing XHTML: Module A: Web Design Basics
Introducing XHTML: Module A: Web Design Basics
DATA MINING © Prentice Hall.
Introduction to XHTML.
High Points CSCI 1710 Spring 2016.
Workshop on XML-Based Library Applications 5
High Points CSCI 1710 Fall 2017.
Creating an XML Document
Introducing HTML & XHTML:
Module 2: Demand Forecasting 2.
Science Fair Project 7th Grade Science.
Experimental Design: The Scientific Method.
What is HTML?.
Structuring Content in a Web Document
CS 240 – Advanced Programming Concepts
An Introduction to JavaScript
High Points CSCI 1210.
Presentation transcript:

Analysis of Complex Systems John Sherwood Period 2

Abstract My project is involved with using data mining techniques on the internet in order to gather enough information for the use for a genetic algorithm in trend analysis of a complex system; e.g. the stock market

Scope The most fundamental element of my program is creating a correlation between news about a company and its stock and the price of the stock itself. In order to do this, a huge amount of data on both stock prices and news regarding companies must be processed into a quantitative format, and then extensively analyzed.

Expected Results In this project, I expect to at the very least have a very useful genetic algorithm, that given a list of independant and dependant data, can generate equations to create a tentative correlation. While the extremely chaotic nature of the specific application may prevent quantitative success in this instance, I do expect to have success on general terms.

Other's Work Due to the very lucrative nature of a program that could predict the stock market: Many have tried All have failed

Procedures Differs for each part of program Data Mining Analysis Determination of data parsing sequences to extract information from HTML (Hypertext Markup Language) Quantitative tests of success XML parser Data classification Trial and error tests Evaluation algorithms Discriminant generation

Design Several program segments: Data mining algorithms Price data logger News parser Data analysis algorithms Heuristic Generator Equation Regression Genetic Command Shell unifies elements of program Graph Generator Written in PHP to build PNG graphs of data

Program Tests XML parser tests prove successful in parsing properly formatted XML/XHTML, sufficient success in parsing malformed XHTML Stock price logging working perfectly Generalized equations work but are semi-timeframe specific

Algorithms Different program segments use different algorithms Data mining algorithm Discriminant (Heuristic) Generation Algorithm XML parsing algorithm Equation Refinement algorithm

Data Mining Based on XML parser to convert XHTML code to programming objects New algorithm allows for parsing of Google Finance pages – following links to other sites for more data Different algorithms required to parse different websites for information

XML Parser Two potential paradigms Iterative Uses a set of flags to determine what action to take with each character Recursive Splits XML document into sets of tags and processes each tag's child elements

Problems Malformed XHTML forces extensive testing of data mining for each new site Huge variety in formatting of different websites makes mining problematic to make sure that only news data is mined

Results and Conclusions The equations generated by my equation refiner are accurate in the timeframe they are generated for, then become less accurate as time passes (time in the past or future relative to the generation timeframe), implying that the effect of news information on stock prices is non-constant and relative based on your current timeframe