Git Product home page Git Product logo

data-forge-redis's Introduction

data-forge-redis

The redis module for use with Data-Forge and recoded from data-forge-fs.

Supposedly, we have a series of data that has been stored in the redis database.

Unlike the module of data-forge-fs, the data structure of the securities is constructed as follows:

KEY FIELD VALUE [PREFIX]SYMBOL YYYYMMDD {"O": XX.XXX, "C": XX.XXX, "H": XX.XXX, "L": XX.XXX}

This library contains the redis extensions to Data-Forge.

The example code is listed as follows:

const dataForge = require('data-forge');
const dataForgeRedis = require('data-forge-redis');
require('data-forge-indicators'); 

var toDate = new Date();
toDate.setDate(toDate.getDate() - 8); // get the last 7 days data, today's data is not imported
var fromDate = new Date(toDate.getTime());

const options = {
    host: localhost,
    port: 3679,
    database: 11
};

// async call, please use it in a async function, otherwise it will cause issues
var dataFrame = await dataForgeRedis.fromRedis(options).load(symbol, fromDate, toDate);

// for symbol that is stored with a prefix
// var dataFrame = await dataForgeRedis.fromRedis(options).load(symbol, fromDate, toDate, 'asx:price:');

var inputSeries = dataFrame.parseDates('date').setIndex('date').renameSeries({date: 'time'});



Click here for Data-Forge FS API docs

See Data-Forge docs and guide for details on how to use.

For company code changes

// for symbol that is stored with a prefix and code changes data is stored with a prefix as well
var dataFrame = await dataForgeRedis.fromRedis(options).load(symbol, fromDate, toDate, 'asx:price:', 'asx:cc');

Maintainer

Eric Tang @ TYO Lab

data-forge-redis's People

Watchers

James Cloos avatar TYO Lab avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.