Bitcoin Forum
May 05, 2024, 01:56:21 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Trading risks  (Read 2438 times)
sharepapa (OP)
Newbie
*
Offline Offline

Activity: 8
Merit: 0


View Profile
March 03, 2011, 01:43:38 PM
 #1

Hi,
I was thinking of opening a shop along the lines of silk road for my country. I've been in this business for a while and think this currency could solve a few headaches for me. I had a few questions though.

Since I usually sell in euros, and I would have to set my price based on the eur/bit conversion rate, where should I get this rate from?
(different views from mtgox/bitcoin exchange etc.)

With the wildly changing value of bitcoins due to speculation, I would be trading real goods for potentially worthless coins as opposed to hard cash currently. Is this a risk I can avoid? The general consensus is that this will even out; what kind of time frame (I know that by offering goods in real terms does help this so Im onboard)

If my business takes off under the new currency, could I set up a legitimate currency exchange along the lines of mtgox in my country to float in and out of the real economy? Or would I be better just pitch bitcoins for cash using the highest market exchange rate + 2%?
(Or something similar)

I want to believe in this thing. I used to run a head shop online before paypal decided they didnt like my (fully legal) business model.
I would like to not have morals pushed down my throat by the monetary system when it so obviously corrupt itself.
Just trying to assess the currency risks.

Thanks for your help
1714917381
Hero Member
*
Offline Offline

Posts: 1714917381

View Profile Personal Message (Offline)

Ignore
1714917381
Reply with quote  #2

1714917381
Report to moderator
1714917381
Hero Member
*
Offline Offline

Posts: 1714917381

View Profile Personal Message (Offline)

Ignore
1714917381
Reply with quote  #2

1714917381
Report to moderator
1714917381
Hero Member
*
Offline Offline

Posts: 1714917381

View Profile Personal Message (Offline)

Ignore
1714917381
Reply with quote  #2

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

Posts: 1714917381

View Profile Personal Message (Offline)

Ignore
1714917381
Reply with quote  #2

1714917381
Report to moderator
1714917381
Hero Member
*
Offline Offline

Posts: 1714917381

View Profile Personal Message (Offline)

Ignore
1714917381
Reply with quote  #2

1714917381
Report to moderator
1714917381
Hero Member
*
Offline Offline

Posts: 1714917381

View Profile Personal Message (Offline)

Ignore
1714917381
Reply with quote  #2

1714917381
Report to moderator
Nefario
Hero Member
*****
Offline Offline

Activity: 602
Merit: 512


GLBSE Support support@glbse.com


View Profile WWW
March 03, 2011, 01:56:02 PM
 #2

check out the anonymous money, anonymous exchane article on weekly.co.nr

PGP key id at pgp.mit.edu 0xA68F4B7C

To get help and support for GLBSE please email support@glbse.com
slush
Legendary
*
Offline Offline

Activity: 1386
Merit: 1097



View Profile WWW
March 03, 2011, 01:59:58 PM
 #3

If you don't want to take risk of bitcoin price fluctuations, you should quote your BTC prices using actual exchange ratio and "hedge" yourself with counter trades on mtgox. That means - immediately as you accept bitcoins, you sell the same amount on mtgox.

This can be fully automated and then you can receive Bitcoins, but don't take the exchange risk.

mndrix
Michael Hendricks
VIP
Sr. Member
*
Offline Offline

Activity: 447
Merit: 258


View Profile
March 03, 2011, 02:56:59 PM
 #4

If my business takes off under the new currency, could I set up a legitimate currency exchange along the lines of mtgox in my country to float in and out of the real economy? Or would I be better just pitch bitcoins for cash using the highest market exchange rate + 2%?
(Or something similar)

You could use CoinCard to automatically convert your BTC into a PayPal payment to yourself.  The fees are about 1% on large transactions.
Cryptoman
Hero Member
*****
Offline Offline

Activity: 726
Merit: 500



