September 2006 Archives

Industry groups performance grid

| | No TrackBacks

Kirk Report trading tips

| | No TrackBacks

Apps for testing web services

| | No TrackBacks

Apps for testing web services

Fiddler

Intraday high volume gainers

| | No TrackBacks

Open source trading systems

| | No TrackBacks
[TradeWeapon .Net trading platform]
Real time equity trading platform and technical analysis framework. This is a framework for developing automated trading systems. End-Of-Day scanning, real time scanning. Direct Brokerage connectivity. Advanced indicator creation.

[RiskQuantify]
Risk Quantify aims to provide a comprehensive framework for the trading, risk analysis and back office management of financial derivatives. Initially the system will support FX, Interest Rate and Equity-based products.

[Open-Trader]
openTrade is an open-source trading platform which will support trading of forex, futures and other commodities.

[Merchant of Venice]
Venice is a stock market trading program that supports portfolio management, charting, technical analysis, paper trading and genetic programming.

[EclipseTrader]
Stock exchange analysis system, featuring shares pricing watch, intraday and history charts with technical analysis indicators, level II/market depth view, news watching, automated trading systems, integrated trading. Based on Eclipse RCP framework.

[iTrade]
Trading system written in Python including Quotes Management, Historical and live data, Import/Export data, Charting, Candlestick, Technical analysis, automated alerts, portfolio management, risk management, and currency exchange.

[MoneyManager]
This is an investment/trading platform targeting individual seasoned investors/traders. It will includes fundamental analysis (very simple in early versions), technical analysis, trading strategy design (back-testing, scanner), and portfolio management.

[ProfitPy]
ProfitPy is a set of libraries and tools for the development, testing, and execution of automated trading systems.

[QuantProject]
A C# library for modeling and backtesting trading strategies. Historical data downloading and validation, account management and Walk Forward Testing are the key features provided, to implement a quantitative approach to financial markets.

[QuantLib]
A quantitative finance C++ library for modeling, pricing, trading, and risk management in real-life. A cross-platform free/open-source tool for derivatives and financial engineering.

[EvoTrader]
EvoTrader is a stock picking platform that utilizes genetic programming to evolve rules for generating stock trading signals.

[PaperTrade]
Paper trading web site which will allow long, short, stop orders, buying and selling of call and put options, and futures trading. Will integrate a journaling system for users to keep track of past trades and reasons for those trades.

[Scalper]
Scalper is a free .NET toolkit for real-time trading built on top of the QuantStudio framework

[Equity Analysis Predictor System]
AI based stock technical analysis system. The aim of the system is to perform standard technical anlaysis on stock prices and volumes and use ANN (Artificial Neural Network) to make entry/exit recommendations.

WinSnap

| | No TrackBacks

Yahoo stock quote from ticker

| | No TrackBacks
using System.Net;
using System.IO;
public class TickerQuote
{
  private string ticker;
  private DateTime effective_date;
  public TickerQuote(string t, DateTime dt)
  {
    ticker = t;
    effective_date = dt;
  }
  private string GetTickerAddress()
  {
    DateTime yesterday = effective_date.AddDays(-1);
    return String.Format(
      "http://ichart.finance.yahoo.com/table.csv?" +
      "s={0}&" +
      "d={1}&e={2}&f={3}&" +
      "g=d&a={4}&b={5}&c={6}" +
      "&ignore=.csv",
      ticker,
      effective_date.Month - 1,
      effective_date.Day,
      effective_date.Year,
      yesterday.Month - 1, yesterday.Day, yesterday.Year);
  }
  private string GetFileContents(string fileName)
  {
    using (StreamReader sr = new StreamReader(fileName))
      return sr.ReadToEnd().ToString();
  }
  public double Price
  {
    get
    {
      string fileName = @"C:\temp\table.csv";
      string addr = GetTickerAddress();
      using (WebClient req = new WebClient())
      {
        req.DownloadFile(addr, fileName);
        string result = GetFileContents(fileName);
        System.IO.File.Delete(fileName);
        //  Get the first line
        char[] separator1 = new char[] { '\n' };
        string[] a = result.Split(separator1);
        string b = a[1];
        //  Get the last value on the line
        char[] separator2 = new char[] { ',' };
        string[] bb = b.Split(separator2);
        string price = bb[bb.Length - 1];
        //  Convert to double
        return double.Parse(price);
      }
    }
  }
}

