🌐
Reddit
reddit.com › r/commandline › ticker v5: track stocks, crypto, and derivatives prices and positions in real time from your terminal
r/commandline on Reddit: ticker v5: track stocks, crypto, and derivatives prices and positions in real time from your terminal
May 19, 2025 -

https://github.com/achannarasappa/ticker

With ticker you can track stocks, crypto, and derivatives prices and positions in real time without leaving your terminal

The latest v5 release introduces functional and performance enhancements with a rewrite of many of the core components. Some of the enhancements include:

  • Streaming price updates for supported exchanges (e.g. Coinbase)

  • Price change animation

  • Debug mode with error logging

  • Derivatives support

  • Design improvements (data source extensibility, decoupling currency conversion, streaming and polling data source support)

These enhancements build on the existing features:

  • Live price tracking for stocks, crypto, and derivatives

  • Real time profit and loss tracking for positions and portfolios

  • Support for multiple portfolios

  • Support for tracking multiple cost basis lots

  • Customizable display options (color scheme, sorting, additional data)

  • Currency conversion for prices, positions, and portfolio

  • Output positions and watchlist as CSV, JSON, and pipe into other commands

🌐
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
🌐
Reddit
reddit.com › r/linux › [oc] tstock - a lightweight command-line tool to view stocks in the terminal, written in c.
r/linux on Reddit: [OC] tstock - a lightweight command-line tool to view stocks in the terminal, written in C.
January 13, 2022 - Kinda feel like the opposite lesson is true tho, almost all crashes/sudden dumps happen outside market hours, close before market close and you'll rarely get fucked by a big price move either way. Also stop loss orders often dont work properly outside market hours cus dank memes. At least in crypto, stop losses actually work 24/7, and settlement is immediate not ~3 days. But yea it feels like whales in both stock and crypto just only get outa bed at 4am UTC and go back to bed around 7am UTC, everything else is just chop.
🌐
Reddit
reddit.com › r/commandline › track your stocks without leaving your terminal with ticker
r/commandline on Reddit: Track your stocks without leaving your terminal with ticker
January 31, 2021 - ticker v5: track stocks, crypto, and derivatives prices and positions in real time from your terminal ... This is for anything regarding the command line, in any operating system.
🌐
Reddit
reddit.com › r › commandline › comments › ie7gy4 › asxticker_view_the_latest_asx_stock_prices_in
r/commandline - asxticker - view the latest ASX stock prices in your terminal
August 21, 2020 - 82.2k members in the commandline community. This is for anything regarding the command line, in any operating system. All questions (including dumb …
🌐
Reddit
reddit.com › r › investing › comments › 3zwaez › i_made_a_simple_command_line_quote_tool_give_it_a
r/investing on Reddit: I made a simple command line quote tool! Give it a try!
January 8, 2016 - 36 votes, 23 comments. Since I program all day and constantly have terminal open, I thought it would be neat to get simple market information in the…
🌐
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. ticker.sh is a simple shell script using the Yahoo Finance API as a data source. It features colored output and is able to display pre- and post-market prices (denoted with *).
Starred by 519 users
Forked by 91 users
Languages   Shell
🌐
Reddit
reddit.com › r/commandline › iexcli stock charts in the terminal
r/commandline on Reddit: iexcli stock charts in the terminal
January 5, 2022 - my code is pretty spagett right now, but the blessed-contrib interface allows for a wide range of graphics and charts. hopefully in a week or two i can get a beta out.
🌐
Reddit
reddit.com › r/python › a command line stock dashboard
r/Python on Reddit: A Command Line Stock Dashboard
July 24, 2020 - I created a simple command line dashboard for monitoring stocks and wanted to share it. I was looking for something like the Apple stock app that was cross-platform and can run from the terminal or command prompt. I couldn't find anything like that so I decided to write my own Python package :) Like the Apple stocks app it gets stock information from Yahoo!
Find elsewhere
🌐
Reddit
reddit.com › r › wallstreetbets › comments › g7dys4 › ubuntu_command_line_stock_price_text_to_speech
r/wallstreetbets - Ubuntu command line stock price text to speech for the busy autist.
April 24, 2020 -

I wanted to do some woodworking & garden work and listen to music, so I wrote a PHP script to yell the current stock price at me. As soon as I post this some asshole will probably point out that there this already exists somewhere and I missed it in my preliminary google search. To that guy I say, "thanks, dick."

By default, it speak a higher stock price in a high pitch, and lower in lower.

Create a file called speakstock.php and run it like

$chmod +x speakstock.php
$./speakstock.php SPY

If you don't have it already, you'll need the spd-say ubuntu command and the number formatting packages

$sudo apt-get install gnustep-gui-runtime php-intl

Here's the script

#!/usr/bin/php
<?php
if($argc === 1) die ("No arguments, please provide stock symbol.\n");
$stock = $argv[1];

$f = new NumberFormatter("en", NumberFormatter::SPELLOUT);
$oldPrice = 0.0;
while(true){
$data = json_decode(file_get_contents("https://financialmodelingprep.com/api/v3/stock/real-time-price/$stock"),true);
$price = floatval($data["price"]) + 0.0;

if( $price !== $oldPrice ){
$pitch = ($price > $oldPrice ? 30 : -30);
$oldPrice = $price;
$number = $f->format($price);
echo $price . PHP_EOL;
`spd-say -p $pitch "$number" `; //1>/dev/null
} else {
echo ".";
// var_dump($data );
}
sleep(1);
}

E: added a package you need

🌐
HackerNoon
hackernoon.com › you-can-track-stock-market-data-from-your-terminal-1k1h3135
You Can Track Stock Market Data From Your Terminal | HackerNoon
January 1, 2021 - You need to provide the ticker of the stock and terminal-stocks will give you the price information of the stock. terminal-stocks uses yahoo finance’s ticker to fetch stock information.
🌐
Reddit
reddit.com › r/commandline › clistockstracker: a command line utility for monitoring your stock market portfolio, primarily featuring detailed graph right in your terminal!
r/commandline on Reddit: cliStocksTracker: A command line utility for monitoring your stock market portfolio, primarily featuring detailed graph right in your terminal!
March 7, 2021 -

Many of you may recognize this project from a post I made on this subreddit a few weeks ago - but the then project (a weekend throw-together script) has evolved into a much more serious program.

cliStocksTracker includes many features it didn't before - including custom color selection, command line argument configuration, a more detailed view of your portfolio, and more! Best of all - it's been refactored (twice already!) to make it as friendly for new (and relatively unexperienced) developers to start contributing.

Check out this screenshot, featuring two tickers on the same axis - as well as that upgraded table view!

Straight from the README, this is clearly just a sample - so just imagine how great your portfolio would look!

Interested in checking it out (or even better, contributing)? Check out the project on Github:https://github.com/ConradSelig/cliStocksTracker

Hope you enjoy! ~C

🌐
Xmodulo
xmodulo.com › monitor-stock-quotes-command-line-linux.html
How to monitor stock quotes from the command line on Linux
$ sudo yum install git $ go get github.com/michaeldv/mop $ cd $GOPATH/src/github.com/michaeldv/mop $ make install · The above commands will install Mop under $GOPATH/bin. Now edit your .bashrc to include $GOPATH/bin in your PATH variable. ... To launch Mod, simply run the command called cmd. ... At the first launch, you will see a few stock tickers which Mop comes pre-configured with. The quotes show information like the latest price, %change, daily low/high, 52-week low/high, dividend, and annual yield.
🌐
David Walsh
davidwalsh.name › stock-quotes-command-line
Get Stock Quotes From Command Line
April 23, 2015 - while 1 ; do clear ; for STONK in AMC AQB GME TSLA ; do echo -e -n "\e[1;36m${STONK}\t\e[1;33m" ; curl -s https://www.marketwatch.com/investing/stock/${STONK} |grep '<meta name="price" content="' |cut -d'"' -f4 ; echo -e -n "\e[0m" ; done ; sleep 60 ; done
🌐
Reddit
reddit.com › r › Trading › comments › i8mvea › command_line_charts_and_stock_info
r/Trading - command line charts and stock info
hello, if anyone here is familiar with npm/yarn or the node ecosystem, this tool may be of use for following the stock market.
🌐
Reddit
reddit.com › r/commandline › 📈 stockstui — monitor stocks, crypto, and news from your terminal (textual-based tui)
r/commandline on Reddit: 📈 stocksTUI — Monitor stocks, crypto, and news from your terminal (Textual-based TUI)
July 9, 2025 -

If you live in the terminal and want to keep an eye on the markets without leaving it — I built something you might like.

stocksTUI is a terminal-based stock tracker built with Textual. It gives you real-time(ish) prices, ticker-specific news, historical data, and ASCII charts — all navigable with Vim-style keys, no mouse required.

Features:

  • 🧮 Custom watchlists (tech, crypto, indices, etc.)

  • 📉 Historical data with inline charts (via plotext)

  • 📰 Ticker-specific news headlines

  • ⚙️ Configurable UI and themes (Solarized, Dracula, Nord, etc.)

  • ⌨️ Full keybinding support — you never need to leave the keyboard

Works on:

  • Linux

  • macOS

  • Windows (via WSL2)

I built it to have a market dashboard running alongside htop and btop without ever launching a browser.

🔗 GitHub: https://github.com/andriy-git/stocksTUI

Open to feedback, feature ideas, or pull requests!

🌐
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 - In this tutorial, we saw how to get stock and crypto price data via the command line terminal on a Linux system.
🌐
LinuxLinks
linuxlinks.com › quoter-console-based-stock-quote-tool
Quoter - The Console Based Stock Quote Tool - LinuxLinks
March 24, 2022 - Unlike stock market command-line tools we’ve recently covered, mop and tickrs, Quoter doesn’t scrape its data from Yahoo! Finance. Instead, it retrieves quotes from IEX Cloud. This means that you’ll need to sign up for a free account to obtain an API token. The free API token gives 50,000 core credits a month. Before you can start to use the tool, you’ll also need to store your API Secret Key. To do this enter the following command at a shell: