Bitcoin Forum
October 01, 2025, 07:20:38 AM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Economy / Service Announcements / Re: zTrader - Android trading app on: February 03, 2016, 02:08:42 PM

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.
2  Economy / Service Announcements / Re: zTrader - Android trading app on: February 02, 2016, 09:06:24 AM
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.
3  Bitcoin / Project Development / Re: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux] on: September 08, 2014, 10:25:26 AM
With new build on mac, AsksVolume and AsksPrice still return 0

Works for me. Check for updates again.


Indeed.It works now. Thnx.

Tomi
4  Bitcoin / Project Development / Re: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux] on: September 05, 2014, 10:36:25 AM
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:
Code:
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

Code:
   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);
     }
  }
5  Bitcoin / Project Development / Re: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux] on: September 04, 2014, 11:13:55 AM
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.

Code:
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.exe

Thnx 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
6  Bitcoin / Project Development / Re: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux] on: September 04, 2014, 08:04:45 AM
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.

Code:
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
 
7  Bitcoin / Project Development / Re: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux] on: February 12, 2014, 11:05:26 PM
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. Wink

Great work IGHOR and thank you,

T.
8  Bitcoin / Project Development / Re: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux] on: January 31, 2014, 09:36:59 PM
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.


 
9  Local / Other languages/locations / Re: Slovenija / Slovenia on: December 03, 2013, 09:02:25 PM
Kje lahko pametno zapravite BTC?

- www.eksotika.si - eksotične rastline
- http://shop.virtua-it.si - routerji Mikrotik, Ubiquiti, Fonera, Teracom, ...
- www.loop-acrocup.com - poleti z jadralnimi padali
- www.zalivalcek.com - Internet Zalivalček, ki poskrbi, da bodo vaše sobne rastline lepo uspevale
- www.farmakode.si - Farma kode - Spletne, Android in Bitcoin rešitve

more to come ...
10  Economy / Services / Re: Seeking translators for Hive wallet on: November 27, 2013, 10:58:18 AM
Looks nice & simple. Great work!

Is slovenian translation already in progress? If not I will be happy to translate.

regards,
Tomi
11  Other / Beginners & Help / MojBitcoin.si on: November 27, 2013, 10:13:23 AM
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. Smiley

Regards,
Tomi
12  Other / Beginners & Help / Re: Chinese will take over the Bitcoin Market. on: May 07, 2013, 10:24:54 AM
For Chinese people, Bitcoin is more interesting than Chinacoin. They need/want access to worldwide currency.

t.
13  Other / Beginners & Help / Re: Bitcoin Businesses and Developers, Let's Get Started! on: May 07, 2013, 10:16:26 AM
Hi,

MojBitcoin.si is an effort to spread the word about Bitcoin in Slovenia.

regards,
t.
14  Alternate cryptocurrencies / Altcoin Discussion / Re: Ripple: How to get free XRP?? on: May 07, 2013, 09:30:19 AM
r4khTZC2JZW4UCgLN3spqimWuiPqcNUq6M
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!