Bitcoin Forum
April 26, 2024, 12:55:48 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 [46] 47 48 49 50 »
  Print  
Author Topic: ICBIT Derivatives Market (USD/BTC futures trading) - LIVE  (Read 97627 times)
Fireball (OP)
Hero Member
*****
Offline Offline

Activity: 674
Merit: 500


View Profile WWW
August 31, 2013, 06:56:17 AM
Last edit: August 31, 2013, 08:08:49 AM by Fireball
 #901

There seem to be networking problems in the datacenter now as the site is unreachable. We are working to resolve the issues.

EDIT: All problems resolved, all servers work as expected.

Margin trading platform OrderBook.net (ICBIT): https://orderbook.net
Follow us in Twitter: https://twitter.com/orderbooknet
1714136148
Hero Member
*
Offline Offline

Posts: 1714136148

View Profile Personal Message (Offline)

Ignore
1714136148
Reply with quote  #2

1714136148
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
random_cat
Newbie
*
Offline Offline

Activity: 30
Merit: 0


View Profile
August 31, 2013, 08:07:03 AM
 #902

Please do add another hamster to the wheel.  We've got trading to do!
Fireball (OP)
Hero Member
*****
Offline Offline

Activity: 674
Merit: 500


View Profile WWW
September 04, 2013, 06:27:21 PM
 #903

Is it possible to download a list of all transactions made on our account in a programmatic fashion? Full history access in a programmatic way, including time of trade or settlement, price, size, fee paid, etc.

This is a requirement for us to deploy an algo on your system.

Just a heads up that we are implementing this at the moment, will share specification soon.

awesome, glad to hear it.

I just deployed the draft version of the API, and it would be great to listen to your feedback. I am not publishing specs on the API page because the syntax may change after testing here.

To get all or part of your trades, you need to send the following command:
Code:
socket.emit('message', {
    op: 'get',
    type: 'user_trades',
    limit: 0,
    since: 0
});

where limit is the max number of trades to include in the reply (it's currently limited to 500 if you don't specify it), and since is the timestamp after which you want to get trades. It's possible to omit timestamp or set it to 0 to receive data starting from the very first trade.

Reply will come as
Code:
	channel: 'user_trades',
op: 'private',
private: 'user_trades',
user_trades: [array of user trades]

Please try it and let me know if something needs to be changed. For example, if you dislike the since/limit approach.

Margin trading platform OrderBook.net (ICBIT): https://orderbook.net
Follow us in Twitter: https://twitter.com/orderbooknet
qxzn
Hero Member
*****
Offline Offline

Activity: 609
Merit: 505



View Profile
September 07, 2013, 08:05:09 AM
 #904

Is it possible to download a list of all transactions made on our account in a programmatic fashion? Full history access in a programmatic way, including time of trade or settlement, price, size, fee paid, etc.

This is a requirement for us to deploy an algo on your system.

Just a heads up that we are implementing this at the moment, will share specification soon.

awesome, glad to hear it.

I just deployed the draft version of the API, and it would be great to listen to your feedback. I am not publishing specs on the API page because the syntax may change after testing here.

To get all or part of your trades, you need to send the following command:
Code:
socket.emit('message', {
    op: 'get',
    type: 'user_trades',
    limit: 0,
    since: 0
});

where limit is the max number of trades to include in the reply (it's currently limited to 500 if you don't specify it), and since is the timestamp after which you want to get trades. It's possible to omit timestamp or set it to 0 to receive data starting from the very first trade.

Reply will come as
Code:
	channel: 'user_trades',
op: 'private',
private: 'user_trades',
user_trades: [array of user trades]

Please try it and let me know if something needs to be changed. For example, if you dislike the since/limit approach.

Since/limit is great, it's how some other exchanges work and it will work for us. This looks like it will probably be good, but can you also share an example of an entry from the array of user trades?

It may be a little while before we can get to implementing this. We haven't had icbit high on our priority list before now because we knew it didn't have this feature. Since then we've dug ourselves into a few other projects. I will let you know if we have any probs when we actually do get around to it.
Fireball (OP)
Hero Member
*****
Offline Offline

Activity: 674
Merit: 500


View Profile WWW
September 07, 2013, 10:52:55 AM
 #905

Is it possible to download a list of all transactions made on our account in a programmatic fashion? Full history access in a programmatic way, including time of trade or settlement, price, size, fee paid, etc.

This is a requirement for us to deploy an algo on your system.

Just a heads up that we are implementing this at the moment, will share specification soon.

awesome, glad to hear it.

I just deployed the draft version of the API, and it would be great to listen to your feedback. I am not publishing specs on the API page because the syntax may change after testing here.

