-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added multiple currency support for all currencies available through
bitcoin average. changed colors to use ui-variable defaults and only go red or green when rising and remain neutral when stable.
- Loading branch information
Showing
5 changed files
with
83 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,41 @@ | ||
[atom-bitcoin](https://atom.io/packages/atom-bitcoin) | ||
============ | ||
|
||
Watch the latest selling price for bitcoin while you code! | ||
####Watch the latest selling price for bitcoin while you code! | ||
|
||
 | ||
|
||
|
||
To install | ||
####To install | ||
|
||
`` cd /Users/your_username/.atom/packages `` | ||
`` apm install atom-bitcoin `` or search for ``atom-bitcoin`` in Settings > Packages | ||
|
||
`` git clone git@github.com:ahmetabdi/atom-bitcoin.git `` | ||
This uses the [BitcoinAverage API](https://bitcoinaverage.com/api.htm), an open source project designed to provide weighted average bitcoin price calculation. It utilises all exchanges where price and volume data is available. | ||
|
||
then restart atom | ||
####Features | ||
|
||
Update interval fixed to 5 seconds | ||
- Update interval defaults to 5 seconds but any second-based interval can be entered in the settings | ||
|
||
Has colour updates to show increase/decrease in price in USD | ||
- Has colour updates to show increase/decrease/stable in price | ||
|
||
This uses the [BitcoinAverage API](https://bitcoinaverage.com/api.htm) | ||
- Currency defaults to USD but any currency from the list below can be entered in the settings | ||
|
||
It's an open source project designed to provide weighted average bitcoin price calculation. It utilises all exchanges where price and volume data is available. | ||
- AUD | ||
- BRL | ||
- CAD | ||
- CHF | ||
- CNY | ||
- EUR | ||
- GBP | ||
- HKD | ||
- ILS | ||
- JPY | ||
- NOK | ||
- NZD | ||
- PLN | ||
- RUB | ||
- SEK | ||
- SGD | ||
- TRY | ||
- USD | ||
- ZAR |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
module.exports = { | ||
"AUD": "\u0024", | ||
"BRL": "\u0052\u0024", | ||
"CAD": "\u0024", | ||
"CHF": "\u0043\u0048\u0046", | ||
"CNY": "\u00a5", | ||
"EUR": "\u20ac", | ||
"GBP": "\u00a3", | ||
"HKD": "\u0024", | ||
"ILS": "\u20aa", | ||
"JPY": "\u00a5", | ||
"NOK": "\u006b\u0072", | ||
"NZD": "\u0024", | ||
"PLN": "\u007a\u0142", | ||
"RUB": "\u0440\u0443\u0431", | ||
"SEK": "\u006b\u0072", | ||
"SGD": "\u0024", | ||
"TRY": "\u20ba", | ||
"USD": "\u0024", | ||
"ZAR": "\u0052" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters