Skip to content
This repository was archived by the owner on Dec 19, 2019. It is now read-only.

Files

Latest commit

7f2d7d7 · Nov 20, 2017

History

History

techan.js

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Nov 20, 2017
Oct 23, 2017
Oct 23, 2017

Techan.js example

This example is based on one of Techan.js' examples, with some slight modifications so it will read dataframes generated from ntfdl and exported as csv files with Pandas DataFrame.to_csv.

There is a file generated with ntfdl stl.csv for Statoil ASA in this example.

index.html contains the code to get Techan.js to render the data.

Exporting trade data as csv for Techan.js

from ntfdl import Multi

# We are going to get data for Statoil ASA (STL.OSE)
stl = multi(instrument='STL', exchange='OSE')

# Get intraday data from-to and resample to 15min
ohlcv = stl.get_ohlcv('20170801', '20171020', '15min')

# Pandas save as csv file
ohlcv.to_csv('stl.csv')

Using different name for file please edit index.html, specifically the d3.csv("stl.csv", function(error, data) {..} part.