algorithmic-trading

Algorithmic Trading API

Anyone have experience with algorithmic trading (like stocks)? Any good services to use to get quotes and to make trades? ...

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 in finance working on analysis applications (2 years). My goal is to move into developing automated trading systems for a hedge fund, bank...

how to define a class for stock using c++

how to define a "class" for "stock" using c++ language? The class should include the method of "meanvalue" and "variance", meanwhile it should also contain "trading volume" and some historical data. Thank you very much. ...

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

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 little process which will also connect to the same trading account and monitor simple things, like ensuring the total net position does not g...

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 interested in the system? ...

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 ActionListeners and ActionPerformers but some of the listeners when they get data need to do calculation which could take a while, so I am wondering...