Finance relates to the management of assets over time under varying conditions, usually in order to make a profit.

learn more… | top users | synonyms

4
votes
1answer
215 views

Which are the order matching algorithms most commonly used by electronic financial exchanges?

Which are the order matching algorithms most commonly used by electronic financial exchanges? Is there a list of order matching algorithms somewhere?
3
votes
1answer
363 views

Issue with quantmod add_TA and chart_Series - lines and text disappear after next add_TA is called

I am using new chart_Series and add_TA quite a lot. It works very well for me and I find it very useful. I am trying to add a few things (horizontal lines and some text) on a graph. Here problems ...
2
votes
1answer
831 views

Getting stocks by industry via Yahoo Finance

i want to list all available industries ( like: http://biz.yahoo.com/p/ ) and show all corresponding stocks. Until now I'm using YAHOO.Finance.SymbolSuggest.ssCallback for the symbol suggestion and ...
1
vote
1answer
46 views

Correlating arrays and nested for loop in Pandas (stock portfolio analysis)

I'm trying to create a program in Python, in which the user inputs a number of stock tickers and a desired date range; the output would be a graph of daily cumulative returns of the portfolio in that ...
1
vote
1answer
69 views

Extracting data the ISE website using Matlab

I'm trying to extract stock prices from the Irish Stock Exchange Website. I'm getting errors for the lines using the function datenum(). function get_ise_data(equity_name,equity,start_date,end_date) ...
1
vote
1answer
174 views

YQL Console working inconsistently

I'm trying to make a finance app that, for now, pulls stock quotes. My problem is detailed below: On the developer's console (http://developer.yahoo.com/yql/console/), I will click "show community ...
1
vote
1answer
134 views

Is there a good Ruby gem to fetch financial data from public companies?

I've search Google for ruby gems that fetches historical financial data but all of them are outdate. Is there a good gem that does that? Cheers.
3
votes
0answers
392 views

Adding vertical lines to chart_Series and add_TA plots

After kind answer from Joshua on my previous post about this "issue" ( Issue with quantmod add_TA and chart_Series - lines and text disappear after next add_TA is called ) I have added some ...
3
votes
0answers
794 views

Excel RTD Server Development in C++

I want to write an excel RTD server in C++ but have not yet had any luck finding and complete tutorials on how to do so aside from this http://weblogs.asp.net/kennykerr/archive/2008/12/02/Rtd5.aspx. ...
2
votes
0answers
149 views

Yahoo finance comet technique

There is a comet-based stock quotes fetching technique that Yahoo Finance uses The commet url: ...
2
votes
0answers
217 views

Accounting table design for outstanding balances by due days (0-30,31-60, etc)

I have an accounting transaction table with the following fields: transactionid date transactiontype (charge,payment,credit,etc) debitaccount creditaccount amount And I have the following ...
1
vote
0answers
37 views

Globe and mail finance - is there something to pull similar financial data

I was looking at the globe and mail finance site, and it has almost everything a person could want for real time stock and financial reports and if possible, mutual fund information. I was wondering ...
1
vote
0answers
102 views

Updating Dunning Level in F150

I have a requirement where I must create an email during the dunning process and send it to different clients. I am using a copy of the FM FI_PRINT_DUNNING_NOTICE_SMARTF, which is accessed without ...
1
vote
0answers
143 views

Yahoo Finance using PHP and JSON

There are alot of question about this topic but mine isnt answered. I'm kinda new to the whole JSON idea so this is what i want. I want to have stocks visible on my website that changes when the ...
1
vote
0answers
183 views

Ho to get interest rates and interbank rates in C#

There is a nice Yahoo-Managed open source project that allows to get stock prices, exchange rates, technical charts etc from Yahoo. Unfortunately, Yahoo doesn't provide interest rates and interbank ...
1
vote
0answers
545 views

Global stock details search API

Is there any available API out there which would allow me to search for particular listed companies depending on a given string? Eg. a search for "google" would return the company name, stock exchange ...
1
vote
0answers
415 views

Optimize moving averages calculation - is it possible?

Is it possible to optimize (make it much faster) this piece of code: out <- do.call(rbind, lapply(split(Cl(cumulativeBars), "days"), function(x) { ...
1
vote
0answers
302 views

Heavy Computation in Javascript

I am currently in the process of building a Finance library for Javascript(Browser and Node) One of the main features of the library is doing simulations with options, therefore there is a lot of ...
1
vote
0answers
426 views

Calculating Time Weighted Rate of Return in R

I'm fairly new to R. I have used ggplot2 in the past, but nothing with any of the R finance libaries. On to my question - I am trying to measure the time weighted rate of return (twrr) for my ...
1
vote
0answers
39 views

Is there a financial service that publicly exposes transaction history?

This may not be an appropriate question for SO. I don't see a more suitable place for it. Is there a service, either a (online) bank account, a syndication, or some trusted 3rd party, that would ...
1
vote
0answers
915 views

node.js streaming finance data from Yahoo or Google

UPDATE: I want to continuously receive data. Currently, this returns one data set. I think the only alternative is polling/setInterval techniques that achieve only the effect of streaming. Is it ...
1
vote
0answers
420 views

Howto use Google Finance gadgets JavaScript API

How can i get access to the Google Finance gadgets JavaScript API (http://code.google.com/intl/de-DE/apis/finance/docs/finance-gadgets.html#JS_API) ?? I see the methods but how can i include the ...
0
votes
0answers
20 views

Pulling mutual fund risk data from google finance

Been trying this for a couple of days now. On Google finance when you type in a mutual fund eg FBTAX there is a risk section that I would like to pull to excel for about 3000 different mutual funds. ...
0
votes
0answers
25 views

improvements to this php function to calculate monthly returns from a set of price data

I have made this function that should take a set of price data and calculate a set of monthly returns. The idea is that is should be able to cope with irregular time intervals. For example I have ...
0
votes
0answers
36 views

backtesting delta hedged options in R

I know there are a lot of packages that have to do with finance in R (I have looked through the task view). I specifically need the ability to generate a return stream from a delta hedge options ...
0
votes
0answers
41 views

interpolating option volatility in R

I have a bunch of deltas and option implied vols at those deltas. I would like to interpolate them in R. I was thinking of simply doing the following: #first convert everything to moneyness type ...
0
votes
0answers
23 views

historical compositions/components of stock indices from yahoo finance

I need to get a list of components of major financial indices. This is very similar to this thread: Getting component of stock market index from YQL However, I need historical data. For example the ...
0
votes
0answers
31 views

how good c++ clone of disruptor?

I can not find too much information about c++ clone of disruptor located here Original (Java) version of disruptor is evolving but there are no activity in c++ project. How good fast and stable c++ ...
0
votes
0answers
43 views

Finance Technical Indicators argument meaning

I try to use TA-Lib in my c# application. I find it hard to understand the meaning of every argument in all the great functions that are implemented there. For example in function AvgPrice() - from ...
0
votes
0answers
40 views

How to calculate the APR on an ARM in javascript

I am trying to calculate the APR for an ARM (in javascript) and have gotten stuck and am hopping somebody out there might be able to steer me in the right direction. Here is what I have tried so far: ...
0
votes
0answers
153 views

Yahoo Finance historical Currencies API

it is no problem to get the realtime currencies cause of the already discussed possibilities in this thread: Yahoo Finance All Currencies quote API Documentation or this link ...
0
votes
0answers
81 views

interfacing quickfix with verilog

I am working on a fpga based FIX session management module written in Verilog. I am exploring possible verification strategy of my hardware fix engine. One thing I have in mind is emulating initiator ...
0
votes
0answers
66 views

Is there any library for 30/360 ICMA day count convention in Python?

My Google-fu fails me, I can't find anything on the topic. I could of course implement something myself, but it would be better if someone who knows more than me could point me in the right ...
0
votes
0answers
67 views

Yahoo Finance Ticker Auto Quote Complete API

Anyone has good working Yahoo Finance Ticker Auto Quote Complete API? I searched all over, and couldn't able to find any good working example. I found this example ...
0
votes
0answers
105 views

Test for Expected Shortfall

How can I test the goodness of estimation of Expected Shortfall in a simulation study (I have about 2300 1-step-forward forecasts, based on 5k simulations)? I need something like ...
0
votes
0answers
159 views

Android: How do you import portfolio from Google Finance / Yahoo account?

Does anyone know how to import stock portfolio from Google Finance account? I am trying to make a stock portfolio tracking app for Android, and would like to be able to sync with Google finance, or ...
0
votes
0answers
96 views

Why certain tickers stop working on yahoo finance query?

since some days I've notice the ticker BME.MC stopped working in the spanish IBEX35. The web http://finance.yahoo.com/q?s=BME.MC works fine but the url to get csv data ...
0
votes
0answers
71 views

DAS TRADER API Project

has anyone here had experience with Das Trader API? I am wondering how to create a not MFC VS project where I could use it. Any help is appreciated. Regards.
0
votes
0answers
60 views

Is RestKit a suitable framework for financial apps?

Is RestKit suitable for financial apps on iOS? The financial app will assist people to manage their money between accounts. It will be supporting both XML and JSON payloads. Will it stand up to the ...
0
votes
0answers
179 views

SVAPO calculation help - results different than tradestation

I am trying to replicate SVAPO calculation as outlined in http://www.traders.com/Documentation/FEEDbk_docs/2007/11/TradersTips/TradersTips.html#tradestation . Unfortunately, I must have a bug in my ...
0
votes
0answers
74 views

Looking for best practices on FpML

We want start using FpML within our organisation; where message will be sent using FpML. What are best practices to do this ? If anyone who have used Tools as well as; i want to use FpML for ...
0
votes
0answers
350 views

Google finance API die on October 20th

So I learnt this morning that google finance API will shut down on October 20th. I'm working on an iPhone app (I didn't start the project, but I'm working on it now). The previous developer uses a ...
0
votes
0answers
130 views

obtain next N entries in xts time series with irregular spacing

I want to write a function to be applied with: lapply(new_data,ALGO) It should take 15 entries before and after that particular entry and then make some calculation, giving back a number. Up to now, ...
0
votes
0answers
160 views

Excel RTD-Formatting C++ or C#?

I have a plain C++ object that generates high frequency updates which I would like to rapidly deliver to excel (08-10++) cells/workbooks. I have looked at XLL's, RTD's and the Excel C API and am ...
0
votes
0answers
172 views

POS Terminal Swipe card Output is not readable

I have a POS terminal card reader. When I swipe my bank card then I get a stream of data. When I read wiki about Magnetic strip card , I found that every card should return value which start with "%B ...
0
votes
0answers
281 views

How do I create a Portfolio Object using the Financial Toolbox in Matlab?

Trying to get started doing portfolio optimization type stuff in Matlab but I can't even create a portfolio object which seems to be the first step. From the documentation I've seen I should be able ...
0
votes
0answers
455 views

DI+ and DI- Financial Indicator Calculations

I have an algorithmic platform developed in server-side Javascript using NodeJS coupled with MongoDB. Our current strategy uses a combination of technical indicators, which, for the sake of this ...
0
votes
0answers
654 views

YQL problem getting finance results

I have this completed this YQL tutorial and it works http://developer.yahoo.com/yql/guide/yql-tutorials.html. Now I want to output data for the FTSE 100 and this is the URL. How do I get the data ...
0
votes
0answers
310 views

Is there any alternative to ta-lib?

ta-lib is a technical analysis library written in C with ports in some other languages. I wonder if there is any other similar open-source library also in C.
0
votes
0answers
217 views

Making a custom PHP form by using a custom API

I am trying to make a simple module for phpBMS. It is mostly straightforward, and it is quite easy to make a form and define a table to add, remove or modify records. Here is the sample provided by ...

1 2