Bitcoin Forum
May 09, 2024, 05:38:40 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Service Announcements (Altcoins) / DigiBot - Most popular crypto Telegram chat bot! - @digubot on: April 17, 2016, 05:52:15 PM
DigiByte Telegram Chat Bot






Features:

  • Market data feeds from Poloniex, Bittrex and Bitfinex with multiple currency functionality
  • Advanced market data features
  • Market cap data
  • DigiStats API integration including difficulty, coin supply, blockcount, network hash rates, number of nodes and more!
  • /bookchart <currency> command which shows a chart of the orderbook for selected currency
  • /fib command that shows 24h fibonacci levels for selected currency
  • Price charting feature with the ability to create 24h 15min charts for any currency supported on Poloniex
  • Added a block explorer feature enabling users to search transaction IDs and addresses on the blockchain
  • Lending rates for any currency supported on Poloniex
  • A /dgbinfo command displaying a list of relevant DigiByte links

Usage Tips:

  • You can add the chat bot directly from your Telegram app by adding @digubot
  • Please do your best not to spam and hence clog up the bot


DGB: D6Nf28pSevxNU4wjKJ4wro28dtUPo4nz7f
BTC: 19NF9mmWCFxtqdUhsBfQ2qUkrn31TvsxR
2  Economy / Marketplace / Simple Multiple currencies to bitcoin converter on: July 16, 2013, 09:07:32 PM
BitKapp is releasing an open source currency to bitcoin converter desktop application written in python. It is free to use and distribute in accordance to its GNU License.

Simple Dollar, Pound and Euro to bitcoin converter. Supports those three currencies and works simply by inputting the amount in the respective currency you need to know the bitcoin value of, and prints the bitcoin value just below. See the screenshots below.

Post Link: http://bitkapp.com/blog/currency-to-bitcoin/

Github Link: https://github.com/bitkapp/currency-to-bitcoin-converter

Screenshots:

3  Bitcoin / Bitcoin Technical Support / Socket IO in Python Question About multiple currencies on: July 11, 2013, 10:41:13 AM
Im using this script, https://github.com/molecular/traidor/blob/master/socketio.py , to connect to the socket io streaming api for mt gox. I was wondering as to how i can also listen to the channels for other currencies, ive tried various things like adding ?Currency=EUR in the url etc. but nothing has worked any help would be greatly appreciated!
4  Bitcoin / Bitcoin Technical Support / Mt Gox Websocket Streaming API and Depth Question[PYTHON][ANSWERED] on: July 10, 2013, 03:01:04 PM
Ok so I am working on a application that displays a recent self updating orderbook of the first 20 or so (not decided) bids and asks. I am doing this for fun and as a learning experience i know it would be easily accessible through clark moody and the sort. The question is, its easy to get the full depth by using http://data.mtgox.com/api/2/BTCUSD/money/depth. However ive been looking around and most people say to get it to update you should use the websocket API. I am not familiar with this type of programming (my programming knowledge is quite limited anyways) and i've found this script which gives me the output of the websocket, however I would like this output to be appended into an array and i cant get that to happen. So the question is how can i handle or define a variable which consitutes the output of the websocket api at mtgox.

THIS HAS BEEN ANSWERED THANKS ANYWAYS!

Code:
import threading
import websocket
import json



class mtgox( threading.Thread ):

    def run( self ):
        websocket.enableTrace( True )
        url = 'ws://websocket.mtgox.com/mtgox?Currency=USD'
        self.socket = websocket.WebSocketApp( url, on_open = self.on_open )
self.socket.run_forever( )

    def subscribe( self, channel ):
        output = { 'op': 'mtgox.subscribe', 'type': channel }
        output = json.dumps( output )
        self.socket.send( output )

    def on_open( self, socket ):
        self.subscribe( 'depth' )
#self.subscribe( 'lag' )        
        #self.subscribe( 'ticker' )
        #self.subscribe( 'trades' )

if __name__ == '__main__':
    mtgox = mtgox( )
    mtgox.start( )
5  Economy / Service Announcements / Bitcoin Live Price Plotting Software on: July 07, 2013, 09:52:06 PM
BitKapp is releasing an open source Live Bitcoin price plotting software written in python. It is free to use and distribute in accordance to its GNU License.

