nikhouri / pxdisplay

Emacs major mode for fetching/displaying financial prices.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pxdisplay.el

Draft Emacs major mode for fetching/displaying financial prices.

pxdisplay screenshot

Getting started

Add the following to your .emacs:

(add-to-list 'load-path "~/.emacs.d/pxdisplay")` ; ...or wherever you put it
(require 'pxdisplay)
(setq pxdisplay-host "HOSTNAME") ; API host, defaults to demo server if unset
(setq pxdisplay-account "YOURACCOUNT") ; Your account
(setq pxdisplay-token "YOURTOKEN")     ; Your API token
(setq pxdisplay-sym                    ; Symbol list, preset defaults if unset,
	'((LABEL1 (SYM1 SYM2 SYM3 ...))    ;   duplicate symbols in API calls fail.
	  (LABEL2 (SYM4 SYM5 SYM6 ...))))  ;   Try with the defaults first.
  • Launch/refresh with M-x pxdisplay
  • Refresh in the *pxdisplay* buffer by pressing r

Notes

About

Emacs major mode for fetching/displaying financial prices.

License:BSD Zero Clause License


Languages

Language:Emacs Lisp 100.0%