Bitstamp & Binance Dashboard to show all your crypto balances across the two exchanges nicely in a single screen which includes daily candlestick chart - The app pulls balance data directly from the exchanges via API (read-only API keys are required)
BETA - fully functional but not polished
Create a Binance API key and export the following environment variables containing your key and your secret: BINANCE_API_KEY
, BINANCE_SECRET_KEY
.
You don't want to give this key full permissions as this application just fetches your latest balances from the exchanges, readonly permissions are ok.
Example:
export BINANCE_API_KEY=XXX
export BINANCE_SECRET_KEY=XXX
You don't want to give this key full permissions as this application just fetches your latest balances from the exchanges, Read-Balance permissions only are enough.
export BITSTAMP_API_KEY=XXX
export BITSTAMP_API_SECRET=XXX
export BITSTAMP_CLIENT_ID=123456
bundle
bundle exec rackup -p 3000
then visit: http://localhost:3000
(note that the default basic auth password is specified in env.rb
unless provided via environment variable)
You should see the dashboard in all its glory!
cp env.default.sh env.sh
Then edit env.sh
with your desired credentials
source env.sh && docker-compose up --build
then visit: http://localhost:3000
(note that the basic auth username is blank and the password is the one specified in env.sh
)
Enjoy,
@makevoid