Post
Topic
Board Service Announcements (Altcoins)
Re: 🔥🔥🔥🔥🔥[GUNBOT] Automatic Poloniex Profit Generator🔥🔥🔥🔥🔥
by
densmirnov
on 18/05/2017, 05:35:11 UTC

   Congrats! Great figures! And I'm also simply in love with new BB algorithm! Here are my results for the last 6 days: https://docs.google.com/spreadsheets/gunbot/densmirnov


   P.S. I can't stop thinking about a feature, which (as it seems to me) might significantly improve the trading speed (especially in high volatility) and reduce unwanted delays! I suggest to change the bot behavior in a way so that instead of creating a single buy order, it would create several orders on different price levels. The first one will executed immediately after creation and the others will work as insurance in case of sudden price drop!

   The order sizes and price levels will calculated based on the Martingale strategy, so every next one wil be bigger than previous, so the break-even price of the asset will be even lower and lower with each buy. And even after a huge dump, we won't have to wait ages until the price recovers, just a small growth will be enough to continue making a profit! The number of orders to create, step between orders, martingale factor for new orders and the amount of deposit used for order creation can be set individually in each config file (by setting some new variables):

   Perhaps, it will be possible to calculate the indent between the orders, as well as the Martingale coefficient fully dinamically, depending on the momentum of the price change and current 'p(d)umping speed'.

Code:
//  -----------------------------------------------
//  MULTIPLE ORDER CREATION. MARTINGALE STRATEGY
//  -----------------------------------------------
ORDERS_COUNT: 5, // Number of additional new orders to create;
ORDERS_INDENT: 5, // Distance between the newly created orders;
MARTINGALE: 1.0, // Martingale factor for dynamic order size calculation;
TRADING_LIMIT: 1.0, // Maximum percent of initial balance to use for each pair.