All Projects → eklitzke → coin-ticker-mode

eklitzke / coin-ticker-mode

Licence: GPL-3.0 License
Emacs minor mode for showing the price of Bitcoin, Ethereum, and other cryptocurrencies.

Programming Languages

emacs lisp
2029 projects

Projects that are alternatives of or similar to coin-ticker-mode

svg-tag-mode
A minor mode for Emacs that replace keywords with nice SVG labels
Stars: ✭ 314 (+1395.24%)
Mutual labels:  melpa, minor-mode
alarm-clock
An alarm clock for Emacs
Stars: ✭ 15 (-28.57%)
Mutual labels:  melpa
cryptocheck
Check prices of cryptocurrencies via command line
Stars: ✭ 31 (+47.62%)
Mutual labels:  cryptocurrencies
coinbash
💰 A bash script (CLI) for displaying crypto currencies market data in a terminal 🖥
Stars: ✭ 110 (+423.81%)
Mutual labels:  cryptocurrencies
shakespeare-mode
An emacs major mode for editing hamlet, lucius, and julius files
Stars: ✭ 35 (+66.67%)
Mutual labels:  melpa
emacs-mips-mode
An Emacs major mode for MIPS assembly code
Stars: ✭ 22 (+4.76%)
Mutual labels:  melpa
flycheck-dmd-dub
flycheck and DCD dub support to enable D IDE features in Emacs
Stars: ✭ 14 (-33.33%)
Mutual labels:  melpa
bitmex-orderbook
The fastest order book implementation for the BitMEX WebSocket API.
Stars: ✭ 73 (+247.62%)
Mutual labels:  cryptocurrencies
mcafee2cash
A crypto trading bot powered by McAfee tweets
Stars: ✭ 38 (+80.95%)
Mutual labels:  cryptocurrencies
laravel-bitcoinrpc
Bitcoin JSON-RPC Service Provider for Laravel.
Stars: ✭ 83 (+295.24%)
Mutual labels:  cryptocurrencies
Coinbase-Pro-Crypto-Trading-Bot-CrypFinder
This is a crypto trading bot made in NodeJS that uses the coinbase pro API.
Stars: ✭ 138 (+557.14%)
Mutual labels:  cryptocurrencies
foxfolio-desktop
Cryptocurrency portfolio management application which automatically retrieves balances and trades using exchange APIs
Stars: ✭ 63 (+200%)
Mutual labels:  cryptocurrencies
company-ansible
Ansible keywords completion for Emacs
Stars: ✭ 21 (+0%)
Mutual labels:  melpa
pairs trading cryptocurrencies strategy catalyst
Pairs trading strategy example based on Catalyst
Stars: ✭ 34 (+61.9%)
Mutual labels:  cryptocurrencies
cryptocurrency-icons-font
A webfont for cryptocurrency symbols
Stars: ✭ 21 (+0%)
Mutual labels:  cryptocurrencies
LibraBrowser
LibraBrowser
Stars: ✭ 37 (+76.19%)
Mutual labels:  cryptocurrencies
crypto-markets
react-native-cryptocurrency-ticker
Stars: ✭ 27 (+28.57%)
Mutual labels:  cryptocurrencies
augmented-finance-protocol
High-yield lending and low-rate borrowing DeFi protocol
Stars: ✭ 28 (+33.33%)
Mutual labels:  cryptocurrencies
emacs-auto-deployment
Copy file on save, automatic deployment it. aka auto-deployment.
Stars: ✭ 18 (-14.29%)
Mutual labels:  melpa
emacs-pug-mode
Pug support for Emacs, based on slim-mode.
Stars: ✭ 39 (+85.71%)
Mutual labels:  melpa

Melpa Status

Emacs coin-ticker-mode

This is an Emacs minor mode that can display a ticket with the price of Bitcoin, Ethereum, and other cryptocurrencies. Prices are fetched using the CoinMarketCap ticker API, which supports nearly every cryptocurrency.

Screenshot

Installation

You'll need Emacs 25 or later to use coin-ticker-mode.

The recommended way to get coin-ticker is as a package from the MELPA repository. The version of coin-ticker there will always be up-to-date.

Configuration

Your Emacs config should have some code like this:

(require 'coin-ticker)

;; Optional: Set the update interval, in seconds (default 300)
(setq coin-ticker-api-poll-interval 120)

;; Optional: Set the currency list (default is BTC and ETH)
(setq coin-ticker-syms '("BTC" "ETH" "LTC" "XPR"))

;; Optional: Just show prices (and no symbols)
(setq coin-ticker-show-syms nil)

;; Optional: Set the price unit to use (default is "USD")
(setq coin-ticker-price-convert "EUR")

;; Optional: Set the symbol used to display prices (default is "$")
(setq coin-ticker-price-symbol "")

;; Enable coin-ticker-mode
(coin-ticker-mode 1)

License

This Emacs mode is free software, released under the GPLv3, like Emacs itself.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].