Comparing version 0.4.0 to 0.4.1
@@ -263,3 +263,17 @@ // Generated by CoffeeScript 1.8.0 | ||
Bitfinex.prototype.past_trades = function(symbol, options, cb) { | ||
Bitfinex.prototype.past_trades = function(symbol, timestamp, limit_trades, cb) { | ||
var params; | ||
params = { | ||
symbol: symbol, | ||
timestamp: timestamp | ||
}; | ||
if (typeof limit_trades === 'function') { | ||
cb = limit_trades; | ||
} else { | ||
params['limit_trades'] = limit_trades; | ||
} | ||
return this.make_request('mytrades', params, cb); | ||
}; | ||
Bitfinex.prototype.mytrades = function(symbol, options, cb) { | ||
var err, option, params, value; | ||
@@ -266,0 +280,0 @@ params = { |
{ | ||
"name": "bitfinex", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"gypfile": true, | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -67,5 +67,13 @@ This is a node.js wrapper for the Bitfinex [API](https://bitfinex.com/pages/api). | ||
<<<<<<< HEAD | ||
<<<<<<< HEAD | ||
`movements(currency, [options,] cb)` | ||
`past_trades(symbol, [options,] cb)` | ||
======= | ||
`past_trades(symbol, timestamp, limit_trades, cb)` | ||
>>>>>>> parent of 704f10d... Merge pull request #16 from dutu/master | ||
======= | ||
`past_trades(symbol, timestamp, limit_trades, cb)` | ||
>>>>>>> parent of 704f10d... Merge pull request #16 from dutu/master | ||
@@ -72,0 +80,0 @@ `new_offer(currency, amount, rate, period, direction, insurance_option, cb)` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12913
329
100