The software has been developed as a learning experience and for general fun. However BitKapp does need to support its servers and we therefore ask that if this software has been of use to you to please consider a small donation at 1Bc9Jr8rxcp3be4DUHfVdSh3sZ9My9pqog

If you have any queries, suggestions or bug reports please do not hesitate to post them!

Post Link: http://bitkapp.com/blog/bitkapp-livechart-app/

Github Link: https://github.com/bitkapp/bitcoin-live-price-plotting-software

Features:

  • Ability to set the refresh rate time for the requests. This scale goes from a default of 10 seconds per request to 60 seconds.
  • Ability to set the Y-axis scale with a simple slider widget.
  • Y-axis will auto update according to the current price whereabouts on the canvas.
  • The color of the line will change if the price goes up or down (this will help with very small changes in the price). Screenshots below.
  • Supports multiple currencies (USD, GBP, EUR)

Screenshots:









6  Economy / Economics / Bitcoin Live Price Plotting Software on: July 04, 2013, 12:52:28 PM
BitKapp is releasing an open source Live Bitcoin price plotting software written in python. It is free to use and distribute in accordance to its GNU License.

The software has been developed as a learning experience and for general fun. However BitKapp does need to support its servers and we therefore ask that if this software has been of use to you to please consider a small donation at 1Bc9Jr8rxcp3be4DUHfVdSh3sZ9My9pqog

If you have any queries, suggestions or bug reports please do not hesitate to post them!

Post Link: http://bitkapp.com/blog/bitkapp-livechart-app/

Github Link: https://github.com/bitkapp/bitcoin-live-price-plotting-software

Features:

  • Ability to set the refresh rate time for the requests. This scale goes from a default of 10 seconds per request to 60 seconds.
  • Ability to set the Y-axis scale with a simple slider widget.
  • Y-axis will auto update according to the current price whereabouts on the canvas.
  • The color of the line will change if the price goes up or down (this will help with very small changes in the price). Screenshots below.
  • Supports multiple currencies (USD, GBP, EUR)

Screenshots:









7  Economy / Marketplace / Bitcoin Live Price Plotting Software on: July 04, 2013, 12:49:37 PM
BitKapp is releasing an open source Live Bitcoin price plotting software written in python. It is free to use and distribute in accordance to its GNU License.

The software has been developed as a learning experience and for general fun. However BitKapp does need to support its servers and we therefore ask that if this software has been of use to you to please consider a small donation at 1Bc9Jr8rxcp3be4DUHfVdSh3sZ9My9pqog

If you have any queries, suggestions or bug reports please do not hesitate to post them!

Post Link: http://bitkapp.com/blog/bitkapp-livechart-app/

Github Link: https://github.com/bitkapp/bitcoin-live-price-plotting-software

Features:

  • Ability to set the refresh rate time for the requests. This scale goes from a default of 10 seconds per request to 60 seconds.
  • Ability to set the Y-axis scale with a simple slider widget.
  • Y-axis will auto update according to the current price whereabouts on the canvas.
  • The color of the line will change if the price goes up or down (this will help with very small changes in the price). Screenshots below.
  • Supports multiple currencies (USD, GBP, EUR)

Screenshots:









8  Bitcoin / Project Development / Bitcoin Live Price Plotting Software on: July 04, 2013, 12:47:21 PM
BitKapp is releasing an open source Live Bitcoin price plotting software written in python. It is free to use and distribute in accordance to its GNU License.

The software has been developed as a learning experience and for general fun. However BitKapp does need to support its servers and we therefore ask that if this software has been of use to you to please consider a small donation at 1Bc9Jr8rxcp3be4DUHfVdSh3sZ9My9pqog

If you have any queries, suggestions or bug reports please do not hesitate to post them!

Post Link: http://bitkapp.com/blog/bitkapp-livechart-app/

Github Link: https://github.com/bitkapp/bitcoin-live-price-plotting-software

Features:

  • Ability to set the refresh rate time for the requests. This scale goes from a default of 10 seconds per request to 60 seconds.
  • Ability to set the Y-axis scale with a simple slider widget.
  • Y-axis will auto update according to the current price whereabouts on the canvas.
  • The color of the line will change if the price goes up or down (this will help with very small changes in the price). Screenshots below.
  • Supports multiple currencies (USD, GBP, EUR)

