Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ node.js trading library for Bitfloor and MtGox

The library is written using a typical node.js event/callback approach. See below for quick usage and the 'examples' directory for more detailed examples. All of the APIs described below are a work in progress and being actively developed. Suggestions are welcome.

##Install##
## Install ##

npm install git://github.com/bitfloor/trader.nodejs.git

##Market Data##
## Market Data ##

To receive market data all you have to do is use the book builder to create a book for the exchange you want. Level updates will emit events.

Expand Down Expand Up @@ -38,7 +38,7 @@ book.on('changed', function(details) {
});
```

##Order Entry##
## Order Entry ##

Setup to enter orders is very similar to the book builder. You initialize a trader for the given exchange. Below is an example for a basic REST based trader.

Expand Down