msolters / gdax-multipong

Multi-bucket range trading for the GDAX exchange
12 stars 5 forks source link

Orphaned Sells #6

Open dlasher opened 6 years ago

dlasher commented 6 years ago

Example: "min_price": 7000.00 "max_price": 7030.00

Buys that take place at 7029.xx will never post up as a sell, since the sell price is over the max price. Instead they get "orphaned" and are never sold.

Suggestion, ignore that logic, post the sell at the offset price, regardless of the buy price, or at least use the same logic to test ( gdax.midmarket_price.current + 1*settings.bucket_width ) as you do to post the sell.