Bitcoin Forum

Economy => Service Announcements => Topic started by: kcrazy on August 22, 2017, 11:27:25 PM



Title: Bitcoin Calculator
Post by: kcrazy on August 22, 2017, 11:27:25 PM
Hi all!

I have just started to build a calculator that converts any amount of BTC to its equivalent price in USD. Also USD to BTC.
Like i said, i am just beginning to code this website, it only supports USD for now.
I need suggestions for which exchange currencies to add, just few important ones.
Also, since i am new to bitcoin, what other data is must necessary to be provided to end users.
I am studied few APIs, if you have any idea, I also need help to choose the best API.

The hyperlink is http://bitcoincalculator.co (http://bitcoincalculator.co)

I will post updates when available.


Thanks






Title: Re: Bitcoin Calculator
Post by: nemgun on August 22, 2017, 11:37:11 PM
Hi all!

I have just started to build a calculator that converts any amount of BTC to its equivalent price in USD. Also USD to BTC.
Like i said, i am just beginning to code this website, it only supports USD for now.
I need suggestions for which exchange currencies to add, just few important ones.
Also, since i am new to bitcoin, what other data is must necessary to be provided to end users.
I am studied few APIs, if you have any idea, I also need help to choose the best API.

The hyperlink is http://bitcoincalculator.co (http://bitcoincalculator.co)

I will post updates when available.


Thanks




Bitcoinaverage is fine if you want to give a global rate, you can use different rates from different exchanges and let the users choose. It would be interesting to do a cron job to get an update of the price every minute and use it instead of sending a query on user side.
You should know that using bitcoin average means that in the case someone dumps bitcoin on a low volume exchange, you will get a fake rate, you should use the exchanges directly, here is a small list :

2    Bitfinex   BTC/USD    $246,667,000    $4033.70    6.54%    Recently
8    Bitstamp   BTC/USD    $95,266,300    $4029.13    2.53%    Recently
10    GDAX   BTC/USD    $88,622,400    $4047.97    2.35%    Recently
13    Gemini   BTC/USD    $68,539,600    $4054.49    1.82%    Recently
22    Kraken   BTC/USD    $41,966,200    $4065.99    1.11%    Recently
31    itBit   BTC/USD    $19,859,900    $4021.90    0.53%    Recently
34    BTCC   BTC/USD    $17,222,400    $4149.99    0.46%    Recently
52    CoinsBank   BTC/USD    $8,225,240    $3921.11    0.22%    Recently
61    HitBTC   BTC/USD    $6,678,150    $4036.67    0.18%    Recently
65    CEX.IO   BTC/USD    $6,003,540    $4192.98    0.16%    Recently
70    Gatecoin   BTC/USD    $5,597,830    $4100.10    0.15%    Recently
90    BTC-X   BTC/USD    $3,886,170    $4050.54    0.10%    Recently
98    xBTCe   BTC/USD    $3,540,630    $4023.40    0.09%    Recently
103    OkCoin Intl.   BTC/USD    $3,205,990    $4318.52    0.08%    Recently
118    BitBays   BTC/USD    $2,450,310    $4109.53    0.06%    Recently
133    Livecoin   BTC/USD    $2,081,400    $4050.00    0.06%    Recently
173    USD X   BTC/USD    $1,193,340    $3924.12    0.03%    Recently
181    BTC Alpha   BTC/USD    $1,070,170    $4035.00    0.03%    Recently
183    Exmo   BTC/USD    $1,058,320    $4015.00    0.03%    Recently
194    Gatehub   BTC/USD    $934,840    $3968.81    0.02%    Recently
210    DCExchange   BTC/USD    $688,478    $4057.30    0.02%    Recently
230    Bitstamp (Ripple Gateway)   BTC/USD    $591,542    $3852.28    0.02%    Recently
261    QuadrigaCX   BTC/USD    $450,369    $4149.99    0.01%    Recently
297    YoBit   BTC/USD    $276,304    $4080.52    0.01%    Recently
328    Lykke Exchange   BTC/USD    $215,453    $4178.93    0.01%    Recently
335    Bitex.la   BTC/USD    $200,568    $4050.00    0.01%    Recently
344    Fargobase   BTC/USD    $187,327    $4429.57    0.00%    Recently
380    LocalTrade   BTC/USD    $129,236    $4101.00    0.00%    Recently
390    BitMEX   BTC/USD    ** $365,317,000    $4050.60    0.00%    Recently
398    Quoine   BTC/USD    ** $277,953    $4061.68    0.00%    Recently

