LinuxConfig
linuxconfig.org › home › get stock and crypto price data using shell terminal on linux
Get stock and crypto price data using shell terminal on Linux
October 14, 2022 - Retrieve stock & crypto prices on Linux using Bash. Learn how to install, run scripts, and monitor market data directly from the terminal.
GitHub
github.com › achannarasappa › ticker
GitHub - achannarasappa/ticker: Track stocks, crypto, and derivatives prices and positions in real time from your terminal · GitHub
Track value of your stock positions · Support for multiple cost basis lots · Support for pre and post market price quotes · Download the pre-compiled binaries from the releases page and copy to a location in PATH or see quick installs below · homebrew · brew install achannarasappa/tap/ticker · linux ·
Starred by 6.1K users
Forked by 331 users
Languages Go
Xmodulo
xmodulo.com › monitor-stock-quotes-command-line-linux.html
How to monitor stock quotes from the command line on Linux
This tool is called Mop. Written in Go, this lightweight command-line tool is extremely handy for tracking the latest stock quotes from the U.S. markets. You can easily customize the list of stocks to monitor, and it shows the latest stock quotes in ncurses-based, easy-to-read interface.
GitHub
github.com › pstadler › ticker.sh
GitHub - pstadler/ticker.sh: Real-time stock tickers from the command-line. · GitHub
Real-time stock tickers from the command-line. Contribute to pstadler/ticker.sh development by creating an account on GitHub.
Starred by 519 users
Forked by 91 users
Languages Shell
LinuxLinks
linuxlinks.com › home › 11 best free and open source linux stock tickers
11 Best Free and Open Source Linux Stock Tickers - LinuxLinks
May 20, 2026 - This article focuses on stock ticker software that runs on Linux. You can watch live (or delayed) stock price quotes from multiple stock market exchanges. The stock market is also open for business before and after regular trading hours (these are known as pre- and post-market trading sessions).
GitHub
github.com › frossm › quoter
GitHub - frossm/quoter: Command line utility to display stock quotes and index data
It's executed by giving Quoter the -t command line switch. If there are 5 symbols on the command line, it will trend them all in sequence. The display will show you the last three months of data with the daily range and the close price.
Starred by 23 users
Forked by 4 users
Languages Java 97.9% | Python 1.9% | Shell 0.2% | Java 97.9% | Python 1.9% | Shell 0.2%
Snapcraft
snapcraft.io › ticker
Install ticker on Linux | Snap Store
3 weeks ago - Live stock price quotes · Track value of your stock positions · Support for multiple cost basis lots · Support for pre and post market price quotes · Examples: $ ticker -w DME,BTC-USD,GOOG,AAPL $ ticker --config ~/snap/ticker/common/ticker.yaml · This is a strictly confined snap which only has network access.
David Walsh
davidwalsh.name › stock-quotes-command-line
Get Stock Quotes From Command Line
April 23, 2015 - curl -s 'http://download.finance.yahoo.com/d/quotes.csv?s=aapl&f=l1c1' Not needing to jump over to the browser to get stock quotes has been nice...especially if the market is having a down day and you don't want to see a screen of red.
Tiny Core Linux Forum
forum.tinycorelinux.net › index.php
Getting stock quotes through the command line
July 1, 2017 - Tiny Core Linux » · General TC » · Programming & Scripting - Unofficial » · Getting stock quotes through the command line · « previous next » · Print · Pages: [1] Go Down · Print · Pages: [1] Go Up · « previous next » · Tiny Core Linux » · General TC » ·
Terminal Trove
terminaltrove.com › home › macos › ticker
ticker - A terminal stock ticker with live updates and position tracking. - Terminal Trove
April 22, 2025 - Core features include watchlists, multiple lots per symbol, support for pre/post‑market price quotes, configurable refresh intervals, currency conversion and outputting your holdings to JSON or CSV. This tool can read a configuration file (YAML) of all your chosen stock symbols and holding information to which these are displayed in the TUI.
Reddit
reddit.com › r/bash › bash script to pull stock quotes
r/bash on Reddit: Bash script to pull Stock Quotes
August 9, 2022 -
I'm trying to write a script to pull stock quotes using curl
Can this be done easily using curl -L https://someURL.com to pull the data?
Do stock quotes require a login or browser only? Or could I pull it down using JSON?
Thanks in advance.
Top answer 1 of 4
9
Can this be done easily using curl? Yes if you know the name of a site that serves the data Do stock quotes require a login? Entirely up to the site you choose. Can I pull it down using json? Again entirely up to the site you choose. Is this a bash question? No. I suggest you do a google search for 'stocks quote api' and take a look at some of the results that come back. They will point you in the right direction. Once you have gotten a bit further and have some actual code you want help with, come back to us and we will be glad to assist. PLEASE don't delete this question.
2 of 4
3
I use Yahoo's API for this. https://github.com/SpicyLemon/SpicyLemon/tree/master/ticker
Slashdot
slashdot.org › software › trading › stock analysis software › linux
Top Stock Analysis Software for Linux in 2026
Stocks extension provides you with real-time stock quotes, news and all the financial information you need. Are you tired of switching between different websites and apps in order to keep track of the stocks, indices and cryptocurrencies that you are interested in?
Reddit
reddit.com › r/commandline › getting stock quotes in terminal
r/commandline on Reddit: Getting stock quotes in terminal
March 31, 2022 -
Wrote a shell function for this:
q () {
curl -sL "https://www.google.com/finance/quote/$1" | pandoc -f html -t plain | grep -A9 "${1%:*}" | awk 'NR==1 || NR==9' ORS=' '
}Usage:
$ q "SPY:NYSEARCA" SPY • NYSEARCA $451.64
Ask Ubuntu
askubuntu.com › questions › 412705 › what-program-will-display-live-stock-quotes-in-the-top-bar
12.04 - What program will display live stock quotes in the top bar? - Ask Ubuntu
Displays stock quotes on the desktop pulled from the yahoo servers.