Skip to content

Commit

Permalink
v2.09.0 (Happy New Year)
Browse files Browse the repository at this point in the history
-Auto-correct basic config user input errors (case / whitespace)

-Prepped ticker logic for supporting multiple exchanges in the future

-Code cleanup / consolidation / optimization

-Slideshow auto mode (shows all configured tickers over 60 seconds)

-Setting for maximum market price decimals allowed

-Automatic determination whether crypto / fiat market pairing
  • Loading branch information
taoteh1221 committed Dec 31, 2019
1 parent 9666062 commit 3529f90
Show file tree
Hide file tree
Showing 5 changed files with 332 additions and 186 deletions.
20 changes: 20 additions & 0 deletions dfd-crypto-ticker/Misc.Docs.Etc/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,26 @@ v2.08.1
---------------------------------------------------------


---------------------------------------------------------
v2.09.0

-Auto-correct basic config user input errors (case / whitespace)

-Prepped ticker logic for supporting multiple exchanges in the future

-Code cleanup / consolidation / optimization

-Slideshow auto mode (shows all configured tickers over 60 seconds)

-Setting for maximum market price decimals allowed

-Automatic determination whether crypto / fiat market pairing

---------------------------------------------------------







Expand Down
10 changes: 8 additions & 2 deletions dfd-crypto-ticker/apps/ticker/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


// What exchange to use
// Currently only coinbase is supported (kraken is coming soon)
// Currently only coinbase is supported (kraken / binance coming soon)
var crypto_exchange = 'coinbase';


Expand All @@ -20,8 +20,14 @@ var crypto_markets = 'BTC-USD|ETH-USD|ETH-BTC';



// Maximum allowed decimals in market price
var max_price_decimals = 5;



// Seconds between "slideshowing" multiple tickers (if multiple assets configured)
var slideshow_speed = 20;
// SET TO ZERO FOR AUTO MODE (shows all configured tickers over 60 seconds)
var slideshow_speed = 0;



Expand Down
Loading

0 comments on commit 3529f90

Please sign in to comment.