I got it from coinmarketcap, you can also directly use them to get an average rate.

Regarding the features, maybe you can add different currencies and widgets.


Title: Re: Bitcoin Calculator
Post by: ivanst776 on August 22, 2017, 11:54:02 PM
Hi all!

I have just started to build a calculator that converts any amount of BTC to its equivalent price in USD. Also USD to BTC.
Like i said, i am just beginning to code this website, it only supports USD for now.
I need suggestions for which exchange currencies to add, just few important ones.
Also, since i am new to bitcoin, what other data is must necessary to be provided to end users.
I am studied few APIs, if you have any idea, I also need help to choose the best API.

The hyperlink is http://bitcoincalculator.co (http://bitcoincalculator.co)

I will post updates when available.

Thanks

OK! This is a good start and you can improve it of course.

Firstly, of all research if you can convert/calculate the bitcoin to usd and vise versa in real time without needing to touch the button to convert (like google)

Secondly, I would suggest to add more currencies and this would increase the complexity of the website which increase the productivity (like converting btc<=> eth <=> fiat)


Title: Re: Bitcoin Calculator
Post by: btccashacc on August 22, 2017, 11:59:55 PM
So this is only works for 1 Bitcoin or higher right? I've just tested your site and tried to input 0.1 or 2.1 Bitcoin but the result is " Not a valid amount" comparing to my favorite Bitcoin calculator over there you can check even for 1 Satoshi, sometimes people want to calculate a decimal amount since calculating decimal amount is kinda hard, just my suggestion it is better if your site can check decimal or amount that lower than 1 bitcoin.


Title: Re: Bitcoin Calculator
Post by: kcrazy on August 23, 2017, 12:04:23 AM
Hi all!

I have just started to build a calculator that converts any amount of BTC to its equivalent price in USD. Also USD to BTC.
Like i said, i am just beginning to code this website, it only supports USD for now.
I need suggestions for which exchange currencies to add, just few important ones.
Also, since i am new to bitcoin, what other data is must necessary to be provided to end users.
I am studied few APIs, if you have any idea, I also need help to choose the best API.

The hyperlink is http://bitcoincalculator.co (http://bitcoincalculator.co)

I will post updates when available.


Thanks




Bitcoinaverage is fine if you want to give a global rate, you can use different rates from different exchanges and let the users choose. It would be interesting to do a cron job to get an update of the price every minute and use it instead of sending a query on user side.
You should know that using bitcoin average means that in the case someone dumps bitcoin on a low volume exchange, you will get a fake rate, you should use the exchanges directly, here is a small list :

2    Bitfinex   BTC/USD    $246,667,000    $4033.70    6.54%    Recently
8    Bitstamp   BTC/USD    $95,266,300    $4029.13    2.53%    Recently
10    GDAX   BTC/USD    $88,622,400    $4047.97    2.35%    Recently
13    Gemini   BTC/USD    $68,539,600    $4054.49    1.82%    Recently
22    Kraken   BTC/USD    $41,966,200    $4065.99    1.11%    Recently
31    itBit   BTC/USD    $19,859,900    $4021.90    0.53%    Recently
34    BTCC   BTC/USD    $17,222,400    $4149.99    0.46%    Recently
52    CoinsBank   BTC/USD    $8,225,240    $3921.11    0.22%    Recently
61    HitBTC   BTC/USD    $6,678,150    $4036.67    0.18%    Recently
65    CEX.IO   BTC/USD    $6,003,540    $4192.98    0.16%    Recently
70    Gatecoin   BTC/USD    $5,597,830    $4100.10    0.15%    Recently
90    BTC-X   BTC/USD    $3,886,170    $4050.54    0.10%    Recently
98    xBTCe   BTC/USD    $3,540,630    $4023.40    0.09%    Recently
103    OkCoin Intl.   BTC/USD    $3,205,990    $4318.52    0.08%    Recently
118    BitBays   BTC/USD    $2,450,310    $4109.53    0.06%    Recently
133    Livecoin   BTC/USD    $2,081,400    $4050.00    0.06%    Recently
173    USD X   BTC/USD    $1,193,340    $3924.12    0.03%    Recently
181    BTC Alpha   BTC/USD    $1,070,170    $4035.00    0.03%    Recently
183    Exmo   BTC/USD    $1,058,320    $4015.00    0.03%    Recently
194    Gatehub   BTC/USD    $934,840    $3968.81    0.02%    Recently
210    DCExchange   BTC/USD    $688,478    $4057.30    0.02%    Recently
230    Bitstamp (Ripple Gateway)   BTC/USD    $591,542    $3852.28    0.02%    Recently
261    QuadrigaCX   BTC/USD    $450,369    $4149.99    0.01%    Recently
297    YoBit   BTC/USD    $276,304    $4080.52    0.01%    Recently
328    Lykke Exchange   BTC/USD    $215,453    $4178.93    0.01%    Recently
335    Bitex.la   BTC/USD    $200,568    $4050.00    0.01%    Recently
344    Fargobase   BTC/USD    $187,327    $4429.57    0.00%    Recently
380    LocalTrade   BTC/USD    $129,236    $4101.00    0.00%    Recently
390    BitMEX   BTC/USD    ** $365,317,000    $4050.60    0.00%    Recently
398    Quoine   BTC/USD    ** $277,953    $4061.68    0.00%    Recently

