LoginSignup
0
0

More than 5 years have passed since last update.

install windows BuildTools & TALib for node.js on windows10

Last updated at Posted at 2018-08-07

概要

  • 目的:windows10, node.jsでTALibを使いたい
  • 環境
    • windows10
    • Node.js v8.11.3
    • VSCode

参考、外部サイト

インストール手順

Install windows BuildTools

// powerShell on Admin user
> npm install --global --production windows-build-tools

install .NET Framework 4.6 Targeting Pack

install talib

npm install talib --save

サンプルプログラム実行

test.js

var talib = require('talib');
console.log("TALib Version: " + talib.version);

// Display all available indicator function names
var functions = talib.functions;
for (i in functions) {
    console.log(functions[i].name);
}

実行

> node test.js
TALib Version: 1.0.3
ADD
DIV
MAX
MAXINDEX
MIN
・・略・・
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0