Tagged Questions

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 ...
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 ...
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 ...
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
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
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
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, ...