I got it from coinmarketcap, you can also directly use them to get an average rate.

Regarding the features, maybe you can add different currencies and widgets.

I really did not take notice of the average rate and possibility of fake rate. Thank you for your advice!


Title: Re: Bitcoin Calculator
Post by: kcrazy on August 23, 2017, 12:12:46 AM
So this only works for 1 Bitcoin or higher right? I've just tested your site and tried to input 0.1 or 2.1 Bitcoin but the result is " Not a valid amount" comparing to my favorite Bitcoin calculator over there you can check even for 1 Satoshi, sometimes people want to calculate a decimal amount since calculating decimal amount is kinda hard, just my suggestion it is better if your site can check decimal or amount that lower than 1 bitcoin.
You are absolutely right. My script allowed digits but ignored decimal points. Thank you for pointing that out!


Title: Re: Bitcoin Calculator
Post by: kcrazy on August 23, 2017, 12:21:02 AM
Hi all!

I have just started to build a calculator that converts any amount of BTC to its equivalent price in USD. Also USD to BTC.
Like i said, i am just beginning to code this website, it only supports USD for now.
I need suggestions for which exchange currencies to add, just few important ones.
Also, since i am new to bitcoin, what other data is must necessary to be provided to end users.
I am studied few APIs, if you have any idea, I also need help to choose the best API.

The hyperlink is http://bitcoincalculator.co (http://bitcoincalculator.co)

I will post updates when available.

Thanks

OK! This is a good start and you can improve it of course.

Firstly, of all research if you can convert/calculate the bitcoin to usd and vise versa in real time without needing to touch the button to convert (like google)

Secondly, I would suggest to add more currencies and this would increase the complexity of the website which increase the productivity (like converting btc<=> eth <=> fiat)

Adding more currencies is definitely a good idea. But about real time conversion, i omitted because i wanted to minimize api calls. But ultimately, real time data is the most required feature. I will find a way to minimize api expenses. ok. Thank you so much!


Title: Re: Bitcoin Calculator
Post by: BluRPie on August 23, 2017, 01:15:28 AM
Hi all!

I have just started to build a calculator that converts any amount of BTC to its equivalent price in USD. Also USD to BTC.
Like i said, i am just beginning to code this website, it only supports USD for now.
I need suggestions for which exchange currencies to add, just few important ones.
Also, since i am new to bitcoin, what other data is must necessary to be provided to end users.
I am studied few APIs, if you have any idea, I also need help to choose the best API.

The hyperlink is http://bitcoincalculator.co (http://bitcoincalculator.co)

I will post updates when available.


Thanks







Great idea, but you are late about 7 years with realisation of this idea. I think that such services already in place. I have this calculator in my Android bitcoin wallets for exmple


Title: Re: Bitcoin Calculator
Post by: xmario on August 23, 2017, 01:17:28 AM
Hi all!

I have just started to build a calculator that converts any amount of BTC to its equivalent price in USD. Also USD to BTC.
Like i said, i am just beginning to code this website, it only supports USD for now.
I need suggestions for which exchange currencies to add, just few important ones.
Also, since i am new to bitcoin, what other data is must necessary to be provided to end users.
I am studied few APIs, if you have any idea, I also need help to choose the best API.

The hyperlink is http://bitcoincalculator.co (http://bitcoincalculator.co)

I will post updates when available.


Thanks







