This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Since it's been asked for so many times here is the way I run Gunbot 5.0.4. All the standard "This is not financial advice", "Your | |
mileage may very", "Previous results are not indicative of future gains", blah blah blah etc.. etc.. Apply. Shoutouts to Gunthar of | |
course, Diesel for being my muse and the one who got me started on this path. Berti, RchGrav, Rich Z, Allanster, Nate, TandyUK, Thor, | |
Exquitas and so many more people for the ideas, advice and testing. | |
Did this advice help you? Send me beer money! BTC: 1Per7XsUsCUv4zWNPnrHUizDQX33XxVvKL | |
Or msg me on Telegram @KryptoGB if you want to tip me in any coin available at Bittrex. | |
I STRONGLY recommend that everyone have a seperate trading account that you use for testing purposes. When you want to try different | |
settings or a new version of Gunbot comes out, having a small seperate pool of money to test with can be invaluable before making |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If you are reading this right now you probably know that Gunbots "DOUBLE_UP" averaging feature currently doesn't work with Stepgain. | |
This exploit uses MIN_VOLUME_TO_SELL as a workaround to get a single "DOUBLE_UP" while using the Stepgain strategy. | |
This has only been tested on 5.0.4 though it should apply to 4.0.5 as well. | |
While this should work for other strategies, I've not tested it personally. (edit: BB is Confirmed.) | |
Hit me up on Telegram in TheBotFather or Gunthy Elite channel if you can confirm/deny it working for other versions and strategies. | |
To get this working in your config we only need to mess with 2 variables "BTC_TRADING_LIMIT" and "MIN_VOLUME_TO_SELL" | |
"MIN_VOLUME_TO_SELL" is a setting that was implemented so gunbot would ignore dust (tiny leftover amounts) on the exchanges | |
By setting MIN_VOLUME_TO_SELL to X% below BTC_TRADING_LIMIT we can trick the bot into thinking this amount is dust and to execute a | |
"DOUBLE_UP" trend watcher when the pair drops below X% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// work in progress | |
// you need a bittrex API key and secret with read account option enabled | |
// I assume that all the keys are in the "keys" spreadsheet. The key is in cell B5 and the secret in cell C5 | |
var sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("keys"); | |
var key = sheet.getRange("B5").getValue() | |
var secret = sheet.getRange("C5").getValue(); | |
var baseUrl = 'https://bittrex.com/api/v1.1/'; | |
var nonce = Math.floor(new Date().getTime()/1000); |