inq is a CLI tool for U.S. stock INsider trading Query.
Support this project and others by hustcer via gratipay.
- First you should have node.js(v0.10.0 or later) installed.
- Then install
inq
by:sudo npm install -g inq
.
- We strongly recommend you keep your
inq
up to date for a better user experience. Updateinq
is quite simple:sudo npm update -g inq
- If the method above does not work, you can reinstall it by:
sudo npm un inq -g; sudo npm install inq -g
Usage: inq [options] or inq <symbols>
Options:
-h, --help output usage information
-V, --version output the version number
-s, --symbol <symbols> Symbol list to query, separated by comma.
-t, --time <span> Insider trading time span, should be one of: 1m, 2m, 3m, 4m, or 5m.
Usage Examples:
inq aapl,yhoo , Query insider trading of aapl and yhoo in latest 3 months(default).
inq -s aapl,yhoo , Query insider trading of aapl and yhoo.
inq -s aapl,yhoo -t 2m , Query insider trading of aapl and yhoo in latest 2 months.
inq --symbol aapl,yhoo , Query insider trading of aapl and yhoo.
inq --symbol aapl --time 5m , Query insider trading of aapl in latest 5 months.
Tell me if you have any questions, please submit an issue here.