The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
0answers
9 views

What is the probability of touching with options, Financial Engineering ? [closed]

anyone familiar with Option Trading or Financial Engineering ? Check out the last diagram from https://www.tradeking.com/education/options/what-is-implied-volatility. According to the diagram, ...
-1
votes
1answer
27 views

Using WPF to Interact with Indicators in MultiCharts .Net (Trading Program)

I am trying to create a WPF form using Visual Studio C# that will interact with indicators I create for my trading charts in MultiCharts .Net I've added a WPF Project to the solution and added the ...
0
votes
1answer
20 views

how to program this indicator script to work with stocks and not just futures

i found this.. posted it in the Amibroker editor.. saved.. found out after looking into it further.. that it will only work on futures that are listed in the if statements within the code.. i'd like ...
2
votes
2answers
107 views

R quantmod trading signals and simulation

I would like to use R's quantmod package to test some technical indicators for trading stocks. My goal is to automatically run an indicator over a Stock Symbol and the result tells me what would have ...
2
votes
1answer
660 views

MtGox webstream api

In this doc we have an info about webstream MtGox-API. So the question. We have the next: query = { "id":id, "call":apicall, "nonce":nonce, "currency":cry, "parameters":params, ...
-1
votes
1answer
74 views

How to download historical data using R? [closed]

I am looking for a package to download historical data of Futures (NO STOCK DATA). could someone advice me some good R package? Thanks! P.S. I Know there are many packages, but they only seem to ...
0
votes
0answers
22 views

Amibroker: formula personalized per ticker

is it possible to 'personalize' a formula per each ticker ? In AFL, i would like to test 'different' buy condition for different ticker. For example: Ticker AAPL, Rule A Ticker MSFT, Rule B Then, ...
0
votes
1answer
90 views

How is the Bollinger Oscillator Calculated?

The Upperband is calculated: Middleband + (D + sqrt(((close - Middle band)^2)/n)) And I know how to calculate the lower bollinger band and middle bollinger bands. But there is an elusive indicator ...
0
votes
0answers
123 views

Cointegration based Pairs trading

I am back testing a Pairs trading strategy with one minutes data from 2006-2012 by using the co integration method. I tried couple of combination for formation and trading period. Case1: 20 days ...
0
votes
0answers
10 views

best way to visualize multi parameters test result?

We currently running back-test on our trading strategy. Our strategy is simple which includes 6 parameters. Each of these 6 parameters might varies from certain int number to higher int number. For ...
0
votes
0answers
101 views

financial data feed API

I'm building a web page, as well as an application that needs financial data feed for stocks & commodities prices. The app is not for trading & the prices are only needed for reference ...
0
votes
1answer
170 views

How to connect to TT X_TRADER API in order to create an automated trading system using python?

I've seen this question posted several times in the interal development forums and thus wanted to provide a quick example of how this can be achieved in python in no time.
1
vote
0answers
88 views

ebay API - Build storefront product grid with javascript?

So I'm currently been tasked at work with building and styling the ebay storefront for my work. I've been a bit lost in the whole scheme of things. I've gotten all set up on the ebay developer's ...
0
votes
1answer
41 views

Web Service to find the Exchange for the Stock Symbol?

I have a List of Stock Symbols in a ArrayList (20000 symbols approx ) , i need to find out whether these symbols belongs to what exchange (That is whether NASD , AMEX , OR PINK Exchange ) Is there ...
0
votes
1answer
74 views

biztalk 2010 Trading Partner Management: menu option to add an agreement is missing

We have added several parties in the Biztalk server administration console > parties. Our next step was to configure the agreements for the parties, but we don't have the menu option to create a ...
0
votes
1answer
331 views

Matlab “Index exceeds matrix dimensions.”

I keep getting this error: ??? Index exceeds matrix dimensions. Error in ==> example3_6 at 48 results=regress(cl1(trainset), cl2(trainset)); % use regression function GDX file contains 7 ...
0
votes
0answers
138 views

HBase - query difference between two timestamps

I'm considering HBase as a trading system database due in part to its first-class timestamp-based versioning of rows. Trades get modified all the time, and we typically have to cope with that ...
1
vote
4answers
348 views

desiging a FIX message encoder and decoder

I am trying to design a simple FIX message encoder and decoder to encode (convert to FIX) and decode (convert from FIX) my business domain Order objects. I have designed something, but I am not able ...
0
votes
0answers
130 views

How to use a variable in Metastock Expert Advisor Commentary

Please help me. Im new to Meta Stock and I just want to create a simple expert advisor and it displays some value. For Example: pivot:=(h+l+c)/3; writeval(pivot,0.4); The above statement makes ...
2
votes
2answers
244 views

Designing an Order object for Trading systems

I am trying to design my first trading system and I am struggling with designing a correct Order object with all the FIX concepts involved in it. Wondering if any experienced folks can chime in on ...
0
votes
3answers
508 views

Differentiate between FIX and FAST protocol?

Sorry I am new to trading industry. Could anyone explain what is the difference between FIX and FAST? When to implement FIX and when FAST? Please reply..Thank you so much :)
0
votes
1answer
227 views

