Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge #10

Merged
merged 9 commits into from
Aug 8, 2018
Prev Previous commit
Next Next commit
completely disable broken limit order for now, fix askmike#2398
  • Loading branch information
askmike committed Aug 4, 2018
commit 3f6256608f98973adddbcf389372ae8df9a1bcc2
4 changes: 1 addition & 3 deletions exchange/orders/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
const sticky = require('./sticky');
const limit = require('./limit');

module.exports = {
sticky,
limit
sticky
}
5 changes: 5 additions & 0 deletions exchange/orders/limit.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// NOTE: this is currently broken, see
// @link https://github.com/askmike/gekko/issues/2398

throw ':(';

/*
The limit order is a simple order:
- It is created at the specified price
Expand Down