From 7eecae658c0e1547d91a553515a6d811bd92247d Mon Sep 17 00:00:00 2001 From: Santiago Castro Date: Mon, 17 Apr 2017 04:13:49 -0300 Subject: [PATCH] Fix broken Markdown headings --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5d3cf99..8cf8107 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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.