Технически вопрос касается Javascript (node.js) и, в частности, программного обеспечения Gekko , которое написано с его помощью.Я пытаюсь сделать действительно простую модификацию одной из ее торговых стратегий: MACD .Используемые файлы:
Файл конфигурации MACD: gekko / config / стратегия / MACD.toml
short = 10
long = 21
signal = 9
[thresholds]
down = -0.025
up = 0.025
persistence = 1
Файл индикатора MACD: gekko /стратегии / индикаторы / MACD.js
// required indicators
var EMA = require('./EMA.js');
var Indicator = function(config) {
this.input = 'price';
this.diff = false;
this.short = new EMA(config.short);
this.long = new EMA(config.long);
this.signal = new EMA(config.signal);
}
Indicator.prototype.update = function(price) {
this.short.update(price);
this.long.update(price);
this.calculateEMAdiff();
this.signal.update(this.diff);
this.result = this.diff - this.signal.result;
}
Indicator.prototype.calculateEMAdiff = function() {
var shortEMA = this.short.result;
var longEMA = this.long.result;
this.diff = shortEMA - longEMA;
}
module.exports = Indicator;
И, наконец, файл для изменения, стратегия MACD: gekko / стратегия / MACD.js
/*
MACD - DJM 31/12/2013
(updated a couple of times since, check git history)
*/
// helpers
var _ = require('lodash');
var log = require('../core/log.js');
// let's create our own method
var method = {};
// prepare everything our method needs
method.init = function() {
// keep state about the current trend
// here, on every new candle we use this
// state object to check if we need to
// report it.
this.trend = {
direction: 'none',
duration: 0,
persisted: false,
adviced: false
};
// how many candles do we need as a base
// before we can start giving advice?
this.requiredHistory = this.tradingAdvisor.historySize;
// define the indicators we need
this.addIndicator('macd', 'MACD', this.settings);
}
// what happens on every new candle?
method.update = function(candle) {
// nothing!
}
// for debugging purposes: log the last calculated
// EMAs and diff.
method.log = function() {
var digits = 8;
var macd = this.indicators.macd;
var diff = macd.diff;
var signal = macd.signal.result;
log.debug('calculated MACD properties for candle:');
log.debug('\t', 'short:', macd.short.result.toFixed(digits));
log.debug('\t', 'long:', macd.long.result.toFixed(digits));
log.debug('\t', 'macd:', diff.toFixed(digits));
log.debug('\t', 'signal:', signal.toFixed(digits));
log.debug('\t', 'macdiff:', macd.result.toFixed(digits));
}
method.check = function() {
var macddiff = this.indicators.macd.result;
if(macddiff > this.settings.thresholds.up) {
// new trend detected
if(this.trend.direction !== 'up')
// reset the state for the new trend
this.trend = {
duration: 0,
persisted: false,
direction: 'up',
adviced: false
};
this.trend.duration++;
log.debug('In uptrend since', this.trend.duration, 'candle(s)');
if(this.trend.duration >= this.settings.thresholds.persistence)
this.trend.persisted = true;
if(this.trend.persisted && !this.trend.adviced) {
this.trend.adviced = true;
this.advice('long');
} else
this.advice();
} else if(macddiff < this.settings.thresholds.down) {
// new trend detected
if(this.trend.direction !== 'down')
// reset the state for the new trend
this.trend = {
duration: 0,
persisted: false,
direction: 'down',
adviced: false
};
this.trend.duration++;
log.debug('In downtrend since', this.trend.duration, 'candle(s)');
if(this.trend.duration >= this.settings.thresholds.persistence)
this.trend.persisted = true;
if(this.trend.persisted && !this.trend.adviced) {
this.trend.adviced = true;
this.advice('short');
} else
this.advice();
} else {
log.debug('In no trend');
// we're not in an up nor in a downtrend
// but for now we ignore sideways trends
//
// read more @link:
//
// https://github.com/askmike/gekko/issues/171
// this.trend = {
// direction: 'none',
// duration: 0,
// persisted: false,
// adviced: false
// };
this.advice();
}
}
module.exports = method;
Эта стратегия MACD советует покупать, когда все эти условия выполняются:
- macddiff > this.settings.thresholds.up
- this.trend.duration> = this.settings.thresholds.persistence
И советует продавать при возникновении противоположных условий:
- macddiff <</strong> this.settings.thresholds.up
- this.trend.duration> = this.settings.thresholds.persistence
Хорошо, необходимые мне измененияявляются:
Одно новое условие покупки: Когда фактическое значение macddiff> превышает его непосредственно предшествующее значение
One new sell условие: Когда фактическое значение macddiff <, чем его непосредственно предшествующее значение </strong>
Например, предполагая 15-минутные свечи:
2018/06/12 00:00 macddiff = 5.3452
2018/06/12 00:15 macddiff = 7.5891 ----> **BUY**, because 7.5891 > 5.3452
2018/06/12 00:30 macddiff = 8.4982
2018/06/12 00:45 macddiff = 10.4389
2018/06/12 01:00 macddiff = 4.2340 ----> **SELL**, because 4.2340 < 10.4389
2018/06/12 01:15 macddiff = -2.4902
2018/06/12 01:30 macddiff = -1.9049 ---> **BUY**, because -1.9049 > -2.490
Как это можно сделать?Какие изменения необходимо внести в файл gekko / стратегия / MACD.js ?Пожалуйста, предоставьте полный файл с полными модификациями.
Этот другой ответ на форуме Gekko может быть использован, но ... К сожалению, я не могу понять это правильно.
Заранее спасибо!