View Profile
March 03, 2011, 05:35:23 PM
Last edit: March 03, 2011, 05:46:53 PM by Cryptoman
 #5

Unfortunately, a lot of the world's commerce is still tied to the dollar, and the most liquid BTC exchange is USD-based.  I use the following script to retrieve recent trades from MtGox.com and calculate a volume-weighted average over the last 48 hours.  This gives an exchange rate of BTC<->USD which is reasonably steady and is based on the most liquid (currently) BTC exchange.  You could modify the script to pull in the current USD<->EUR rate and then use it as a basis for setting prices.

Code:
#!/usr/bin/env ruby
require 'open-uri'
require 'json'
total_vol = 0.0
price_vol_product = 0.0
quote_str = open('http://mtgox.com/code/data/getTrades.php').read
quotes = JSON.parse(quote_str)
#puts quotes
quotes.each do |q|
   price_vol_product += q["price"] * q["amount"]
   total_vol += q["amount"]
end
usd_per_btc = price_vol_product/total_vol
puts "Exchange rate: " + usd_per_btc.to_s

[edit] Oh, and please do consider setting up an exchange in your area!  The more the better.  There are a number of directories of exchangers:

https://en.bitcoin.it/wiki/Category:Exchanges
http://bitcoincambio.com/exchangers
http://tradebitcoin.com/

You can either use one of them or list yourself if you set up your own.

"A small body of determined spirits fired by an unquenchable faith in their mission can alter the course of history." --Gandhi
sharepapa (OP)
Newbie
*
Offline Offline

Activity: 8
Merit: 0


View Profile
March 03, 2011, 06:57:07 PM
 #6

Thanks for the tips. yea, exchange rates would be half the problem, but a currency conversion from euro to usd to bitcoins is just a lot of hassle. if the business worked out, I imagine I would have a lot of bit coins and taking time to change them with mtgox or the like would be  a hassle. So setting up an exchange or a cash for coins where I am would be a massive compliment to my business anyway so is definitely the way I would like to go. I suppose I could do both until i reached a critical mass of say a few thousand coins, then start small exchange for up to 300 euro or the like. Im sure there would still be enough cash to hold the business afloat while i build up that side of it.



morpheus
Full Member
***
Offline Offline

Activity: 164
Merit: 100


View Profile
March 03, 2011, 07:42:09 PM
 #7

Bitcoin-central exchanges bitcoin to euros: https://bitcoin-central.net/

Not as much volume as Mt Gox though.
caveden
Legendary
*
Offline Offline

Activity: 1106
Merit: 1004



View Profile
March 04, 2011, 08:43:04 AM
 #8

Bitcoin-central exchanges bitcoin to euros: https://bitcoin-central.net/

And their source code is open. You could use it to create your own exchange if you want.
eMansipater
Sr. Member
****
Offline Offline

Activity: 294
Merit: 273



View Profile WWW
March 04, 2011, 08:33:55 PM
 #9

If you don't want to take risk of bitcoin price fluctuations, you should quote your BTC prices using actual exchange ratio and "hedge" yourself with counter trades on mtgox. That means - immediately as you accept bitcoins, you sell the same amount on mtgox.

This can be fully automated and then you can receive Bitcoins, but don't take the exchange risk.
I'm very interested in offering bitcoin for cash locally, but not wanting to do any speculating.  Any chance someone would want to automate a white-market website like this?  I'm happy to offer up real world identity and earn trust the old fashioned way--I just don't want to headache of watching the market 24/7 and don't have the technical skills to implement this myself.

If you found my post helpful, feel free to send a small tip to 1QGukeKbBQbXHtV6LgkQa977LJ3YHXXW8B
Visit the BitCoin Q&A Site to ask questions or share knowledge.
0.009 BTC too confusing?  Use mBTC instead!  Details at www.em-bit.org or visit the project thread to help make Bitcoin prices more human-friendly.
slush
Legendary
*
Offline Offline

Activity: 1386
Merit: 1097



View Profile WWW
March 04, 2011, 09:44:12 PM
 #10

I'm very interested in offering bitcoin for cash locally, but not wanting to do any speculating.  Any chance someone would want to automate a white-market website like this?  I'm happy to offer up real world identity and earn trust the old fashioned way--I just don't want to headache of watching the market 24/7 and don't have the technical skills to implement this myself.

What _exactly_ do you need? The actual BTC/USD quote is available on mtgox and if you want to cover the risk with counter trades, you can do it by few clicks. You can even counter trade the amount firstly on the mtgox and then use the final rate as input for your real-world trade.

sharepapa (OP)
Newbie
*
Offline Offline

Activity: 8
Merit: 0


View Profile
March 05, 2011, 12:41:50 AM
 #11

Can't get on that bitcoin central at all... Anyone loose money there?

Getting a FFUU reddit face.
eMansipater
Sr. Member
****
Offline Offline

Activity: 294
Merit: 273



View Profile WWW
March 05, 2011, 02:43:31 AM
 #12

I'm very interested in offering bitcoin for cash locally, but not wanting to do any speculating.  Any chance someone would want to automate a white-market website like this?  I'm happy to offer up real world identity and earn trust the old fashioned way--I just don't want to headache of watching the market 24/7 and don't have the technical skills to implement this myself.

What _exactly_ do you need? The actual BTC/USD quote is available on mtgox and if you want to cover the risk with counter trades, you can do it by few clicks. You can even counter trade the amount firstly on the mtgox and then use the final rate as input for your real-world trade.
This is essentially what I do now for the 5 or 6 people I've helped out--purchase the coins first, then deliver them.  This limits my buying power to the amount of USD that I tend to have sitting in my Mt. Gox account (happily not much since I put that straight into Bitcoin as soon as I got it there and it's done beautifully since), or puts a significant delay on if I use something like bitcoin4cash (since I have to wait to see if the cash got lost in the mail.  happily it hasn't so far, but the process still takes weeks).  I already run a business, so liquid capital sitting in dollars somewhere is a waste for me.  The advantage of a trust relationship would be that I could sell coins with a decent turnaround, and then send the cash I took in from the customer on later.  Obviously, this isn't a service you'd want to offer anonymously.  But I'm new to financial services in general so maybe there's something I haven't thought through here.

If you found my post helpful, feel free to send a small tip to 1QGukeKbBQbXHtV6LgkQa977LJ3YHXXW8B
Visit the BitCoin Q&A Site to ask questions or share knowledge.
0.009 BTC too confusing?  Use mBTC instead!  Details at www.em-bit.org or visit the project thread to help make Bitcoin prices more human-friendly.
dirtyfilthy
Member
**
Offline Offline

Activity: 77
Merit: 10


View Profile
March 06, 2011, 09:05:07 PM
 #13

I'm very interested in offering bitcoin for cash locally

http://www.tradebitcoin.com/
eMansipater
Sr. Member
****
Offline Offline

Activity: 294
Merit: 273



View Profile WWW
March 06, 2011, 09:52:42 PM
 #14

I'm very interested in offering bitcoin for cash locally

http://www.tradebitcoin.com/

Already on there Smiley

If you found my post helpful, feel free to send a small tip to 1QGukeKbBQbXHtV6LgkQa977LJ3YHXXW8B
Visit the BitCoin Q&A Site to ask questions or share knowledge.
0.009 BTC too confusing?  Use mBTC instead!  Details at www.em-bit.org or visit the project thread to help make Bitcoin prices more human-friendly.
Frida25xang
Newbie
*
Offline Offline

Activity: 1
Merit: 0



View Profile
March 15, 2011, 06:05:39 AM
 #15

Obviously there are lots of trading risk. One should be careful in trading business. You have to believe in this thing.
Pages: [1]
  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!