Great idea, but you are late about 7 years with realisation of this idea. I think that such services already in place. I have this calculator in my Android bitcoin wallets for exmple

You are right, but let he try.


Title: Re: Bitcoin Calculator
Post by: klaaas on August 23, 2017, 08:51:41 AM
A price ticker as image could be handy for some. Something like 1USD = https://www.bit-it.eu/btc/?usd=1 BTC


Title: Re: Bitcoin Calculator
Post by: kcrazy on August 23, 2017, 10:53:21 AM
Hi all!

I have just started to build a calculator that converts any amount of BTC to its equivalent price in USD. Also USD to BTC.
Like i said, i am just beginning to code this website, it only supports USD for now.
I need suggestions for which exchange currencies to add, just few important ones.
Also, since i am new to bitcoin, what other data is must necessary to be provided to end users.
I am studied few APIs, if you have any idea, I also need help to choose the best API.

The hyperlink is http://bitcoincalculator.co (http://bitcoincalculator.co)

I will post updates when available.


Thanks







Great idea, but you are late about 7 years with realisation of this idea. I think that such services already in place. I have this calculator in my Android bitcoin wallets for exmple
About 7 years late, huh! Hilarious!!


Title: Re: Bitcoin Calculator
Post by: chestas on August 23, 2017, 11:49:03 AM
But about real time conversion, i omitted because i wanted to minimize api calls. But ultimately, real time data is the most required feature. I will find a way to minimize api expenses. ok. Thank you so much!
send request when a user stopped typing. add setTimeout 1 second to onChange event for example.


Title: Re: Bitcoin Calculator
Post by: Cryptoticker on August 23, 2017, 11:49:53 AM
I like the simple design  8) 8) 8)


Title: Re: Bitcoin Calculator
Post by: nemgun on August 23, 2017, 01:30:27 PM
Hi all!

I have just started to build a calculator that converts any amount of BTC to its equivalent price in USD. Also USD to BTC.
Like i said, i am just beginning to code this website, it only supports USD for now.
I need suggestions for which exchange currencies to add, just few important ones.
Also, since i am new to bitcoin, what other data is must necessary to be provided to end users.
I am studied few APIs, if you have any idea, I also need help to choose the best API.

The hyperlink is http://bitcoincalculator.co (http://bitcoincalculator.co)

I will post updates when available.


Thanks







Great idea, but you are late about 7 years with realisation of this idea. I think that such services already in place. I have this calculator in my Android bitcoin wallets for exmple

You are right, but let he try.

It is always good to encourage people on developing different tools, even if it already exist (preev.com), different providers are always good, and it is good for education and exercise purposes.
But about real time conversion, i omitted because i wanted to minimize api calls. But ultimately, real time data is the most required feature. I will find a way to minimize api expenses. ok. Thank you so much!
send request when a user stopped typing. add setTimeout 1 second to onChange event for example.

Good idea, but it would be better to request the convertion rate from the server instead of requesting infos from a provider on user side, just a side note.


Title: Re: Bitcoin Calculator
Post by: dealung on August 23, 2017, 02:54:33 PM
Good start, I like your site, simple and easy to understand. Suggestions for converting to altcoin as well. For bitcoin prices on the site it refers to the price where?
I will wait for the latest announcement from you.


Title: Re: Bitcoin Calculator
Post by: kcrazy on August 23, 2017, 04:03:32 PM
Good start, I like your site, simple and easy to understand. Suggestions for converting to altcoin as well. For bitcoin prices on the site it refers to the price where?
I will wait for the latest announcement from you.

Thank you for suggesting altcoin. Perhaps, it is better idea to include altcoin as well. The price is provided by BitcoinAveragae for now. I also have credited in the footer section of the site. May be i should put it on top somewhere for more visibility. Thanks again!!


Title: Re: Bitcoin Calculator
Post by: Rahar02 on August 23, 2017, 04:18:40 PM
Well, at least you have tried to, appreciate your efforts. And simplicity is a good idea as the ultimate sophistication.
As there are a lot of bitcoin calculators, it's good to try add some features such as altcoins-bitcoin exchange rate and add more currencies such as Euro, Pounds, jpy and cny. But, I realize api expenses is an obstacle to develop further, hopefully you find a way to maximize your service.


