{"currency" : "BTC",// target cryptocurrency to analyze "priceRoundRadix": -3,// round up digit"cron": "0-59/15 * * * * *",// re crawl on every ..."maxCount": 1000// ignore old data if over this amount }
configuration that is used in selector.js, chartFeeder.js and analyzer.js
{"currency" : "BTC",// target cryptocurrency (should be paired with crawlerConfig.json currency)"selector": {// Selector.js"cron": "5 0-59/4 * * * *"// rerun selector.js on every ..},"ohlc": {// ohlcBuilder.js"splitSize": 4// chunk size to make one ohlc record (usually same with cron rerun min.)},"analyzer": {// Analyzer.js"gapAllowance": 0.033,// gap allowance to check within target sell,buy price for warning"buyPrice": 4350300,// Target buy Price"sellPrice": 5074580,// Target sell Price"divergence": 1000// ignore analysis if sum of aFew histogram is so small}}
chart/public/currency.png
currency icon used in chart url and slack
BTC,ETH,XRP,ZEC, BCH coin icons are ready
Usage
sb {currency}{subcommand}{amount}
{currency}
b:BTC, x:XRP, e:ETH, c:BCH, gBTG, .. (as you defiend)
n:Now
{subcommand}
b: buyPrice, s: sellPrice
g: gapAllowance
a: adjust buy,sell based on nowPrice +/- gapAllowance * 3 %
n: nowPrice
{amount}
1234000 : set to 1,234,000
12340k : set to 12,340,000
+100 : add 100 to current set
-3k : subtract 3000 from current set
+3% : add 3% on current set
0.03 : set to 0.03% (gap only)
(note)
Uppercase currency accepted
Spaces between currency, subcommand and amount are allowed