Skip to content

Commit

Permalink
GRC -> GRIDCOIN
Browse files Browse the repository at this point in the history
  • Loading branch information
grctest authored Jun 23, 2016
1 parent dc30654 commit 2fa59f2
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions scripts/pricefeeds/config-example.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
################################################################################
# Asset specific Settings
################################################################################
_all_assets = ["BTC", "SILVER", "GOLD", "GRC", "TRY", "SGD", "HKD", "NZD",
_all_assets = ["BTC", "SILVER", "GOLD", "GRIDCOIN", "TRY", "SGD", "HKD", "NZD",
"CNY", "MXN", "CAD", "CHF", "AUD", "GBP", "JPY", "EUR", "USD",
"KRW"] # "SHENZHEN", "HANGSENG", "NASDAQC", "NIKKEI", "RUB", "SEK"
"KRW", "TCNY", "TUSD" ] # "SHENZHEN", "HANGSENG", "NASDAQC", "NIKKEI", "RUB", "SEK"
Expand Down Expand Up @@ -123,7 +123,7 @@

# Adding GRIDCOIN MPA
# CCEX currently not supported
"GRC" : {
"GRIDCOIN" : {
"metric" : "weighted",
"sources" : ["poloniex",
#"ccex",
Expand Down Expand Up @@ -184,9 +184,15 @@
bases=["USD", "EUR", "CNY", "JPY", "HKD"])
feedSources["btcavg"] = feedsources.BitcoinAverage(quotes=["BTC"], bases=["USD", "EUR", "CNY"])

feedSources["poloniex"] = feedsources.Poloniex(allowFailure=True, quotes=["BTS", "GRC"], bases=["BTC"])
feedSources["poloniex"] = feedsources.Poloniex(allowFailure=True,
quotes=["BTS", "GRC"],
quoteNames={"GRC" : "GRIDCOIN"},
bases=["BTC"])
feedSources["ccedk"] = feedsources.Ccedk(allowFailure=True, quotes=["BTS"], bases=["BTC", "USD", "EUR", "CNY"])
feedSources["bittrex"] = feedsources.Bittrex(allowFailure=True, quotes=["BTS", "GRC"], bases=["BTC"])
feedSources["bittrex"] = feedsources.Bittrex(allowFailure=True,
quotes=["BTS", "GRC"],
quoteNames={"GRC" : "GRIDCOIN"},
bases=["BTC"])
feedSources["yunbi"] = feedsources.Yunbi(allowFailure=True, quotes=["BTS", "BTC"], bases=["CNY"])
feedSources["btc38"] = feedsources.Btc38(allowFailure=True, quotes=["BTS", "BTC"], bases=["BTC", "CNY"])

Expand Down

0 comments on commit 2fa59f2

Please sign in to comment.