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

Bot is to fast even with interval delay of 5000 (5 seconds) #22

Open
fatrolls opened this issue Jan 17, 2018 · 0 comments
Open

Bot is to fast even with interval delay of 5000 (5 seconds) #22

fatrolls opened this issue Jan 17, 2018 · 0 comments

Comments

@fatrolls
Copy link

fatrolls commented Jan 17, 2018

Bot does trades so fast which isn't bad but it does something else in the background which gets my access forbidden for running too fast it shouldn't make more then 5 requests every second on burst but really as much as 3 requests per second is the limit..

I seem to have fixed it by changing

			bot.start_trading({
				interval: settings.get(`${bot.product_id}.interval`),
			});

to

			bot.start_trading({
				time: settings.get(`${bot.product_id}.interval`),
			});

Even after this fix it runs just 2 minutes longer before I get the rate limiter error at 5000 so its still running too fast somewhere else can you please direct me how to fix it and slow it down somewhere else

I think I figured it out the interval kicks in after it blows your whole balance on X amount of trades and it kicks in after that when you have no more money left because It put all the money in the market already doing all X amount of trades in 1 millisecond

Here is how my prodcution.yaml looks like

general:
  product_ids:
    - BTC-USD
    # - ETH-USD
    # - LTC-USD
  url:
    api: 'https://api.gdax.com'
    # api: 'https://api-public.sandbox.gdax.com'
    websocket: 'wss://ws-feed.gdax.com'
    # websocket: 'wss://ws-feed-public.sandbox.gdax.com'
  terminal:
    delta: true
    theme: default
  log: on
  log_level: warning


account:
  api:
    key: a
    secret: b
    passphrase: c
  initial_investment: 100.00


BTC-USD:
  trade_enabled: true
  interval: 5000
  buy:
    amount: 0.001
    only_when_trend_is_full: false
    post_only: true
    cancel_after: min
    below_midmarket: 0.01   
    spread_n: 3
    spread_v: 0.50
  sell:
    post_only: true
    above_buy: 0.01
  strategy: TrendLines
  strategies:
    StdDev:
      trades_n: 1000
    TrendLines:
      trades_n: 1000
      trendlines_n: 2
      trend_1_buy_on_up: true
      trend_1_trades_n: 1000
      trend_2_buy_on_up: true
      trend_2_trades_n: 100

So the bot gets me banned from GDAX for spamming the API

[Wed Jan 17 2018 18:32:41 GMT-0500 (Eastern Standard Time)] WARNING 1156 'Too soon for trading; midmarket price unknown.'
[Wed Jan 17 2018 18:32:57 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:32:58 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:32:59 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:02 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:02 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:02 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:02 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:02 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:07 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:07 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:07 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:07 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:07 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:12 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:12 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:12 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:12 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:12 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:12 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:33:17 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:17 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:17 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:17 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:17 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:22 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:22 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:22 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:22 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:22 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:22 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:22 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:27 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:27 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:27 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:27 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:27 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:27 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:27 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:32 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:32 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:32 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:32 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:32 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:32 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:32 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:37 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:37 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:37 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:37 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:37 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:37 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:37 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:42 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:42 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:42 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:42 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:33:42 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:42 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:33:42 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:33:42 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:42 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:43 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:47 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:33:47 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:47 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:47 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:47 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:47 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:47 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:33:47 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:47 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:33:47 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:52 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:52 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:33:52 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:33:52 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:52 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:52 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:52 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:52 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:52 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:33:52 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:58 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:58 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:58 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:33:58 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:58 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:58 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:58 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:58 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:33:58 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:58 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:59 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:33:59 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:34:03 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:34:03 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:03 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:03 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:03 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:03 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:03 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:03 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:03 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:34:03 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:34:03 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:03 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:08 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:08 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:08 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:08 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:08 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:08 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:08 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:08 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:08 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:13 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:34:13 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:34:13 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:13 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:13 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:13 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:13 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:13 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:34:13 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:13 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:13 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:14 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:18 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:34:18 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:18 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:34:18 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:18 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:18 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:18 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:18 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:18 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:19 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:19 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:19 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:34:23 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:34:23 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:23 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:23 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:23 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:23 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:34:23 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:23 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:23 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:34:23 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:23 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:23 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:28 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:28 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:28 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:28 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:28 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:28 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:28 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:28 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:28 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:28 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:28 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:28 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:39 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:34:39 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:39 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:39 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:39 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:39 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:39 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:34:39 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:39 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:39 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:39 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:39 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:39 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:34:39 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:39 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:39 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:39 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:39 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:43 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:44 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:44 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:44 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:44 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:44 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:44 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:44 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:44 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:44 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:34:44 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:44 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:34:44 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:44 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:44 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:44 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:44 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:44 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:34:44 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:48 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:48 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:48 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:34:48 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:48 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:48 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:48 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:48 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:48 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:34:48 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:48 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:48 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:48 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:34:48 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:48 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:48 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:48 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:48 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:48 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:48 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:48 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:48 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:49 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:53 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:53 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:53 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:53 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:53 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:53 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:53 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:53 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:53 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:53 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:53 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:53 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:53 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:53 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:53 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:53 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:53 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:53 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:53 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:54 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:59 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:59 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:59 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:59 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:59 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:59 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:59 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:59 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:59 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:59 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:59 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:59 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:59 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:59 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:59 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:59 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:59 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:59 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:59 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:34:59 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:04 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:04 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:04 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:04 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:04 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:04 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:04 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:04 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:04 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:04 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:04 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:04 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:04 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:04 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:04 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:04 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:04 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:04 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:04 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:04 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:09 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:35:09 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:35:09 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:35:09 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:09 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:09 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:09 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:09 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:09 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:09 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:09 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:09 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:09 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:09 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:09 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:09 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:09 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:09 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:09 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:09 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:09 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:09 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:09 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:14 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:35:14 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:35:14 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Insufficient funds
[Wed Jan 17 2018 18:35:14 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:14 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:14 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:14 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:14 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:14 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:14 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:14 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:14 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:14 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:14 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:14 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:14 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:14 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:14 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:14 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:14 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:14 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:14 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:14 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:20 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:20 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:20 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:20 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:20 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:20 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:20 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:20 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:20 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:20 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:20 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:20 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:20 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:20 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:20 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:20 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:20 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:20 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:20 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:20 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:20 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:20 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:20 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:24 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:30 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:34 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:40 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:45 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:50 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:54 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:54 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:54 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:54 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:54 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:54 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:54 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:54 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:54 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:54 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:54 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:54 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:54 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:54 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:54 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:54 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:54 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:54 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:54 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:54 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:54 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:54 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:54 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:55 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:55 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:35:55 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Insufficient funds
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:00 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:05 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing buy order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits
[Wed Jan 17 2018 18:36:10 GMT-0500 (Eastern Standard Time)] ERROR Error placing sell order; message: Rate limit exceeded. For rate limit information see https://docs.gdax.com/#rate-limits

Also if you have

  buy:
    amount: 0.001
  sell:
    above_buy: 0.001

you lose money it sells cheaper then it buys by a few dollars.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant