motivewave-exporter
v1.0.3
Published
Exports Elliott wave analysis from MotiveWave
Downloads
2
Maintainers
Readme
Waves exporter
Exports all waves as one object from Motivewave analysis XML file
Example
var MotiveWave = require('motivewave-exporter');
analysis = new MotiveWave('path_to_analysis.mwml');
analysis.import(function(err, imported){
if (err) throw err;
console.log(imported);
processed = analysis.process(imported); // Processed and minimized
console.log(processed);
packed = analysis.pack(processed); // Packed into one object
console.log(packed);
});