Skip to content

Instantly share code, notes, and snippets.

View Gab0's full-sized avatar
:shipit:

Gabriel Araujo Gab0

:shipit:
  • Rio de Janeiro, Brazil
View GitHub Profile

Keybase proof

I hereby claim:

  • I am gab0 on github.
  • I am gabzn (https://keybase.io/gabzn) on keybase.
  • I have a public key whose fingerprint is EE47 D40F 9F24 152E 5B8B 8F3D C7F3 6A9F FBEB DE06

To claim this, I am signing this object:

@Gab0
Gab0 / MRBB.js
Created November 15, 2017 22:39
some Strategies for Gekko Trading Bot
// helpers
var _ = require('lodash');
var log = require('../core/log.js');
// let's create our own method
var method = {};
method.init = function() {
this.age = 0;
@Gab0
Gab0 / _gekko-TimeFrames.md
Last active November 24, 2017 07:07
Gekko Trading Bot - Spawn timeframes inside a strat. So few Indicators can operate on different candlesizes;

This allows to spawn a parallel strat from the root of trading advisor plugin.

*Yeah, for those who saw this earlier: that old method was complicated. Now we are talking about USABILITY :333

replace your plugins/tradingAdvisor/tradingAdvisor.js by the version show here;
look at dfMACD strat for usage;


@plugins/tradingAdvisor/baseTradingMethod.js: you need to comment following lines for this to work.