Algorithmic trading is a technique of trading financial assets through an algorithm which has been fully or partially automated into a computer program.
1
vote
1answer
101 views
How to write stock market trading bots? [closed]
I'm working on an online platform to write trade bots. I started as a sort of experiment since I was taking both finances and programming. It allows users to write a bot in a sort of notepad and on ...
-1
votes
0answers
49 views
How to get live stock market data and process transactions [closed]
Obviously I am not expecting a full-blown explanation but I would like to know where to start off and what's involved if I want an API-like access to stock markets (NYSE, TSX, etc).
For example, I'd ...
0
votes
1answer
42 views
Rolling idxmax() in python?
I have a python DataFrame containing some financial data that I am trying to create some technical indicators for. I am trying to figure out how to use a moving window function to speed up the process ...
-3
votes
2answers
134 views
Ocaml and Algorithmic Trading [closed]
I'm completely new to the Algorithmic Trading domain. I've just completed a course that was Ocaml based, and read about Jane Street. Obviously they are a huge company with a large amount of resources, ...
-2
votes
1answer
78 views
Vectorize simple loop-based trading system in R?
After studying the vectorization methods used in the two links below, I've attempted to create a simple trading strategy template (code shown below) that can be vectorized in R for better speed vs a ...
0
votes
1answer
88 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
1answer
115 views
Cumulative Return in Trading Strategy Test
I have a Signal based on order imbalance that I want to test against historic stock data.
I also have the price for each of these Signals and then I calculate a Trend on the price to see if the ...
0
votes
1answer
168 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.
0
votes
2answers
212 views
Python: Excel is being fed real-time stock prices. How to append prices every 10 min to csv?
Here is my python script:
from xlrd import open_workbook
from xlrd import xldate_as_tuple
book = open_workbook('C:/Users/.......Constantquotes.xlsx')
sheet0 = book.sheet_by_index(0) #Initializes ...
1
vote
1answer
239 views
How to look back at previous rows from within Pandas dataframe function call?
I am researching/backtesting a trading system.
I have a Pandas dataframe containing OHLC data and have added several calculated columns which identify price patterns that I will use as signals to ...
1
vote
1answer
122 views
Batch script to append record to csv files
I have a bunch of stock data in csv's that I am backtesting trading strategies on. The problem is that my strategy buys the open market price if a signal was found yesterday, unfortunately my data is ...
0
votes
3answers
99 views
Algorithm needed - benelux contest 2007
This question (last one) appeared in Benelux Algorithm Programming Contest-2007
http://www.cs.duke.edu/courses/cps149s/spring08/problems/bapc07/allprobs.pdf
Problem Statement in short:
A Company ...
0
votes
2answers
491 views
Any open source back test engine using bloomberg tick-by-tick data?
I have a back test on index futures to do. I've finished the test on 1-minute OHLC data and the result is OK. Further I want to opt our tick-by-tick data downloaded from Bloomberg.
I have browsed ...
0
votes
0answers
114 views
calculating required earning on successive option trades to recoup loss [closed]
In binary option trading, you either win a percentage on your trade amount:
win = trade_amount + trade_amount * percentage
Or you lose your trade amount.
Now, in The Lazy Day Trader approach, you ...
0
votes
2answers
329 views
Generate Unique ID from Alphanumeric String
I need to generate a UNIQUE id (int only) from an Alphanumeric string.
e.g. I have security id = 'ABC123DEF'
I should be able to generate an unique ID (int only) of "security id" so that the unique ...
0
votes
1answer
49 views
Statistical procedure decision
I have two problems in hand :
I have a dependant variable, lets say GDP, and many other independant variables. I need to know what procedure I can use to find which among the IVs are leading or ...
0
votes
1answer
77 views
algorithm of adding “stationarity” to long series of decimal values
Assume you want to "keep" your limit order to buy "MSFT" always $0.10 cheaper than current Offer.
So if Offer moves you should move your order as well.
For example if Offer was moved from 30.10 to ...
1
vote
0answers
148 views
Data sources for stock screening? [closed]
I am trying to automatically compile a list of stock symbols that fit certain criteria, e.g. of all stocks that
have a minimum daily volume, or
are traded on NASDAQ and have a market cap of ...
-4
votes
2answers
610 views
Real time stock market data with R [closed]
I have developed a quite trading strategy on R and I would like to implement it with real time market data.
One solution would be to use RExcel. In that case, I would link Excel with Bloomberg to get ...
1
vote
1answer
208 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
0answers
71 views
Using CSV files with Tradelink
I have recently downloaded tradelink and am in the process of familiarising my self with the code base.
So far, I have not found any examples that show how to consume data from CSV files. is anyone ...
0
votes
0answers
103 views
Sample code on how to write a brokerfeed for testing Tradelink app
I recently downloaded tradelink. I want to write strategies and test them using the framework WITHOUT connecting to a Broker Feed (is that even possible?).
Is it absolutely necessary to have a ...
7
votes
4answers
569 views
How to test my FIX client? Is there a fake FIX exchange out there that I can use?
I have implemented my own FIX client, something like QuickFIX. Now I need to test it. Is there a fake FIX exchange somewhere that I can use? Has anyone ever implemented a FIX server that I can use to ...
0
votes
0answers
57 views
using mono for algotrading [closed]
can anyone suggest whether mono is adequate for algotrading?
that is, using mono to compile c# code for algotrading server that runs on linux machine...
if so, which linux OS would you recommend?
...
-4
votes
2answers
856 views
Python with Bloomberg terminal? [closed]
I have no programming experience but it would be a big plus for me if I learned how to program and have that program interact with the Bloomberg terminal. I have begun to learn C++ but it seems a bit ...
0
votes
1answer
475 views
Getting Started with quant/algo trding
I apologize if this is off topic for here but I posted this on the quant stackexchange and got told that it was for professionals only (my bad not to read faq) and I couldn't find a sister site ...
8
votes
2answers
704 views
Adding MFC support to a Qt project
I have a Qt project and would like to use an external library that includes "afxstr.h".
Problem is that whenever I compile after linking to the lib and including their header, I get an error:
#error ...
3
votes
3answers
194 views
Finding unusual value in an array, list
I have sales statistic data in array form to calc standard deviation or average from this data.
stats = [100, 98, 102, 100, 108, 23, 120]
let said +-20% differential is normal situation, 23 is ...
1
vote
1answer
198 views
Converting a binary sequence read from a file into a fixed point number
I am trying to parse a file which has ITCH messages in it:
http://www.nasdaqtrader.com/Trader.aspx?id=DPSpecs_USEquities#TVITCH¬
...
-2
votes
4answers
299 views
construct orderbook from orders example
I'm looking for code that constructs orderbook from orders
For example if orders are
side | price | quantity
buy 100 1
buy 101 10
buy 100 1000
buy 100 10000
then ...
4
votes
1answer
896 views
Usage of C++ on Mac for Interactive Broker API? - Example?
After years of no programming I am on my way to learn C++ on my Mac OSX. My eager goal is the creation of an algorithmic/automatic trading software for use with Interactive Brokers.
Now, I ...
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
605 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
2answers
1k 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
221 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
3answers
632 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 ...
3
votes
3answers
341 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
3answers
3k 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 = ...
0
votes
1answer
446 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 ...
1
vote
1answer
327 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 ...
0
votes
2answers
290 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 ...
0
votes
3answers
740 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: ...
2
votes
0answers
443 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 ...
3
votes
0answers
857 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
I am also looking for Python/Java ...
1
vote
1answer
554 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 ...
0
votes
1answer
119 views
conditional statements as strings [duplicate]
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 ...
3
votes
4answers
3k views
Automated stock trading- how possible is this scenario [closed]
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 ...
0
votes
2answers
241 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
3answers
2k 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 ...
