You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mop/README.md

70 lines
3.8 KiB

3 years ago
### mop: track stocks the hacker way
3 years ago
A command-line utility that displays continuous up-to-date information about select markets and individual stocks.
11 years ago
3 years ago
![image](https://user-images.githubusercontent.com/12674437/144474220-5f35f893-6860-4ba5-9c3a-58b80df16255.png)
11 years ago
2 years ago
### Installing mop from source
3 years ago
Ensure GO language is installed. Download from: https://go.dev/dl/ and the $GOPATH is set then:
3 years ago
```
git clone https://github.com/mop-tracker/mop
cd mop
go build ./cmd/mop
./mop
```
3 years ago
### Using mop
3 years ago
For demonstration purposes Mop comes preconfigured with a number of stock tickers. You can easily change the default list by using the following keyboard commands:
11 years ago
+ Add stocks to the list.
- Remove stocks from the list.
o Change column sort order.
g Group stocks by advancing/declining issues.
f Set a filtering expression.
F Unset a filtering expression.
PgDn Scroll Down, down arrow key also works.
PgUp Scroll up, up arrow key also works.
11 years ago
? Display help screen.
esc Quit mop.
3 years ago
When prompted please enter comma-delimited list of stock tickers. The list and other settings are stored in the profile file (default: ``.moprc`` in your ``$HOME`` directory)
11 years ago
### Expression-based Filtering
5 years ago
Mop has an in realtime expression-based filtering engine that is very easy to use.
5 years ago
At the main screen, press `f` and a prompt will appear. Write an expression that uses the stock properties.
Example:
```last <= 5```
5 years ago
This expression will make Mop show only the stocks whose `last` values are less than $5.
The available properties are: `last`, `change`, `changePercent`, `open`, `low`, `high`, `low52`, `high52`, `volume`, `avgVolume`, `pe`, `peX`, `dividend`, `yield`, `mktCap`, `mktCapX` and `advancing`.
The expression **must** return a boolean value, otherwise it will fail.
For detailed information about the syntax, please refer to [Knetic/govaluate#what-operators-and-types-does-this-support](https://github.com/Knetic/govaluate#what-operators-and-types-does-this-support).
To clear the filter, press `Shift+F`.
11 years ago
You can specify the profile you want to use by passing ``-profile <filename>`` to the command-line.
11 years ago
3 years ago
### Saving & Downloading to CSV
Please refer to the wiki by contributor @joce: [How to fetch market data from Yahoo! Finance in CSV form, from the command line](https://github.com/mop-tracker/mop/wiki/How-to-fetch-market-data-from-Yahoo!-Finance-in-CSV-form,-from-the-command-line).
Further information may be found in the following article: [Pulling Yahoo! Finance data to CSV](https://jocelyn.legau.lt/posts/pulling-yahoo-finance-tickers-to-csv/)
3 years ago
3 years ago
### Contributing
* Pull requests accepted.
11 years ago
3 years ago
### License
Copyright (c) 2013-2019 by Michael Dvorkin and contributors. All Rights Reserved.
11 years ago
"mike" + "@dvorkin" + ".net" || "twitter.com/mid"
11 years ago
3 years ago
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.