Bloomberg real-time data with lot sizes

I am trying to download real-time trading data from Bloomberg using the api. So far I can get bid / ask / last prices successfully but in some exchanges (like canada) quote sizes are in lots. I can ...
0
votes
2answers
172 views

Bloomberg open API JAVA - how to store user data

I am curious if there is a way to store some user data on my request which will come back to me on the returned data. For example, I am sending several requests for let's say 3 different orders. ...
0
votes
0answers
352 views

Bloomberg open API JAVA - how to get historical quote

I am new to the Bloomberg API and I am trying to write code in JAVA which collects the bid and ask price at the start time of several orders. I have code that gets the bid and ask price for a symbol ...
0
votes
0answers
105 views

Speeding up a DFA function in R

I'm trying to run a DFA (de-trended fluctuation analysis) fractal function on a 300MB OHLC text file. However, after letting R run overnight (~6 hours), it still did not finish processing my first DFA ...
2
votes
1answer
195 views

Struggling to convert 1min closing prices data to 5min in R

Asked this question question recently and was advised to use the 'to.minutes5()' function. However, upon doing so I get the following error: Error in to.period(x, "minutes", k = 5, name = name, ...) ...
1
vote
2answers
162 views

Algorithm for Trading Resources

I'm trying to find the best algorithmic solution to the following problem. It's a real-world problem, but I'm going to present it in an abstract manner. There is a community of 1000 people. Each user ...
0
votes
1answer
199 views

Converting 1min OHLC data to 5min OHLC data in R

I currently have OHLC intraday data that I need to convert to 5min data. Is there any way to do this in R?
1
vote
1answer
209 views

MQL5 Backtesting remains the same after changing parameters [closed]

I've been exploring the MQL5 strategy tester and playing with some EAs in the article and code base sections. When I backtest an EA for the first time and change the parameters for the second ...
0
votes
1answer
620 views

How to Backtest a Strategy in Python