Title: Re: Bitcoin Calculator
Post by: kcrazy on August 23, 2017, 04:35:49 PM
Well, at least you have tried to, appreciate your efforts. And simplicity is a good idea as the ultimate sophistication.
As there are a lot of bitcoin calculators, it's good to try add some features such as altcoins-bitcoin exchange rate and add more currencies such as Euro, Pounds, jpy and cny. But, I realize api expenses is an obstacle to develop further, hopefully you find a way to maximize your service.

Altcoin-bitcoin exchanges was also suggested previously by others. So, i guess this feature will somehow add some value to the application. I think I will take your suggestion to add other currencies like Euro, Pounds etc. Thank you very much. I appreciate your help!!


Title: Re: Bitcoin Calculator
Post by: jhenfelipe on August 24, 2017, 02:05:00 AM
I couldn't see how it really works, it keeps on loading after clicking the button and not giving any result. I don't think it's a connection problem since I could stream online without a buff. Is it just me?

PS. A preev-like site would be good, leveled-up with altcoin would be better. You got pretty good suggestions from others so good luck.


Title: Re: Bitcoin Calculator
Post by: TheCoinFinder on August 24, 2017, 06:56:18 AM
You are almost good to go for your currency converter but it is lacking of altering other usual currencies.
Kindly add Euro,GBP also to make it look like a good converter. Later you would have to bind altcoins like ether,litecoin


Title: Re: Bitcoin Calculator
Post by: kcrazy on August 25, 2017, 09:12:41 PM
You are almost good to go for your currency converter but it is lacking of altering other usual currencies.
Kindly add Euro,GBP also to make it look like a good converter. Later you would have to bind altcoins like ether,litecoin
I took your suggestion and added the missing altcoins and other usual currencies. Thank you for your feedback!!


Title: Re: Bitcoin Calculator
Post by: kcrazy on August 25, 2017, 09:33:42 PM
I couldn't see how it really works, it keeps on loading after clicking the button and not giving any result. I don't think it's a connection problem since I could stream online without a buff. Is it just me?

PS. A preev-like site would be good, leveled-up with altcoin would be better. You got pretty good suggestions from others so good luck.

No, you are right, it was not a connection problem. and yes, people were really helpful and i took their suggestions and implemented. thank you for your comment!!

p.s. link here http://bitcoincalculator.org (http://bitcoincalculator.org)


Title: Re: Bitcoin Calculator
Post by: jhenfelipe on August 25, 2017, 11:05:34 PM
I couldn't see how it really works, it keeps on loading after clicking the button and not giving any result. I don't think it's a connection problem since I could stream online without a buff. Is it just me?

PS. A preev-like site would be good, leveled-up with altcoin would be better. You got pretty good suggestions from others so good luck.

No, you are right, it was not a connection problem. and yes, people were really helpful and i took their suggestions and implemented. thank you for your comment!!

p.s. link here http://bitcoincalculator.org (http://bitcoincalculator.org)
Oh you're using a new link? It says: This domain was recently registered at Namecheap. Please check back later!
I guess your site in this new domain isn't ready yet. Good luck anyway, your site could be a good alternative as well when preev has a problem in the future. Looking forward for more Local currencies.


Title: Re: Bitcoin Calculator
Post by: Tipstar on August 25, 2017, 11:39:39 PM
It's really simple and does the job.
Adding as much crypto as well as fiat would help.
But I'm not being able to input the amount in the box. It's grayed out for me.


Title: Re: Bitcoin Calculator
Post by: kcrazy on August 26, 2017, 10:43:52 AM
I couldn't see how it really works, it keeps on loading after clicking the button and not giving any result. I don't think it's a connection problem since I could stream online without a buff. Is it just me?

PS. A preev-like site would be good, leveled-up with altcoin would be better. You got pretty good suggestions from others so good luck.

No, you are right, it was not a connection problem. and yes, people were really helpful and i took their suggestions and implemented. thank you for your comment!!

p.s. link here http://bitcoincalculator.org (http://bitcoincalculator.org)
Oh you're using a new link? It says: This domain was recently registered at Namecheap. Please check back later!
I guess your site in this new domain isn't ready yet. Good luck anyway, your site could be a good alternative as well when preev has a problem in the future. Looking forward for more Local currencies.

I'm sorry...that's not the correct link! The correct link is http://bitcoincalculator.co (http://bitcoincalculator.co) ... I made an error typing the link. Thank you for your patience!!


Title: Re: Bitcoin Calculator
Post by: sachinunchwal02 on August 26, 2017, 11:12:17 AM
which language you use for this calculator


