Just been banging my head against the wall with the IB TWS desktop application on Windows 7. The application keeps saying that my version of Java is 0 and it needs 1.4. I realised I needed the 32bit and not the 64 bit for IBs TWS to work. I also needed to uninstall the 64bit [...]
Archive for the ‘Traders Tools’ Category
Interactive Broker Trader Workstation (TWS) Installation
Posted in Traders Tools, tagged Interactive Brokers, TWS, Windows 7 on June 1, 2012 | Leave a Comment »
Building a FIX engine in .NET
Posted in 1. Financial, FIX Engine, Problems and Solutions, Traders Tools, tagged .NET, Automated trading, Broker, c#, FIX on January 15, 2012 | 1 Comment »
What is FIX The Financial Information Exchange Protocol is defined on the homepage of the protocol standards web site as “The Financial Information eXchange (FIX) Protocol is a messaging standard developed specifically for the real-time electronic exchange of securities transactions.” However, I think this definition is very limited. The protocol does not just define a messaging standard [...]
Building a news aggregator module for a trading platform –The architecture
Posted in 1. Financial, 2. Application Development, Agile, Architecture, Design Patterns, Problems and Solutions, Threading, Traders Tools, World View, WPF, tagged agile, architecture, c#, news aggregator, producer consumer, software design, WPF on December 16, 2011 | Leave a Comment »
In my recent post introducing the news aggregator I detailed what we are currently building. In this post, I will discuss some very high level architecture and some considerations around how to build the application. My first draft at architecture is to just get the different functional parts of the program identified. Then later we [...]
Building a news aggregator module for a trading platform -Introduction
Posted in 2. Application Development, Agile, Architecture, Cool Tools, Problems and Solutions, TDD, Traders Tools, tagged agile, communication, development team, iterations, lifecycle, news aggregator, TDD, trading, uat on December 12, 2011 | 1 Comment »
I am working on a project where I going to build a news aggregator which takes certain keywords and searches a predefined set of websites, company statements etc for stories or blog posts that have that keyword in it. The keywords are mostly a combination of company names or stock ticker codes and mood indicators, [...]
Double Moving Average MQ4
Posted in MQ4, Speculation, Technical Analysis, tagged moving averages, MQ4, technical analysis, trading system on November 26, 2011 | Leave a Comment »
My first foray into coding with Meta Trader MQ4 has been to code a very simple reversal system using two moving averages. The system is a long term trend following strategy that buys when the smaller moving average moves above the longer and sells when the smaller MA moves below the longer one. Once the [...]
Double Simple Moving Average MQ4
Posted in MQ4, tagged MQ4, trading system on May 15, 2010 | 1 Comment »
//+——————————————————————+ //| DoubleMovingAverage.mq4 | //| Copyright © 2010, Coding Powers Ltd | //| [...]