How to Avoid Investing Mistakes

| | No TrackBacks

Our resident law geek Stewart Rutledge writes in with a handy Gmail tip.

When sending a message, type the name of the recipient you want to appear in your Contacts and then place the email address inside <>. That will auto-add the name to your address book formatted.

For instance, rather than: stewart@example.com in the To: box, use Master Stewart Rutledge, the Wonderful <stewart@example.com>

As a matter of fact, this method seems to work in most email clients (Thunderbird, at least) that auto-add recipients to your address book. Thanks, Stewart! �?" Gina Trapani

[Google Maps NYC subway station smells]

[Ten ways to get more pay]

[How to Deal With An Irate Person]

[15 rules for fighting fair]

Overtrading

| | No TrackBacks

A common mistake for stock market investors is overtrading. Learning to sit and wait is one of the biggest challenges for many.

Jesse Livermore, one of the world's greatest investors, said: "It is never your thinking that makes big money. It's the sitting."

Stocks stair-step their way higher by breaking out of basing patterns, running up and then forming new bases from which they break out. Savvy investors learn how to hang on to leading stocks that go through normal pullbacks rather than sell them.

Beginning investors are often shaken out of winning stocks because they buy incorrectly. You can avoid that by buying a stock within 5% of its buy point in a sound base. Studies of past winners show that stocks breaking out of sound bases on heavy volume rarely retreat more than 8% from the proper buy point.

So buying right will let you sit longer with winners.

Flashlight

| | No TrackBacks

Flashlight

Surefire flashlight replacement batteries SF123A

Slate RSS feed

| | No TrackBacks

When to sell

| | No TrackBacks

When to sell

Brian Shannon on when to sell a position.

There are seven events that should motivate you to sell. These events can be best described as:

  • Initial Protective Stop
  • Gaps against the prevailing trend
  • Price Targets
  • Hard Trailing Stops
  • RealTick &174; Trailing Stops
  • Moving Average Crossovers
  • Time Stops

SocialPicks]

SocialPicks is a community where stock investors exchange ideas and track performance of financial bloggers.

TraderDNA]

TraderDNA Analyzer is an interactive software application that serves as an all-in-one solution for tracking results, journaling, and analyzing your trading performance and system-efficacy. The Analyzer's versatile drag-and-drop interface enables you to customize and construct your own statistics, tables, graphs and visual representations of your trading, and then save your views for later use and report generation.

Financial websites

| | No TrackBacks

HoboCopy

| | No TrackBacks

Mad Money spoof

| | No TrackBacks

Top-rated financial blogs

| | No TrackBacks

Simple database update form

| | No TrackBacks

Simple database update form

  • MSDN
  • WindowForms
  • Microsoft webcasts
    Tune in and learn how to build Microsoft Windows Forms applications and Smart Clients in Microsoft .NET Framework. We take you through all the steps to build an application as we cover object-oriented concepts and delve deep into .NET Framework. Learn how to create rich user interfaces, access data, and see industry-proven ways to get Windows Forms applications to market quickly.

Online schedule planner

| | No TrackBacks

Housing futures

| | No TrackBacks

Pages

OpenID accepted here Learn more about OpenID
Powered by Movable Type 4.32-en

About this Archive

This page is an archive of entries from September 2006 listed from newest to oldest.

August 2006 is the previous archive.

October 2006 is the next archive.

Find recent content on the main index or look in the archives to find all content.