Search content
Sort by

Showing 14 of 14 results by mojBitcoin.si
Post
Topic
Board Service Announcements
Re: zTrader - Android trading app
by
mojBitcoin.si
on 03/02/2016, 14:08:42 UTC

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

Works for me. Check for updates again.
http://i.imgur.com/8mxwefU.jpg

Indeed.It works now. Thnx.

Tomi
Post
Topic
Board Project Development
Re: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux]
by
mojBitcoin.si
on 05/09/2014, 10:36:25 UTC
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);
     }
  }
Post
Topic
Board Project Development
Re: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux]
by
mojBitcoin.si
on 04/09/2014, 11:13:55 UTC
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
Post
Topic
Board Project Development
Re: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux]
by
mojBitcoin.si
on 04/09/2014, 08:04:45 UTC
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
 
Post
Topic
Board Project Development
Re: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux]
by
mojBitcoin.si
on 12/02/2014, 23:05:26 UTC
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.
Post
Topic
Board Project Development
Re: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux]
by
mojBitcoin.si
on 31/01/2014, 21:36:59 UTC
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.


 
Post
Topic
Board Other languages/locations
Re: Slovenija / Slovenia
by
mojBitcoin.si
on 03/12/2013, 21:02:25 UTC
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 ...
Post
Topic
Board Services
Re: Seeking translators for Hive wallet
by
mojBitcoin.si
on 27/11/2013, 10:58:18 UTC
Looks nice & simple. Great work!

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

regards,
Tomi
Post
Topic
Board Beginners & Help
Topic OP
MojBitcoin.si
by
mojBitcoin.si
on 27/11/2013, 10:13:23 UTC
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
Post
Topic
Board Beginners & Help
Re: Chinese will take over the Bitcoin Market.
by
mojBitcoin.si
on 07/05/2013, 10:24:54 UTC
For Chinese people, Bitcoin is more interesting than Chinacoin. They need/want access to worldwide currency.

t.
Post
Topic
Board Beginners & Help
Re: Bitcoin Businesses and Developers, Let's Get Started!
by
mojBitcoin.si
on 07/05/2013, 10:16:26 UTC
Hi,

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

regards,
t.
Post
Topic
Board Altcoin Discussion
Re: Ripple: How to get free XRP??
by
mojBitcoin.si
on 07/05/2013, 09:30:19 UTC
r4khTZC2JZW4UCgLN3spqimWuiPqcNUq6M