I need to be able to determine whether a particular "trade" (indicated by "signal") resulted in a profit or loss by indicating a win or loss for each. I need Python to check the next location (the ...
4
votes
3answers
150 views

Fix OrigClOrdID (tag 41) in a chain of replaces. Is it the very first one of the order OR the previous one in the chain?

So whenever I want to change (reduce) the quantity of my order (OrderCancelReplaceRequest) I have to send a new ClOrdID and the original ClOrdID (tag 41). Ok, so let's say I change the quantity for a ...
1
vote
3answers
699 views

Getting into High Frequency Trading field [closed]

I have over 20 years working experience as a qualified accountant. Before that I have a II(ii) degree in Accounting / Computer Science degree and writing programs was my favorite subject. I have ...
1
vote
1answer
257 views

Error Getting the EUR.USD Historical data using R on Ibrokers

I am using the IBrokers package and twsInstrument and for some reason it gives me an error using the simplest of methods. require("IBrokers") require("twsInstrument") tws <- ConnectIB() ...
0
votes
1answer
86 views

Trending tracker in Twitter (Android)

I am developing an app which will used for trending tracker in twitter. The app can open up and show what is trending on twitter, and then you can click on the word that is trending and it will take ...
-1
votes
1answer
854 views

Stock real time (tick-by-tick) data [closed]

Does anyone know how can I get yahoo free real time tick-by-tick stock feed. I want to develop daily charts and graphs for a .Net application. -Ali
-1
votes
4answers
328 views

What is the fastest (transactions per second) Java FIX engine out there?

I am using QuickFix/J (Open Source) at the moment, and it has worked well enough. Now I am contemplating changing to a better/commercial FIX Engine, so basically I would like to know which one is the ...
1
vote
1answer
465 views

database design: stock & option trades

A database has two tables: one for stocks (equities), and one for options. These are separate table because they have different information. For example, the stocks table has a ticker symbol column, ...
3
votes
2answers
771 views

Downloading complete historical stock data including delisted companies? [closed]

There are several posts on SO that point to sources for downloading historical stock quotes, but these are all for currently listed symbols. The resulting dataset suffers from survivorship bias. Is ...
0
votes
1answer
1k views

Interactive Brokers automated trading

I've tried to setup Interactive Broker's C++ API in Visual Studio 2008, but I know very limited C++ and I keep getiing errors. :< 1) Is there any way to use some kind of light scripting language ...
1
vote
2answers
201 views

handle multiple request from client and send relevent response back

I have to design a system in java, which will have an trade data exchange (contains the trade data), a server and N number of clients. The scenario is the server gets requests from N number of clients ...
0
votes
2answers
265 views

Script/Code to add/modify user accounts in Metatrader Manager

I've been working with MT4 client app during several years, until there, everything is ok. Now i need to work with "Metatrader Manager"; i need to manage user accounts, thousands of them, so i need ...
1
vote
2answers
1k views

Platform that runs scripts monitoring stock market activity? Possibly executes trades?

Are there any software platforms out there that can be used to run scripts that monitor stock market activity? I would like to write a script to send myself alerts when certain market conditions ...
0
votes
1answer
607 views

Real time trading platform supporting python scripting in ubuntu [closed]

I am searching for a real time trading platform in linux where I can do testing of automated trading scripts written in python. The trading platform should be able to communicate with the broker ...
1
vote
1answer
224 views

trading: how do you declare `Indicator` interface

I've tried to ask this question at "quantitive finance" but it seems this is better place because the question more about programing than trading How do you declare Indicator interface? What would be ...
2
votes
1answer
278 views

Do you know (ETF) trading platform that has robust API for JAVA?

I am lookong for some broker that allows ETF trading, and have trader with API for java. I found http://www.deltastock.com/ , but it seems they do not have java API. They have something like API for ...
0
votes
1answer
448 views

Query on Trading platforms like X_trader - request for help from code newbie

First up, I'm a software newbie - kindly forgive me if my questions seem naive. I'm looking to code a broker trading platform like TT's X_trader or CQG's integrated client. Can you please let me ...
0
votes
1answer
209 views

BizTalk 2010 Parties not available to enlist in Role Link

I'm having an issue when modifying an existing BizTalk 2010 application. The application currently takes a flat file, maps the data in the file to an EDI 835 format, and then a Role Link determines ...
0
votes
2answers
291 views

Data Feed Thread Executing Trading Strategies?

As you know, trading strategies take actions based on real time feed, such as when the bid or the last trade price changes. A data feed provider streams quotes to our desktop application ...
0
votes
2answers
179 views

System trading applications - caching historical data in local database?

Most trading applications receive datafeed from commerical providers such as IQFeed or brokerages that support trading API. Is there merit in storing it in the local database? Intraday datafeed is ...
2
votes
0answers
196 views

Has anyone used a Disruptor port in C# with success? [closed]

Disruptor has been proven successful in the Java world, in particular by LMAX, the group responsible. Has anyone used a .NET port with success (alpha, beta, or production) in a trading scenario or ...

1 2