Show Posts
|
Pages: [1]
|
I have likewise given 5 stars and a stellar review, but developer is not very responsive.
Discouraged by the recent change that shows balances as total balance instead of available balance. Are you seeing this to omojBitcoin.si or is this just me?
TT
I don't know how it was before, but now, I see total balance (physical) and I can only place orders within that amount - cannot use leverage. T.
|
|
|
Hi,
As I already said on google play: this is the best app for crypto trading. period.
I have one question: how can I use margin and exchange trading on Bitfinex simultaneously? Currently I have api key that allows margin trading and ztrader shows 'positions' button, that only prints active positions (i cannot close it with a button or at least transfer the values into the form).
What I would like is: Trade on exchange or switch to margin trading where I could also open / close positions (currently I cannot place orders for higher amount than my balance) It would also be neat to display tradable balance, etc...
Maybe I just don't understand something?
Thnx, T.
|
|
|
With new build on mac, AsksVolume and AsksPrice still return 0
Works for me. Check for updates again.  Indeed.It works now. Thnx. Tomi
|
|
|
some thoughts, nice to have: - trader.get("10MinBuyDivSell") changed to trader.get("BuyToSell", minutes) so we can define timeframe we are interested in. Same for 10MinVolume. - trader.get("NoOfTrades", minutes) - number of transactions in last x minutes. - a way to access LastTrades: trader.get("LastTrades", minutes) - to retrieve all trades in last X minutes. - a way to access orderbook: trader.get("Orderbook", fromPrice, toPrice) - to retrieve all orders from orderbook between specified price range. - buy and sell commands should return ID, so we can later check / cancel specific order
Currently there is limitation to 10 minutes and later I'll add intervals. Give me examples how you want to use retrieved orders using JavaScript. >buy and sell commands should return ID I planned to make virtual IDs, so it will be returned instantly. With new build on mac, AsksVolume and AsksPrice still return 0 Something like that: var spikeOrder; var lastPrice = trader.get("LastPrice"); var asksPrice = trader.get("AsksPrice",100); // get the price 100 coins away
if (asksPrice - lastPrice > 10) { // if price diff is worth a trade var orders = trader.get("Orderbook", asksPrice-1, asksPrice+1); // get the orders around target price for (i = 0; i < orders.length; i++) { if (orders[i].volume > 10) { // check for big orders asksPrice = orders[i].price - 0.01; // set target price in front of big order break; } } if (spikeOrder) { // remove previous order trader.cancelOrder(spikeOrder); } spikeOrder = trader.sell(1, asksPrice); // place order }
or var orders = trader.get("Orderbook", lastPrice, lastPrice+30); // get ask orders for (i = 0; i < orders.length; i++) { if (orders[i].volume > 50) { // check for walls trader.say("Ask wall " + orders[i].volume + " at " + orders[i].price); } }
|
|
|
Hi IGHOR! Again: Thank you for all your efforts. I'm trying to get values for AsksPrice and AsksVolume, but they return 0. It is the same for the BidsPrice and BidsVolume. function checkOrderbook() {
var lastPrice = trader.get("LastPrice"); var asksPrice = trader.get("AsksPrice",500); var asksVolume = trader.get("AsksVolume", 500); // at lastPrice 476
trader.log("lastPrice: ", lastPrice); // returns 476 trader.log("asksPrice: ", asksPrice); // returns 0 trader.log("asksVolume: ", asksVolume); // returns 0
}
My orderbook is set to 1000 rows so the requested orders are visible. some thoughts, nice to have: - trader.get("10MinBuyDivSell") changed to trader.get("BuyToSell", minutes) so we can define timeframe we are interested in. Same for 10MinVolume. - trader.get("NoOfTrades", minutes) - number of transactions in last x minutes. - a way to access LastTrades: trader.get("LastTrades", minutes) - to retrieve all trades in last X minutes. - a way to access orderbook: trader.get("Orderbook", fromPrice, toPrice) - to retrieve all orders from orderbook between specified price range. - buy and sell commands should return ID, so we can later check / cancel specific order That's all for now i think, i'll play around some more. thnx, Tomi Thanks for suggestions and bug report. Check private build with fixes: https://dl.dropboxusercontent.com/u/860231/QtBitcoinTrader.exeThnx for quick reply. Unfortunately I'm on mac. I can wait, no problem. If you need quick feedback, I can setup pc and try. Tomi
|
|
|
Hi IGHOR! Again: Thank you for all your efforts. I'm trying to get values for AsksPrice and AsksVolume, but they return 0. It is the same for the BidsPrice and BidsVolume. function checkOrderbook() {
var lastPrice = trader.get("LastPrice"); var asksPrice = trader.get("AsksPrice",500); var asksVolume = trader.get("AsksVolume", 500); // at lastPrice 476
trader.log("lastPrice: ", lastPrice); // returns 476 trader.log("asksPrice: ", asksPrice); // returns 0 trader.log("asksVolume: ", asksVolume); // returns 0
}
My orderbook is set to 1000 rows so the requested orders are visible. some thoughts, nice to have: - trader.get("10MinBuyDivSell") changed to trader.get("BuyToSell", minutes) so we can define timeframe we are interested in. Same for 10MinVolume. - trader.get("NoOfTrades", minutes) - number of transactions in last x minutes. - a way to access LastTrades: trader.get("LastTrades", minutes) - to retrieve all trades in last X minutes. - a way to access orderbook: trader.get("Orderbook", fromPrice, toPrice) - to retrieve all orders from orderbook between specified price range. - buy and sell commands should return ID, so we can later check / cancel specific order That's all for now i think, i'll play around some more. thnx, Tomi
|
|
|
Hi, Today I auto upgraded to new version. Configuration osx, mountain lion, bitstamp. I must confirm a beep bug. It beeps only once per session - same behavior as in previous version. WAVs work fine, so I'm happy. Not really a bug but: Buy / Sell buttons are disabled if you try to buy/sell less than 0.01 BTC (i have only 0.004 on my test account). When BTC hits 10k, that might be a major culprit. Until then I'm ok.  Great work IGHOR and thank you, T.
|
|
|
Hi,
I'm trading on Bitstamp and have problems with "All in", Calculator and "Buy All" rule (I didn't have a chance to try Sell all).
Calculator: Calculations are wrong. You calculate fee from BTC side in BTC, and from USD side in USD. Bitstamp always calculates fees from USD.
All In - Buying btc: When I press "All in" the order is not created, event though populated Total to spend is lower than my Balance. I think program subtracts a fee from Balance and puts the reminder to Total to spend. Since fee is not calculated correctly, this number can be higher than available balance.
Buy All rule: Buy All rule doesn't create an order. It looks like the same problem as above.
I'm using QTtrader v.1.07.96 (BETA) in osx.
Otherwise this is great piece of software. Thnx Ighor. If it helps me make better deals then you can be sure to get a donation.
regards, T.
|
|
|
Looks nice & simple. Great work!
Is slovenian translation already in progress? If not I will be happy to translate.
regards, Tomi
|
|
|
Just to let you know! MojBitcoin.si is new service in Slovenia that enables individuals and companies to exchange BTC for EUR in vice versa. We also provide BitPay integration for merchants and advice on security issues related to Bitcoin, wallets and infrastructure. I hope this is enough for the first post.  Regards, Tomi
|
|
|
For Chinese people, Bitcoin is more interesting than Chinacoin. They need/want access to worldwide currency.
t.
|
|
|
Hi,
MojBitcoin.si is an effort to spread the word about Bitcoin in Slovenia.
regards, t.
|
|
|
r4khTZC2JZW4UCgLN3spqimWuiPqcNUq6M
|
|
|
|