Heikin Ashi
#1
I found Gekko a few days ago and have been trying out some different strategies. One of the things I was experimenting with is Heikin Ashi candles so. For anyone wanting to use HA candles here's how I'm doing it.


Code:
var _ = require('lodash');

var strat = {
...

  heikenAshi: function(candle) {
    return {
      close: (candle.open + candle.close + candle.high + candle.low) / 4,
      open: (this.previousCandle.open + this.previousCandle.close) / 2,
      high: _.max([candle.high, candle.open, candle.close]),
      low: _.min([candle.low, candle.open, candle.close])
    };
  },

  update: function () {
    if (this.previousCandle) {
      this.heikenCandle = this.heikenAshi(this.candle);
    }

    this.previousCandle = this.candle;
  },

...
}
  Reply
#2
(02-23-2018, 11:42 PM)fo0man Wrote: I found Gekko a few days ago and have been trying out some different strategies. One of the things I was experimenting with is Heikin Ashi candles so. For anyone wanting to use HA candles here's how I'm doing it.


Code:
var _ = require('lodash');

var strat = {
...

  heikenAshi: function(candle) {
    return {
      close: (candle.open + candle.close + candle.high + candle.low) / 4,
      open: (this.previousCandle.open + this.previousCandle.close) / 2,
      high: _.max([candle.high, candle.open, candle.close]),
      low: _.min([candle.low, candle.open, candle.close])
    };
  },

  update: function () {
    if (this.previousCandle) {
      this.heikenCandle = this.heikenAshi(this.candle);
    }

    this.previousCandle = this.candle;
  },

...
}

Thank you so much, I have been looking for a script that buys when red heiken Ashi turns green, and sells when it turns red agian.

Aldo i didnt get it to work. Can you please assist me ? Should i put this script in strategy folder, and is it enought or should i do something else. 

Thank you so much for the help
  Reply
#3
Hi at all i'm new with Gekko but not with trading. I had the same idea to use heikin ashi to backtet some chart but i don't have idea how to put the code that you posted on this thread. Can somebody help me?
  Reply
#4
I am having some doubts regarding the coding which you have posted three days back. I learned coding from best assignment help in uk blog articles which are written by experts. When I try to match the coding of yours and the one which I read in the article is not matching and having differences.
  Reply
#5
I am fond of detective stories and poems. Currently I am reading https://bestwritingservice.com/essays/Re...rston.html. It is an interesting genre. See if you are a bookwarm.
  Reply
#6
Thanks for your help! Professional cv writing services near me and you! Just follow the link here. You will get the opportunity to have modern professional resume. It can be helpfull for all job seekers to be employed again.
  Reply


Forum Jump:


Users browsing this thread: