Skip to content
This repository has been archived by the owner on Feb 16, 2020. It is now read-only.

bugfix - bitfinex minimal order size IOTA/ETH #1612

Merged
merged 5 commits into from
Jan 4, 2018
Merged
Show file tree
Hide file tree
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 docs/commandline/tradebot.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ You can set Gekko up as a tradebot, this will instruct Gekko to:
- Run a strategy (in semi-realtime) over live market data.
- Automatically create buy/sell orders based on signals coming from the strategy.

*As with everything in Gekko, the tradebot will make decisions based on the by YOU selected/configured/created strategy. If you end up losing money you have no one to blame but yourself.*
*As with everything in Gekko, the tradebot will make decisions based on the strategy selected/configured/created **by YOU**. If you end up losing money, you have no one to blame but yourself.*

## Configuration

First set up Gekko for commandline usage (see [this document](./about_the_commandline.md) for details). After that configure the following plugins:
First, set up Gekko for commandline usage (see [this document](./about_the_commandline.md) for details). After that, configure the following plugins:

- `config.watch` - the market to trade on.
- `candleWriter` - (optional) also store market data to disk.
Expand All @@ -19,4 +19,4 @@ First set up Gekko for commandline usage (see [this document](./about_the_comman

Turn off the paperTrader (to not get conflicting profit reports).

Once done run Gekko in live mode.
Once done, run Gekko in live mode.
2 changes: 1 addition & 1 deletion exchanges/bitfinex.js
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ Trader.getCapabilities = function () {

//Tradeable Pairs to ETH
{ pair: ['ETH', 'BCH'], minimalOrder: { amount: 0.01, unit: 'asset' } },
{ pair: ['ETH', 'IOT'], minimalOrder: { amount: 0.01, unit: 'asset' } },
{ pair: ['ETH', 'IOT'], minimalOrder: { amount: 6.00, unit: 'asset' } },
{ pair: ['ETH', 'OMG'], minimalOrder: { amount: 0.01, unit: 'asset' } },
{ pair: ['ETH', 'SAN'], minimalOrder: { amount: 0.01, unit: 'asset' } },
{ pair: ['ETH', 'EOS'], minimalOrder: { amount: 0.01, unit: 'asset' } },
Expand Down