https://github.com/rickycodes/ftse
scrape and filter hl.co.uk market summaries
https://github.com/rickycodes/ftse
Last synced: 10 months ago
JSON representation
scrape and filter hl.co.uk market summaries
- Host: GitHub
- URL: https://github.com/rickycodes/ftse
- Owner: rickycodes
- Created: 2015-08-09T22:06:23.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2018-04-28T08:05:08.000Z (about 8 years ago)
- Last Synced: 2025-05-14T08:57:27.560Z (12 months ago)
- Language: JavaScript
- Homepage:
- Size: 11.7 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## ftse
scrape and filter hl.co.uk market summaries
#### install
```sh
$ npm install --save ftse
```
#### usage
```js
var ftse = require('ftse')('aim', 20, null, function(items) {
console.log(items) // Array
})
```
#### cli
```
$ npm install --global ftse
```

##### options
The following options are available:
```
--market=market -m=market
Specify which market, either `aim` or `100` (ftse-100)
--limit=num -l=num
Limit the results to a specific number
--risers -r
Limit the results to risers only
--fallers -f
Limit the results to fallers only
--table -t
Render output as table
```
##### usage
```sh
ftse --market=100
=> `...`
ftse --market=aim --limit=5
=> `...`
ftse --market=aim --limit=5 --risers
=> `...`
ftse --market=aim --limit=10 --fallers
=> `...`
ftse --version
=> 1.0.1
```