Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

no column named eur_balance #12

Open
khwerhahn opened this issue Nov 18, 2017 · 1 comment
Open

no column named eur_balance #12

khwerhahn opened this issue Nov 18, 2017 · 1 comment

Comments

@khwerhahn
Copy link

Hi,

after launching cointrol-trader the following error message comes up:

table bitstamp_balance has no column named eur_balance

Probably an api change?

@schoubi
Copy link

schoubi commented Dec 8, 2017

EUR is not available, you should add the column by yourself :

~/Cointrol/cointrol $ sqlite3 cointrol.sqlite3 
sqlite> alter table bitstamp_balance add column eur_balance decimal;
sqlite> alter table bitstamp_balance add column eur_available decimal;
sqlite> alter table bitstamp_balance add column eur_reserved decimal;

For cointrol-trader to work, you also need to add XRP :

sqlite> alter table bitstamp_balance add column xrp_balance decimal;
sqlite> alter table bitstamp_balance add column xrp_available decimal;
sqlite> alter table bitstamp_balance add column xrp_reserved decimal;

But then, interface is a bit messy....
The price in the list of your transactions and orders are effectively in euro, but marked as USD...
Last price is USD...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants