Nonkyc market improvements

-Added OHLCV chart support
-Lined up some of the config code better
-Updated count of supported exchanges in the README
This commit is contained in:
Joe Uhren
2024-02-26 18:58:19 -07:00
parent f92cdfc4ca
commit 3d141dab92
4 changed files with 68 additions and 28 deletions
+45 -3
View File
File diff suppressed because one or more lines are too long
+11 -12
View File
@@ -834,7 +834,7 @@ exports.markets_page = {
"show_market_select": true,
// exchanges: Enable/disable api integration with any of the available built-in exchanges
// Enabled exchanges display a number of exchange-related metrics including market summary, 24 hour chart, most recent buy/sell orders and latest trade history
// Supported exchanges: altmarkets, dex-trade, freiexchange/freixlite, poloniex, southxchange, xeggex, yobit
// Supported exchanges: altmarkets, dex-trade, freiexchange/freixlite, nonkyc, poloniex, southxchange, xeggex, yobit
"exchanges": {
// altmarkets: a collection of settings that pertain to the altmarkets exchange
"altmarkets": {
@@ -871,17 +871,16 @@ exports.markets_page = {
"trading_pairs": [ "LTC/BTC" ]
},
// nonkyc: a collection of settings that pertain to the nonkyc exchange
// NOTE: nonkyc does not display a 24-hour chart due to a lack of OHLCV api data
"nonkyc": {
// enabled: Enable/disable the nonkyc exchange (true/false)
// If set to false, the nonkyc page will be completely inaccessible and no market data will be downloaded for this exchange
"enabled": false,
// trading_pairs: An array of market trading pair symbols
// You can add as many trading pairs as necessary
// All entries must specify your coins symbol as it is displayed on the exchange, followed by a slash (/) and ending with the symbol of the market or asset that is being traded against
// Ex: "LTC/BTC", "LTC/USDT", "LTC/ETH"
"trading_pairs": [ "LTC/USDT" ]
},
"nonkyc": {
// enabled: Enable/disable the nonkyc exchange (true/false)
// If set to false, the nonkyc page will be completely inaccessible and no market data will be downloaded for this exchange
"enabled": false,
// trading_pairs: An array of market trading pair symbols
// You can add as many trading pairs as necessary
// All entries must specify your coins symbol as it is displayed on the exchange, followed by a slash (/) and ending with the symbol of the market or asset that is being traded against
// Ex: "LTC/BTC", "LTC/USDT", "LTC/ETH"
"trading_pairs": [ "LTC/USDT" ]
},
// poloniex: a collection of settings that pertain to the poloniex exchange
"poloniex": {
// enabled: Enable/disable the poloniex exchange (true/false)