Skip to content

Instantly share code, notes, and snippets.

@bitkominer
bitkominer / Dexid_IDR-BTC_trade-console.txt
Created December 7, 2018 08:28
Trading bot using web console, to use for IDR market in DigitalExchange.id.
//StormTrade-DEXID, ver 1.0
//----------------------
//Script for auto trading, pair IDR-BTC, digitalexchange.id
//paste into web console in dev tool (firefox/chrome)
//----------------------
//created by bitko, 2018
function letsTrade() {
//variables declaration
@bitkominer
bitkominer / Yobit.js
Last active February 1, 2018 23:55 — forked from nxmad/Yobit.js
if (window._bot != undefined) {
// alert('Bot added before, if something goes wrong try reload the page')
}
window._bot = true
window._martingale = 1.65
window._variant = Math.random() >= 0.5 ? 1 : 0
// window._variants = ['Roll < 49', 'Roll > 51']
@bitkominer
bitkominer / portfolioManager_pingpong.js
Created October 28, 2017 07:53
To be saved inside folder "/plugins/trader/" as supplemental files for pingpong strategy
/*
The portfolio manager is responsible for making sure that
all decisions are turned into orders and make sure these orders
get executed. Besides the orders the manager also keeps track of
the client's portfolio.
NOTE: Execution strategy is limit orders (to not cross the book)
*/