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.
Brandon Lee Camilleri 8c50782a40
Update go.sum
3 years ago
bin Update Makefile to follow build/install conventions for Go packages 9 years ago
cmd/mop Added fixes for crashing on bad filter 3 years ago
doc Updated screenshot 10 years ago
homebrew Using original Termbox-Go 5 years ago
.gitignore Update .gitignore 5 years ago
LICENSE Update LICENSE 5 years ago
Makefile Update Makefile 4 years ago
README.md Update README.md 3 years ago
cnn_market.go clear market errors after success 5 years ago
column_editor.go Update column_editor.go 5 years ago
filter.go Bugfix--filters now work: filter.go converts correctly to floats 3 years ago
go.mod Update go.mod 3 years ago
go.sum Update go.sum 3 years ago
layout.go Fixed bug where quotes list did not clear when shortened. 3 years ago
line_editor.go Fix refresh issue when removing ticker 4 years ago
markup.go Update markup.go 5 years ago
profile.go Added fixes for crashing on bad filter 3 years ago
screen.go Fixed bug where quotes list did not clear when shortened. 3 years ago
sorter.go Merge pull request #76 from joce/display-fixes 3 years ago
yahoo_quotes.go fix: use correct receiver name 4 years ago
yahoo_quotes_sample.json Create yahoo_quotes_sample.json 5 years ago

README.md

Mop: track stocks the hacker way

Mop is a command-line utility that displays continuous up-to-date information about the U.S. markets and individual stocks.

Screenshot

Installing Mop

Mop is implemented in Go and compiles down to a single executable file.

$ go install github.com/mop-tracker/mop/cmd/mop@latest

Alternatively,

# Make sure your $GOPATH is set.

$ git clone https://github.com/mop-tracker/mop
$ cd mop
$ go build ./cmd/mop
$ ./mop

Using Mop

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:

+       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.
?       Display help screen.
esc     Quit mop.

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)

Expression-based Filtering

Mop has an in realtime expression-based filtering engine that is very easy to use.

At the main screen, press f and a prompt will appear. Write an expression that uses the stock properties.

Example:

last <= 5

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.

To clear the filter, press Shift+F.

You can specify the profile you want to use by passing -profile <filename> to the command-line.

Contributing

  • Pull requests accepted.
  • Commit without changing program version or commit history.

License

Copyright (c) 2013-2019 by Michael Dvorkin and contributors. All Rights Reserved. "mike" + "@dvorkin" + ".net" || "twitter.com/mid"

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.