StudentShare
Contact Us
Sign In / Sign Up for FREE
Search
Go to advanced search...
Free

Web-Based App: Stock Market Prices - Report Example

Cite this document
Summary
This report "Web-Based App: Stock Market Prices" presents a system to enhance the services to the clientele. The high transaction costs need to be reduced because of the number of operations executed to attain a competitive edge. Sophisticated operations require state of the art trading systems…
Download full paper File format: .doc, available for editing
GRAB THE BEST PAPER98.4% of users find it useful
Web-Based App: Stock Market Prices
Read Text Preview

Extract of sample "Web-Based App: Stock Market Prices"

Stock market prices-web based app Introduction Investor access to detailed market real time quotes enhances market efficiency and price discovery, and known to be a necessity and of substantial benefit to many investors and shareholders alike. In order to access the real time quotes, an individual needs to subscribe to the Real –Time quotes services, which the bourse provides free to investors by several companies. On global exchanges, the growth in electronic trading volumes has been on the increase. market data feeds generates tens of thousands of messages in one second. Latency of one second in the electronic trading is critical to the trading operation from this engine creates the latest results will maximize trade profit. This fact has compelled financial services providers to consider high volume processing of data feed with less latency An identical requirement exists within the computer networks to monitor for denial of services and other types of security attacks. The system establishes a fraud detection in Real-time from financial services networks to the cell phone networks processing the same characteristic. There are many advances in stock technologies, although the real time stock out has gotten the most press coverage recently. There are diverse technologies with various capabilities, price points, and footprints. After some time, this evolving change in the stock exchange will spread to other sectors as well. Anything of material significance will be stream –tagged to report its state in real time. The quotations published by market makers on the markets inter-dealer system of quotation are displayed on the companies quote page in the presumed site www.mysite.com. The documented information comprises each market markers name, ask price and bid, and size. If the service is absent, the only available quotes will be the inside market quotes. This will be on display after a 15 minute lag. Consequently companies will be able to display Real time stock quotes for investors on www.mysite.com as well as their companies website. The demand All financial markets globally have an increasing demand for the system to enhance the services to the clientele. The high transaction costs need to be reduced because of the quantity of operations executed to attain the competitive edge. Sophisticated financial operations and keen investors require state of the art trading systems with potential of handling operations in terms of complexity and volume. Challenge the market The challenges faced by markets place are the ability to handle increased volume of trading and latest financial instrument. This calls for the implementation of new rules and regulations that demand for setting up latest cutting edge systems or modifying or even upgrading the existing systems without interfering the on-going operations Challenges 1. Quick and quality execution 2. High Performance 3. Scalability to handle high volumes without degrading in performance 4. Platform neutral 5. Security Overview The documentation is to be developed to cater to the operational needs of the investors all over the world. Therefore, the architecture covers all aspects of Real time market information. Real Time and Delayed Stock Quotes The stock quotes are available on real time basis for which the bourse charges a monthly fee while the delayed mode which occurs on the basis of 15-20 minutes delay or lag and available for free. Relevant parameters from the stock market 1. Spot price is acquired from stock exchange’s current basic stock trade price. 2. Exercise price, Time to Maturity are acquired from option exchange quotes. 3. Risk free rate depends on different economies, for example, the US market and the US Treasury 4. Suggested bill rate is 5. Volatility is acquired from user entries; the goal is to give an individual user freedom to decide on their own volatility method. It helps in carrying a test for volatility’s accuracy against the basic market price. Finance data service provider The data is obtained from Mysite Finance Streaming service. Mysite! Finance broadcast 15-20 minutes delayed stock data through the Comma-Separated Values (CSV) file, the core reason to choose Mysite is due to its data free and flexible service. The main reason for finally deciding on Mysite is because of it is a free service, and to process the CSV file requires less input of manpower than create the connector to set up with the Application Programming Interface (API) supplied from foreign exchanges and vital data supplier such like reuters, Bloomberg, IQFeed, Interactive Brokers,eSignal, and Meta Stocks. The data suppliers charge subscription fee before integrating the API, which is used for implementing the service. Development and system architecture The application I am trying to develop is an online application program. The program finds the host from a dedicated hosting server where it incorporates the databases and website and any individual can gain access to the website through a web browser. The most suitable programming language for developing this online app is the PHP language, which is an open source platform. The reason for using the PHP platform as the most suitable development tool for this project was based on different factors of which some are explained below. a) Performance-This is small app and intended the best option is an open source platform, a position which PHP can easily fill. b) Maintainability - It is a more user friendly and robust in nature. c) Cost-The cost involved is minimal, as the open source PHP and MySql can be easily downloaded from the web at no cost, not forgetting the free licensing. This option looks more enticing in comparison to ASP.NET or.NET framework from Microsoft which is more expensive. d) Compatibility-The PHP platform is an open source platform, thus making the app compatible to many sites and transaction. Therefore, the PHP is the most suitable server side language to adopt for this project. class StockHelper { // private values that are stored within this class private $code = ''; private $price = ''; private $volume = ''; private $change = ''; private $content = ""; // This method retrieves the HTML of a data source customised by the $code value // which would be a valid stock code. Lloyds of London is used as default for testing purposes public function getStockData($code = 'LLOY.L', $source = 'mysite') { $this->setCode($code); if ($source == 'mysite') { $this->content = file_get_contents("h.p://uk.finance.mysite.com/q?s=". $code); } else { // if the source does not equal mysite then the value passed to source // must be a URL with the final element being an equals sign that expects // or implies the stock code e.g. http://uk.finance.mysite.com/q?s= is a valid value for $source $this->content = file_get_contents($source.$code); } } // This pair of methods sets and gets the ticker being manipulated - other should perhaps be created but this code is most // likely to be required most often... public function setCode($value) { $this->code = $value; } public function getCode() { return $this->code; } // extractStockPrice (and all the extractStock methods examines the content of a retrieved page and // extracts the current stock price. By default, the code assumes that the code // extracted is located on a mysite web page that has been retrieved with the getStockData method // If stock data has been retrieved from elsewhere a valid regular expression must be provided // It should be noted that all three of these extractStock methods can break easily - if mysite // changes how it returns the HTML then the liklihood is that the pattern will not work // This key to this working is the value of the pattern - it is essentially a string with some 'meta' codes (particularly those // symbols inside the braces and brackets) // further information can be found at http://www.regular-expressions.info/php.html public function extractStockPrice($pattern = '/([0-9., ]*)/i') { $this->volume = $this->extractValues($pattern); return $this->volume; } public function extractStockChange($pattern = '/alt="[^"]*">([ 0-9., ]*)/i') { $sign=$this->extractValues('/alt="([^"]*)">([ 0-9., ]*)/i'); if ($sign=='Down') { $this->change = -$this->extractValues($pattern); } else { $this->change = $this->extractValues($pattern); } return $this->change; } public function getContent() { return $this->content; } // private functions cannot be called from outside the class itself private function extractValues($pattern) { preg_match($pattern, $this->getContent(), $matches); return $matches[1]; } // This method is not needed as values can be extracted (with the extractStock... methods) // then the data are available for use elsewhere public function storeStock() { } // not necessarily required ... now that the three key value are retrieved the CSS manipulation // methods provide the basis for further display options... public function displayStock() { } } ?> ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? Read More
Cite this document
  • APA
  • MLA
  • CHICAGO
(“Stock Market Prices - Web Based App Coursework Example | Topics and Well Written Essays - 1750 words”, n.d.)
Stock Market Prices - Web Based App Coursework Example | Topics and Well Written Essays - 1750 words. Retrieved from https://studentshare.org/information-technology/1448353-stock-market-prices-web-based-app
(Stock Market Prices - Web Based App Coursework Example | Topics and Well Written Essays - 1750 Words)
Stock Market Prices - Web Based App Coursework Example | Topics and Well Written Essays - 1750 Words. https://studentshare.org/information-technology/1448353-stock-market-prices-web-based-app.
“Stock Market Prices - Web Based App Coursework Example | Topics and Well Written Essays - 1750 Words”, n.d. https://studentshare.org/information-technology/1448353-stock-market-prices-web-based-app.
  • Cited: 0 times

CHECK THESE SAMPLES OF Web-Based App: Stock Market Prices

An Investigation of the Impact of Oil Price Changes on the Gulf Council Countries (GCC) Stock Markets

hellip; The dissertation, An Investigation of the Impact of Oil Price Changes on the GCC Stock Markets, aims to investigate the impact of oil price fluctuation upon the stock market index of the GCC countries over the last five years.... rom this paper it is clear that the most general assumption is that the changes in the oil prices have an indirect impact on the stock market.... This relationship between oil prices and the stock market can be easily justified by the most famous headline of the Wall Street Journal that says “Oil Spikes Pummels stock market”....
64 Pages (16000 words) Dissertation

Marketing Management of A.S. Watson Group

AEON has reduced its prices by 15% in order to build on its customer base.... hellip; However, ASW being the market leader, must also come up with a campaign in order to refute AEON's strategy.... The report discusses the target market in detail with an analysis of the retail business environment in which the players operate.... Previous trends in the industry sales are disclosed along with the labor market and external impact of the economy on the industry....
13 Pages (3250 words) Essay

Strategic Management: European Automobile industry

This trend is likel This trend is likely to continue, if not deteriorate, in the foreseeable future, owing to higher crude prices, which peaked at US $ 70/barrel in the last 18 months, leading to higher retail fuel prices.... What follows is an overview of the larger context of the European market, followed by a road map for the next 5 years, with special emphasis product range, Research & Development, Marketing, on based on a detailed analysis of the market trends and the company' unique strengths, and assess the financial commitments needed to realise these objectives....
8 Pages (2000 words) Speech or Presentation

Specific events over the past years that have affected the stock market

This paper show several incidents that have taken place in history and how they affected the stock market.... Markets respond to changes in the economy and a major change in the economy often results in major shifts in the stock market.... The stock market (New York Stock Exchange) responds to changes by gaining value or losing value.... The most recent stock market crash was from January of 2000 to October 2002.... oing back further in history finds another stock market crash that was the result of events in history....
5 Pages (1250 words) Essay

Levis Strategy and Marketing

The company has been very adaptive to the changing market conditions and the demands of the consumers.... When the company ran into difficulties in the early 1980s it entered into agreements with mass merchandisers to market its products (Mistler, 2001).... The strategic decisions include foreign market selection, mode of entry decision, product portfolio strategies and market expansion strategies.... This has resulted in increased imports by the US and Japan but lower imports in the EU market due to a decline in spending....
12 Pages (3000 words) Case Study

Corporate Valuation, Capital Structure, and Dividend Policy

They have a portfolio of professional and consumer software applications which include OS X and iOS The company also sells and delivers digital content and applications through the I Tune Store, app Stores SM, I Bookstore SM and also Mac Apple Store.... During February 2012, the company was able to acquire app search engine Chomp and during March 2013 they were able to acquire Silicon Valley startup, Wifi Slam which helps in the making of mapping applications in the smart phones....
11 Pages (2750 words) Book Report/Review

Security Valuation for Morrison Public Limited Company

The signaling effect is the change in the stock prices in the market with the unexpected change in the dividend.... The transfer of the wealth between the debt holders and the equity holders in the market depends on the unexpected changes in the market; hence, the wealth transfers in the market (Fabozzi & Grant 2000, 87).... The unexpected increase in dividend will normally signal the decrease in the price of the stock in the market....
6 Pages (1500 words) Essay

Stock Market Game

The author of the paper selected five promising companies for the stock game based on their market performance and the recommendation of analysts.... The company newest endeavor is software for an internet-based system for smart grids in the electricity market.... The company is partnering with Itron, the maker of the most advanced electric meters, which should enable them to get faster and deeper penetration of the smart grid market, and has the potential, according to Business Week, to be a multibillion-dollar per year revenue opportunity....
10 Pages (2500 words) Term Paper
sponsored ads
We use cookies to create the best experience for you. Keep on browsing if you are OK with that, or find out how to manage cookies.
Contact Us