Tagged Questions
Algorithmic trading is a technique of trading financial assets through an algorithm which has been fully or partially automated into a computer program.
31
votes
10answers
14k views
What technical skills needed for algorithmic trading, HFT, etc?
I'm interested in getting into developing trading systems, black box, HFT, etc. My primary experience is with C# and .Net (7 years). I've also done some sockets programming. I have some experience ...
4
votes
2answers
1k views
Algorithmic Trading API [closed]
Anyone have experience with algorithmic trading (like stocks)? Any good services to use to get quotes and to make trades?
3
votes
3answers
259 views
Who is the primary actor of an automated system?
In an automated black box trading application who should be identified as the primary actor in the use cases? Is it the system itself or the system administrator or the organization who has a vested ...
3
votes
1answer
822 views
Where to find free tutorials about trading algorithms
Hi
I would like to find some tutorial about the trading algorithms like
Iceberg, Dagger, Guerrilla etc.
I have just found some non-free or marketing sites on this topic.
2
votes
0answers
198 views
How could I (layman investor) implement my own stock trading model? [closed]
I see that some traders/investors have built their own trading models (using Excel or C++ etc). Note: I'm not talking about HFT, but about something that I could use for my own trading purposes (I'm ...
2
votes
1answer
455 views
Building a trading platform with charts - suggestions for a Python GUI Library
I am building a small program to retrieve data from the market and chart it in real time. While the trading decisions will be largely automated, the charts are updated continuously so that someone can ...
2
votes
3answers
160 views
Async Black-Box Programming
I am currently writing a black box trading bot and I am in the process of designing the way data is passed around. I realize I want an async sort of architecture. So I have been implementing ...
2
votes
1answer
432 views
Algorithmic trading software safety guards
I'm working on an automatic trading system. What sorts of safe-guards should I have in place?
The main idea I have is to have multiple pieces checking each other.
I will have a second independent ...
1
vote
2answers
171 views
Forex Trading Platform for C# [closed]
What are the good free Forex trading platforms for writing algorithms in C# for automated trading.
I tried cAlgo but it is basic, needs more features and slow developping...
I tried NinjaTrader but it ...
1
vote
1answer
62 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 ...
1
vote
1answer
94 views
Build time based bars using stock tick data
I'm trying to build stock market Bar (snapshot) data at run-time using tick data. My stock data provider provides access to tick level data where I have an event called OnTick that is triggered ...
1
vote
3answers
58 views
Open source wrapper library for all major brokers for submitting orders and getting prices?
Is there a single open source library which contains API calls for each brokers to do common functionalities like, get price ticks, submit orders?
for ex)
buy("MSFT",33); //will send buy order to ...
1
vote
2answers
137 views
LCS ALGORITHM ( example )
There's a dynamic programming algorithm to find the Longest Common Subsequence of two sequences. How can I find the LCS algorithm of two sequences X and Y. (Test of correctness)
(a) X = ...
1
vote
1answer
53 views
Is SocketAsyncEventArgs a good choice for a client application?
Is it a good solution to use SocketAsyncEventArgs for a Client application receiving market quotes ? Or a traditional while(true) is better ?
I am looking for the fastest solution in order to receive ...
1
vote
0answers
380 views
Elliot Wave Calculator, Chart Patterns Recognition
I am looking for Python/Java code to find Elliot Waves as at
http://www.elliottwaves.stockmaniacs.net/
http://www.smartfinancein.com/elliot-wave-calculator.php
On same lines I am also looking for ...
1
vote
1answer
247 views
How to calculate numerical trend lines in python
I have a monitoring application in python 2.6 that calculates the number of entries in a queue (queue_len). I want to create a simple function that can use these queue_len rate of change values over ...
1
vote
4answers
616 views
Automated stock trading- how possible is this scenario
I was wondering if anyone had any input about a question I have been thinking about for some time. Basically I have written a program that I would like to test on the real stock market. The program ...
1
vote
1answer
677 views
UI for a trading application in C# WPF
I have created a trading application in WPF, for which I am ashamed of it's shabby look since it is far from being impressive.
I would now like to redesign the user interface for my application, and ...
0
votes
1answer
84 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
2answers
75 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
71 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 ...
0
votes
3answers
252 views
Functional Languages + Algorithmic Trading [closed]
Is anyone knowledgeable on programming language implementation of algorithmic trading?
I am going to propose a research project on functional programming and algorithmic trading.
My proposal is here: ...
0
votes
1answer
65 views
conditional statements as strings [closed]
Possible Duplicate:
echo inside if loop
I trying to code a trading system and i have a list of entry and exit strategies. To lessen the number of lines in the code I planned to put all my ...
0
votes
2answers
140 views
Routine to work out if today is a trading day on the NYSE?
Does anyone know of a routine that works out if today is a trading day on the NYSE?
I could hand-code the values, but I want something solid that will last a long time.
There is a routine in Matlab, ...
0
votes
0answers
276 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 ...
-4
votes
2answers
361 views
how to define a class for stock using c++
How do I define a class for "stock" using C++? The class should include the method of "meanvalue" and "variance", and it should also contain "trading volume" and some historical data.