To get all or part of your trades, you need to send the following command:
Code:
socket.emit('message', {
    op: 'get',
    type: 'user_trades',
    limit: 0,
    since: 0
});

where limit is the max number of trades to include in the reply (it's currently limited to 500 if you don't specify it), and since is the timestamp after which you want to get trades. It's possible to omit timestamp or set it to 0 to receive data starting from the very first trade.

Reply will come as
Code:
	channel: 'user_trades',
op: 'private',
private: 'user_trades',
user_trades: [array of user trades]

Please try it and let me know if something needs to be changed. For example, if you dislike the since/limit approach.

Since/limit is great, it's how some other exchanges work and it will work for us. This looks like it will probably be good, but can you also share an example of an entry from the array of user trades?

It may be a little while before we can get to implementing this. We haven't had icbit high on our priority list before now because we knew it didn't have this feature. Since then we've dug ourselves into a few other projects. I will let you know if we have any probs when we actually do get around to it.

Sure, an entry in the array of user trades:
Code:
	market: 1,
ticker: <TICKER_ID>,
ts: <TIMESTAMP>,
sid: <SESSION_ID>,
tid: <TRADE_ID>,
price: <PRICE>,
qty: <QTY>,
buy: <BUY>
where <BUY> is 1 for buy and 0 for sell type of trade.

Margin trading platform OrderBook.net (ICBIT): https://orderbook.net
Follow us in Twitter: https://twitter.com/orderbooknet
sisyphe
Newbie
*
Offline Offline

Activity: 13
Merit: 0


View Profile
September 10, 2013, 06:11:03 PM
 #906

Icbit is down for me. Is it related to the fact that Gox is also down ? DDoS ?
Fireball (OP)
Hero Member
*****
Offline Offline

Activity: 674
Merit: 500


View Profile WWW
September 10, 2013, 08:46:23 PM
 #907

Icbit is down for me. Is it related to the fact that Gox is also down ? DDoS ?

"It's just you" ;-). We are not getting any alerts from the monitoring service.

Margin trading platform OrderBook.net (ICBIT): https://orderbook.net
Follow us in Twitter: https://twitter.com/orderbooknet
Fireball (OP)
Hero Member
*****
Offline Offline

Activity: 674
Merit: 500


View Profile WWW
September 13, 2013, 08:42:38 PM
 #908

I committed a minor update to the SharpTrader project which introduced subscription API method, as there were questions regarding its usage.

Margin trading platform OrderBook.net (ICBIT): https://orderbook.net
Follow us in Twitter: https://twitter.com/orderbooknet
Fireball (OP)
Hero Member
*****
Offline Offline

Activity: 674
Merit: 500


View Profile WWW
September 16, 2013, 08:24:32 PM
 #909

Three contracts expired today:

September's BTC/USD rate futures BUU3 settled at $139.80, total trading volume is an amazing $1'530'810.

Bitcoin difficulty futures DFU3 settled at 112'628, total trading volume is 1007 contracts.

S&P500 index futures contract ESU3 settled at 1696.50, total trading volume is 640 contracts.


Thank you for trading!

Margin trading platform OrderBook.net (ICBIT): https://orderbook.net
Follow us in Twitter: https://twitter.com/orderbooknet
BitLTC
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
September 23, 2013, 04:17:00 PM
 #910

Greetings,

Could you please let me know, are you going to add the support for:
1) options
2) litecoin funding method
3) bitcoin/litecoin futures with the settlement in litecoin?

Thanks!
Fireball (OP)
Hero Member
*****
Offline Offline

Activity: 674
Merit: 500


View Profile WWW
September 23, 2013, 08:24:06 PM
 #911

Greetings,

Could you please let me know, are you going to add the support for:
1) options
2) litecoin funding method
3) bitcoin/litecoin futures with the settlement in litecoin?

Thanks!

Hello!

1) Options - yes, but that's a medium term plan
2) No
3) You're the first trader asking for BTC/LTC futures settled in LTC. Everyone else are asking about BTC/LTC settled in BTC.

Margin trading platform OrderBook.net (ICBIT): https://orderbook.net
Follow us in Twitter: https://twitter.com/orderbooknet
Fireball (OP)
Hero Member
*****
Offline Offline

Activity: 674
Merit: 500


View Profile WWW
September 26, 2013, 06:57:49 PM
 #912

Logs page finally received an update, and now you are able to see your full trading and money history by selecting the date range.

Margin trading platform OrderBook.net (ICBIT): https://orderbook.net
Follow us in Twitter: https://twitter.com/orderbooknet
Fireball (OP)
Hero Member
*****
Offline Offline

Activity: 674
Merit: 500


