convert .hst to json
npm install hst2jsonconvert MT4, MT5 time-series history file(.hst) to json.
```
npm install --save hst2json
`javascript
const fs = require('fs')
const hst2json = require('hst2json')
const buffer = fs.readFileSync('filename.hst')
const json = hst2json(buffer)
``