Screenshots:









9  Bitcoin / Bitcoin Discussion / [CONTENT NEEDED]Developing a bitcoin related open source software library on: May 22, 2013, 03:49:12 PM
We have started development on a Bitcoin related open source software library. This library will contain a collection of tested open source scripts, small programs, software and apps.

At the moment we have very little content. This is why we are asking for open source developers to post their programs on this topic so that we can upload it onto our website. The post should be in the following format,

Name/Organization:
Source code download Link:
Small Description:


We test the programs as part of the uploading process (to ensure useful, working programs are uploaded). If we find any bugs they will be reported to the author of the program.


We also have a few ideas for the future concerning developing some android mobile applications and developing a Bitcoin charting web application, that we intend to make it so that you can easily implement it on your own website.

You can visit us at www.bitkapp.com


PS: I am doing this for fun and to get involved in the Bitcoin community and idea, however there are web server related costs. That is why we ask to support us if you think our idea is good and useful. You can do this at 1Bc9Jr8rxcp3be4DUHfVdSh3sZ9My9pqog Any help will be greatly appreciated. If we can raise 0.5BTC we can run the website for about a year (which is enough to really develop this idea). 
10  Bitcoin / Project Development / [QUESTION] Offline hardware wallet transactions on: May 19, 2013, 06:21:12 PM
I don't want to release too many details but,

Would it be possible to perform offline wallet transactions between two hardware wallets, and by hardware wallets I mean wallet data stored on a small chip or something of the sort?

Thanks for the feedback!
11  Bitcoin / Project Development / [CONTENT NEEDED]Developing a bitcoin related open source software library on: May 12, 2013, 06:19:44 PM
We have started development on a Bitcoin related open source software library. This library will contain a collection of tested open source scripts, small programs, software and apps.

At the moment we have very little content. This is why we are asking for open source developers to post their programs on this topic so that we can upload it onto our website. The post should be in the following format,

Name/Organization:
Source code download Link:
Small Description:


We test the programs as part of the uploading process (to ensure useful, working programs are uploaded). If we find any bugs they will be reported to the author of the program.


We also have a few ideas for the future concerning developing some android mobile applications and developing a Bitcoin charting web application, that we intend to make it so that you can easily implement it on your own website.

You can visit us at www.bitkapp.com


PS: I am doing this for fun and to get involved in the Bitcoin community and idea, however there are web server related costs. That is why we ask to support us if you think our idea is good and useful. You can do this at 1Bc9Jr8rxcp3be4DUHfVdSh3sZ9My9pqog Any help will be greatly appreciated. If we can raise 0.5BTC we can run the website for about a year (which is enough to really develop this idea).  
12  Bitcoin / Project Development / Listen to the Blockchain! on: May 10, 2013, 11:36:15 PM
Due to complaints by the creators of this application this thread is basically [CLOSED]

Sorry, we have a few more updates coming soon that should resolve these issues in the future.
13  Bitcoin / Project Development / Mt Gox Price Ticker Python Application on: May 09, 2013, 03:08:39 PM
This is a free mtgox price ticker application for windows. Its completely free and open source, however we do ask to support us by either clicking on the adverts on the sidebar of the website or by donating at 1Bc9Jr8rxcp3be4DUHfVdSh3sZ9My9pqog.

Download Link: http://wp.me/p3sJmg-2h

Screenshot:

14  Other / Beginners & Help / Just got started and want to get free bitcoins? Here's where! on: May 09, 2013, 08:22:23 AM
Just got started and want to get free bitcoins? Check out this page with a list of bitcoin faucets! http://bitkapp.com/blog/freebitcoin-websites/
15  Other / Beginners & Help / Free Mt Gox Price Ticker Desktop Application on: May 08, 2013, 10:00:47 PM
Check out this Free Mt Gox Price Ticker Desktop Application at http://bitkapp.com/blog/bitcoin-price-ticker/ Donations accepted at 1Bc9Jr8rxcp3be4DUHfVdSh3sZ9My9pqog OR click on any of the advertisements on the website!
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!