Skip to main content

Track stock market information right in your Terminal.


    Introduction:

As a developer, I love working with the terminal. The plain, simple, and in my opinion the best way to interact with the computer (also it makes you look geeky).

I spent most of my time in the terminal. By now you must have guessed I am a huge fan of the terminal and terminal-based applications.

Recently I developed an interest in stock markets and started tracking the stock markets. Since I love working with the terminal I decided to build a terminal oriented application that can help me to track the stock market.

Inspired by wttr.in I build terminal-stocks which can provide the stock's current prices, historical prices, and global market summary.

How to use terminal-stocks

terminal-stocks is available and can be used without installation.

curl terminal-stocks.dev/ITC.NS
Image for post
Current price of stocks

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.

2. Get the historical prices of a stock.

curl terminal-stocks.dev/historical/ITC.NS
Image for post
Historical prices

This will give the 10 entries. To fetch more you can get it by providing page parameters like below.

curl terminal-stocks.dev/historical/ITC.NS?page=2

3. Get the global market summary right in your terminal.

curl terminal-stocks.dev/market-summary
Image for post
Global market summary

More and more features will be added going forward.

How to use terminal-stocks as CLI

If you want to use terminal-stocks as a cli tool, you are lucky, terminal-stocks comes with cli as well. You can install terminal-stocks in windows/ubuntu/mac and use it.

npm install terminal-stocks -g

2. Get the price information of stock

terminal-stocks -t ITC.NS

3. Get the historical price information of stock

terminal-stocks -t ITC.NS --historical

4. Get the market summary

terminal-stocks --market

5. Export as JSON or CSV

terminal-stocks --market --json // as a jsonterminal-stocks --ticker ITC.NS --csv // as a csv

Roadmap

terminal-stocks is still in development and need a lot of improvements and feature development.

If you want to contribute and make terminal-stocks better, contributions are welcome via pull request on Github

Important Links:

Github: https://github.com/shweshi/terminal-stocks

NPM: https://www.npmjs.com/package/terminal-stocks

Thanks for reading. If you have some feedback, please reach out to me on Twitter or Github.

Make sure to upvote on Product Hunt.

Terminal Stocks - Track stock market right in your terminal | Product Hunt

Happy Coding!!!

Comments

Popular posts from this blog

PrivateGPT: A Step-by-Step Guide to Installation and Use

In this blog post, we will explore the ins and outs of PrivateGPT, from installation steps to its versatile use cases and best practices for unleashing its full potential. What is PrivateGPT? PrivateGPT is a cutting-edge program that utilizes a pre-trained GPT (Generative Pre-trained Transformer) model to generate high-quality and customizable text. Built on OpenAI's GPT architecture, PrivateGPT introduces additional privacy measures by enabling you to use your own hardware and data. This ensures that your content creation process remains secure and private. Installation Steps Before we dive into the powerful features of PrivateGPT, let's go through the quick installation process. PrivateGPT is a command line tool that requires familiarity with terminal commands. Let's get started: 1. Clone the Repository: Begin by cloning the PrivateGPT repository from GitHub using the following command: ``` git clone https://github.com/imartinez/privateGPT.git ``` 2.Navigate to the Direc

Terraform: Understanding Desired & Current State

In this post, we will learn in detail what is terraform desired and current state. Terraform’s responsibility is to create/update/destroy infrastructure resources to match the desired state as described in the configuration. Desired State: For example: If our desired state is as below resource "aws_instance" "myec2" { ami = "ami-0ca285d4c2cda3300" instance_type = "t2.medium" } This should result in an AWS EC2 t2.medium instance. The code you saw above is the desired state that we want. Current State: The current state is the actual state of a resource that is deployed. For example: If our desired state is as below resource "aws_instance" "myec2" { ami = "ami-0ca285d4c2cda3300" instance_type = "t2.medium" } our desired state is t2.medium instance but let’s say the current instance running is t2.micro. So it means our desired state and the current state is not matching. Try it out