View Profile WWW
September 30, 2013, 07:44:01 PM
 #913

Logs page finally received an update, and now you are able to see your full trading and money history by selecting the date range.

Problem with displaying logs in Firefox browser are resolved. Thank you for testing and bug reporting!

Margin trading platform OrderBook.net (ICBIT): https://orderbook.net
Follow us in Twitter: https://twitter.com/orderbooknet
Fireball (OP)
Hero Member
*****
Offline Offline

Activity: 674
Merit: 500


View Profile WWW
October 15, 2013, 09:39:47 PM
 #914

DIFF-10.13 expired today, settlement difficulty value was 189281.
BTC/USD-10.13 expired 2013-10-14, the 24H VWAP MtGox price was $149.87


Thank you for trading!

Margin trading platform OrderBook.net (ICBIT): https://orderbook.net
Follow us in Twitter: https://twitter.com/orderbooknet
BitLTC
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
October 31, 2013, 07:51:13 AM
 #915

Hi Fireball,

I've tried trading one contract at ICBIT (BUX3), and have a question related to fees.
The info page on icbit website (https://icbit.se/BUX3) says the following:
Quote
0.0001 BTC for 1 contract trade. Clearing fee is 0.0001 BTC for each scheduled clearing of 1 contract. These fees are subject to change.
My question is: does ICBIT charge clearing fee every day? How often the clearing occurs?
I sold only 1 contract, so the fee I was charged is only 0.0001.
In case if I sell 100 contracts, will I be charged 0.01 every day?

Thank you.
Stephen Gornick
Legendary
*
Offline Offline

Activity: 2506
Merit: 1010


View Profile
October 31, 2013, 03:46:24 PM
 #916

My question is: does ICBIT charge clearing fee every day? How often the clearing occurs?
I sold only 1 contract, so the fee I was charged is only 0.0001.
In case if I sell 100 contracts, will I be charged 0.01 every day?

Quote
Clearings happen at 20:00 GMT and 08:00 GMT,
- https://icbit.se/futures

So, X2.

 .... your 100 contracts cost $0.02 per day  (100 contracts X 0.0001 BTC X 2 clearings per day).

That is specific to BUX3.  Other BTC/USD contracts for durations further out don't have that daily clearing.  Also, some larger traders have enough volume to get a discount on that fee (both clearing fee and per-contract trx fee).

Unichange.me

            █
            █
            █
            █
            █
            █
            █
            █
            █
            █
            █
            █
            █
            █
            █
            █


Fireball (OP)
Hero Member
*****
Offline Offline

Activity: 674
Merit: 500


View Profile WWW
October 31, 2013, 10:43:44 PM
 #917

Also, some larger traders have enough volume to get a discount on that fee (both clearing fee and per-contract trx fee).

Discounts table is available here: https://icbit.se/discount

Margin trading platform OrderBook.net (ICBIT): https://orderbook.net
Follow us in Twitter: https://twitter.com/orderbooknet
picobit
Hero Member
*****
Offline Offline

Activity: 547
Merit: 500


Decor in numeris


View Profile
November 01, 2013, 08:56:09 AM
 #918


 .... your 100 contracts cost $0.02 per day  (100 contracts X 0.0001 BTC X 2 clearings per day).


Didn't you mean 0.02 BTC per day.  That is 200 times more expensive.

With some of the other futures the fee is really heavy.  If you deposit X BTC and buy BUZ3 or BUH4, you have already used 10% of the deposited BTC on fees, and will use another 10% when selling.  On top of that comes the large spread.  Normally with such a large spread it would pay to make a market-making bot that places orders inside both sides of the spread (and tries to keep the total balance close to zero).  Such bots would reduce the spread, but the fees makes it impossible to do that.
BitLTC
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
November 01, 2013, 09:23:07 AM
 #919


 .... your 100 contracts cost $0.02 per day  (100 contracts X 0.0001 BTC X 2 clearings per day).


Didn't you mean 0.02 BTC per day.  That is 200 times more expensive.


Thanks for your replies. I find that absurdly expensive. The cost of 'hedging' is too high to use it.
picobit
Hero Member
*****
Offline Offline

Activity: 547
Merit: 500


Decor in numeris


View Profile
November 01, 2013, 11:56:34 AM
 #920

Thanks for your replies. I find that absurdly expensive. The cost of 'hedging' is too high to use it.

It is indeed quite expensive!  But then Bitcoin is extremely volatile, so if you hedge against a risk that risk is unusually large (hence the high price of hedging) or if you are speculating the potential gain is large.

But I agree that the price has become absurd.  As the price increases, the contracts become smaller and smaller (measured in BTC) while the fee stays the same.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 [46] 47 48 49 50 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!