Title: Re: Bitcoin Calculator
Post by: abhinav_thakur01 on August 26, 2017, 11:52:40 AM
Your enthusiasm is great for this project and you can add EURO, GBP, etc . However if you want to convert any amount of btc to usd then you just need to type "1 BTC = USD" in your web browser and you can see what happens next . I would advise you to do something different .

1 quick question : Suppose I have a text file having some data . To understand the data type just think that you got some email ID(s) or phone numbers in comment section on any social media post, and you just copy pasted it into text file. Now I want to extract all set of phone numbers of that text file to another text file . Let me know which programming language will you use to do this ? If anyone wants to explain, please post a reply and send me the link to this post in inbox if possible .


Title: Re: Bitcoin Calculator
Post by: illusioNiZt on August 26, 2017, 12:05:14 PM
Can we not use the calculator yet? I see few options but no calculate button this would be nice I use google to do btc>usd it works fine not sure how accurate google is dedicated calculator would be nice I will definitely be using it gl with your project.


Title: Re: Bitcoin Calculator
Post by: borishaifa on August 27, 2017, 01:02:01 AM
Actually, I use this calculator http://preev.com/ But I would use any, if there were as many kinds of tokens as possible


Title: Re: Bitcoin Calculator
Post by: Yurickz on August 27, 2017, 05:46:14 AM
Nice and simple, I will start using this on my phone's browser. Thanks.


Title: Re: Bitcoin Calculator
Post by: iqlimasyadiqa on August 27, 2017, 06:37:04 AM
Your enthusiasm is great for this project and you can add EURO, GBP, etc . However if you want to convert any amount of btc to usd then you just need to type "1 BTC = USD" in your web browser and you can see what happens next . I would advise you to do something different .

1 quick question : Suppose I have a text file having some data . To understand the data type just think that you got some email ID(s) or phone numbers in comment section on any social media post, and you just copy pasted it into text file. Now I want to extract all set of phone numbers of that text file to another text file . Let me know which programming language will you use to do this ? If anyone wants to explain, please post a reply and send me the link to this post in inbox if possible .
I have seen how this service works. There are still many basic shortcomings that I feel. If this service is trial and error it may not matter, but if you want to develop more broadly I think this is not enough. Try to note the coding you do, check again which is the problem. As a user of course I feel disappointed if not get the best features. Every function should be done with whatever nominal we input.


Title: Re: Bitcoin Calculator
Post by: jhenfelipe on August 27, 2017, 08:32:17 AM
I couldn't see how it really works, it keeps on loading after clicking the button and not giving any result. I don't think it's a connection problem since I could stream online without a buff. Is it just me?

PS. A preev-like site would be good, leveled-up with altcoin would be better. You got pretty good suggestions from others so good luck.

No, you are right, it was not a connection problem. and yes, people were really helpful and i took their suggestions and implemented. thank you for your comment!!

p.s. link here http://bitcoincalculator.org (http://bitcoincalculator.org)
Oh you're using a new link? It says: This domain was recently registered at Namecheap. Please check back later!
I guess your site in this new domain isn't ready yet. Good luck anyway, your site could be a good alternative as well when preev has a problem in the future. Looking forward for more Local currencies.

I'm sorry...that's not the correct link! The correct link is http://bitcoincalculator.co (http://bitcoincalculator.co) ... I made an error typing the link. Thank you for your patience!!
I see. Just visited the site again and wow it improved, looks better now. If we could calculate more or less than 1 cryptocurrency listed (like 2, 3 ... / 0.01, 0.5 ...), I think it would be okay to use already.


Title: Re: Bitcoin Calculator
Post by: kcrazy on August 30, 2017, 01:13:03 PM
Hello friends,
First of all, a big shout out to everyone who helped me by providing suggestions and feedbacks! Thank you so much!
As for now, I can safely say that a simple version of the calculator is ready.

For next version, I will add ability to add Newer currencies both crypto and fiat. I will keep posting updates.

Thanks again.

PS: here is the link http://bitcoincalculator.co (http://bitcoincalculator.co), please check and provide feedbacks.


Title: Re: Bitcoin Calculator
Post by: Aleya on August 31, 2017, 11:12:03 AM
Just visit and try your site http://bitcoincalculator.co/ its good site but i need more crypto for calculation,now only for bitcoin i am using preev.com/ but most of the time i use https://coinmarketcap.com/calculator/. Its best to me,because i can use it for calculating all of crypto at once.try to make such kind of good service.peoples will be more attractive to your site.