Bitcoin Forum
May 06, 2024, 02:04:47 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Marketplace (Altcoins) / Urgent Need for EURT for Big Profit! on: November 01, 2017, 06:49:02 AM
I need just a few EURT from Tether.io

I can make big profits on them and will share them with the person that sends them to me!
2  Alternate cryptocurrencies / Marketplace (Altcoins) / How to Buy EURT? (Tether) on: November 01, 2017, 06:43:45 AM
I see many exchanges support USDT but none EURT. Tether.io won't convert USDT to EURT. I'm looking for an exchange to trade USDT or Bitcoin for EURT. Does that exist anywhere?
3  Other / Meta / My Server is Banned From XML Requests on: September 28, 2017, 01:22:10 AM
Hello, I have a trollbox that makes requests to: https://bitcointalk.org/index.php?type=rss;action=.xml&limit=20

I am now getting this error message:

action=.xml is disabled due to slowness. If you use this, write a post in Meta explaining your usage.

The trollbox is at www.nickelbot.com

The IP of the server is 70.90.241.53

I made a cache so it should not make as many requests now.
4  Alternate cryptocurrencies / Service Discussion (Altcoins) / Burstcoin Miner Faucet on: September 27, 2017, 01:14:36 AM
Earn 2 Burstcoin from the faucet at http://www.nickelbot.com/ by letting your browser do some mining.
5  Bitcoin / Bitcoin Discussion / Project Feasibility Questions on: June 05, 2016, 09:39:41 PM
Buy/Sell Digital Images w/ Cryptocurrencies

Product/Service

This service would be a website that allows for the purchase or sale of digital images with a payment processing system that allows for purchases and sales in crytpocurrencies such as Bitcoin, Ethereum and the many others. The website will not allow for payments with CC’s or other traditional financial methods since the fees for them are too high. This project will demonstrate international micropayments for digital goods. Buyers will be able to buy digital images from Sellers and the Sellers earn a commission for each sale of one of their digital images. For more information on cryptocurrencies, please see this CNBC article.

Target Market

The initial target market will be cryptocurrency users that are interested in buying or selling digital images online. A strong emphasis needs to be placed on the idea that these users will be currently using cryptocurrencies

Why your business idea?

This will benefit both the buyers and sellers by allowing the sale of digital images without the costs associated with making a financial transaction through traditional payment systems. This concept will apply all the pros (and the cons) of cryptocurrencies and apply them to the already mature market of allowing users to buy and sell digital images online.

Special Feature(s)

It will technically be available to a larger audience because people that are not able to access traditional payment systems will be able to use this website to buy or sell digital images because they will have access to cryptocurrencies such as Bitcoin. The market for Bitcoin users is currently small but the growth has been huge! This product should grow with the cryptocurrency market and it will have some first-mover advantages.

Distribution

This website will be a service that offers a marketplace for cryptocurrency users to either buy or sell digital images. There can be a small fee associated with each sale and advertising space can be sold on the website.

Questions


What do you think are the strengths of the Digi$image concept? In other words, what did you “like” about this idea?

What are your suggestions for strengthening the business idea?

What do you think about the overall feasibility of the business idea? Also, feel free to add any comments other pertaining to this topic.
6  Bitcoin / Project Development / Fork Me on: April 17, 2016, 08:28:36 AM
PHP & JavaScript Cryptocurrency Platform pre-release:

http://www.nickelbot.com/

https://github.com/AdamCox9/nickelbot
7  Economy / Service Announcements / NickelBot as a Service on: April 16, 2016, 07:11:29 AM
I created a free and open-source platform called NickelBot (http://www.nickelbot.com) and the source can be downloaded at https://github.com/AdamCox9/nickelbot

I have an API available up at my website for trading and providing information about the exchanges and currencies. Here are the docs: http://www.nickelbot.com/#docs

Anybody can set-up the platform on their own server to build web apps and bots for trading and anything else they can think of. I'm also looking for PHP/JavaScript developers to help me continue improving the platform and adding new exchanges.
8  Economy / Micro Earnings / Trading on the Spread on: April 16, 2016, 07:07:52 AM
I built a bot to attempt to trade on the spread on the major cryptocurrencies on the exchanges with no success. It seems other bots always try to jump ahead of my orders until the spread closes until the spread is one significant digit like buy at 0.00000033 and sell at 0.00000034, etc...

Has anybody had success doing this? The bot that I am using is https://github.com/AdamCox9/nickelbot/blob/master/bots/make_min_orders.php
9  Bitcoin / Project Development / Integrating Exchanges Into Platform on: April 16, 2016, 07:03:46 AM
I am looking for developers to integrate exchanges into NickelBot platform. NickelBot provides an ecosystem to build web apps and bots that communicate to each exchange through a standardized interface. I currently built adapters and rest libraries for Bitfinex, Bitstamp, Bittrex, Btc-e, Bter, Coinbase, and Poloniex. The platform is build in PHP on the server and JavaScript for the GUI in a web browser.

The code so far is at https://github.com/AdamCox9/nickelbot
10  Economy / Services / Looking for PHP or JavaScript Developers on: April 10, 2016, 02:04:09 AM
Hello,

I'm building a platform called NickelBot that interact with the major exchanges.

It is free and open-source: https://github.com/AdamCox9/nickelbot
The code is running at http://www.nickelbot.com/

I have had several inquiries for building custom bots in the platform and I was wondering if any developers wanted to take them on. If so, let me know and I will forward your contact information to them.
11  Bitcoin / Project Development / NickelBot API on: April 10, 2016, 01:41:56 AM
Here is the API on NickelBot:

http://www.nickelbot.com/#docs

It is functioning.

You can see the source code here: https://github.com/AdamCox9/nickelbot

It looks like this so far: (all of these links are live on my site - buy/sell orders are hard coded to make min buy/sell of 0.011 of BTC for USD at $404 and $444)

Docs

An array of all connected exchanges.
N/A
/api/index.php?action=exchanges

An array of all currencies BTC, LTC, BTC-USD, etc...
public function get_currencies();
/api/index.php?exchange=Bitfinex&action=get_currencies
/api/index.php?exchange=Bitstamp&action=get_currencies
/api/index.php?exchange=Bittrex&action=get_currencies
/api/index.php?exchange=Btce&action=get_currencies
/api/index.php?exchange=Bter&action=get_currencies
/api/index.php?exchange=Coinbase&action=get_currencies
/api/index.php?exchange=Poloniex&action=get_currencies

An array of all marckets BTC-LTC, BTC-USD, etc...
public function get_markets();
/api/index.php?exchange=Bitfinex&action=get_markets
/api/index.php?exchange=Bitstamp&action=get_markets
/api/index.php?exchange=Bittrex&action=get_markets
/api/index.php?exchange=Btce&action=get_markets
/api/index.php?exchange=Bter&action=get_markets
/api/index.php?exchange=Coinbase&action=get_markets
/api/index.php?exchange=Poloniex&action=get_markets

Get deposit addresses for an exchange.
public function deposit_addresses();
/api/index.php?exchange=Bitfinex&action=deposit_addresses
/api/index.php?exchange=Bitstamp&action=deposit_addresses
/api/index.php?exchange=Bittrex&action=deposit_addresses
/api/index.php?exchange=Btce&action=deposit_addresses
/api/index.php?exchange=Bter&action=deposit_addresses
/api/index.php?exchange=Coinbase&action=deposit_addresses
/api/index.php?exchange=Poloniex&action=deposit_addresses

Cancel one order
public function cancel( $order_id = 1, $opts = array() );
/api/index.php?exchange=Bter&action=cancel&id=3db01a5c-9df1-4f6a-9273-eeea0f3bdabf

Cancel all orders:
public function cancel_all();
/api/index.php?exchange=Bter&action=cancel_all

Make a buy order
public function buy( $pair='BTC-LTC', $amount="0.01", $price="0.01", $type="LIMIT", $opts=array() );
/api/index.php?exchange=Bitfinex&action=buy&market=BTC-USD&price=404&amount=0.011

Make a sell order
public function sell( $pair='BTC-LTC', $amount="0.01", $price="0.01", $type="LIMIT", $opts=array() );
/api/index.php?exchange=Bitfinex&action=sell&market=BTC-USD&price=444&amount=0.011
12  Bitcoin / Project Development / Looking for PHP Programming Crypto Traders on: April 01, 2016, 04:46:56 AM
I started an open source project that provides a platform for interacting with exchanges. It will also provide a website with web apps/tools/etc...

My initial post is here: https://bitcointalk.org/index.php?topic=1420693.0

Here is the github: https://github.com/AdamCox9/nickelbot

Please let me know if you are interested in contributing. The platform will allow developers to build their own bots and apps that they can sell, so it might be a successful project.
13  Economy / Trading Discussion / Cryptocurrency Trading Platform on: April 01, 2016, 02:47:01 AM
https://github.com/AdamCox9/nickelbot

The goal of this venture is to build a trading platform that provides a consistent interface across all digital currency exchanges. Currently there are almost 25 or more different exchanges doing the same thing. According to Coinmarketcap.com, the current market cap for cryptocurrencies is over $8 Billion and the 24hour trade volume for March 21 is $92 Million. This platform will make it easier for a developer to write a bot once and use it on any exchange. This will also allow for existing bots to be ported to work across all of the exchanges. It will not be hard to port an existing bot designed for a specific exchange to this platform and have it work across all the exchanges. The platform will have all functionality available from any API. Developers will easily be able to choose which of the exchanges they would like their bot to be executed on by editing their configuration file accordingly.

An example bot would be a piece of software that trades automatically. A bot would execute on a web server and communicate with an exchange over the web to initiate buy or sell orders based on certain conditions. For example, a bot would continuously poll an exchange for the price of, say, Bitcoin. As Bitcoin is just one of the many cryptocurrencies on the market today. For example, if the volume increases by 1% and the price increases by 1% in an hour, then the bot would initiate a buy order on the hopes that the price will continue to surge. The bot can send commands to an exchange in real-time without a person making any actions. There are many data mining and artificial intelligence techniques that could be incorporated into these bots - basically, they need to maximize profits from buying an asset low and selling high. Sometimes Bitcoin price fluctuates from $350 to $375 and back in one day, if a bot performs well enough based on the programmer’s techniques, it would be able to buy at $350, sell at $375 and then buy back at $350 thus increasing the wealth of the bot's owner.

Bots are currently very common in the world of cryptocurrency trading for the exchanges. The venture would be a platform or library of code that would provide a standard set of function calls that would work across all of the exchanges. There are many other bots that interact with most of the popular exchanges, but nothing that works across multiple exchanges. Currently it looks like most bots interact directly with each exchange's application program interface (API) natively, which adds a lot of extra work for the developers. This platform would be similar to how jQuery provides a standard interface for all of the web browsers so that developers do not have to write custom JavaScript code for each browser natively.

Creating bots on this platform will be beneficial to traders because they will be able to create a large number of custom orders across all of the exchanges very easily. The platform will provide many utility functions for calculating attributes such as highs, lows, volumes, exponential moving average (ema), etc... for any specified period of time. The platform will also make it easier for developers to build reports of their trading activity. This platform allows a developer to easily get statistics and summaries from each exchange in the same format. This allows the developer to perform detailed analysis. It will be an agenda to keep the platform scalable to allow for adding more functionality and to allow multiple developers to contribute while not breaking existing bots. The consistent interface and unit tests will help ensure integrity in the platform.

The source of this platform will be free and open-source in order to gain rapid popularity. Making the source open will allow other developers to help build this platform as they will be rewarded for their contributions because of the nature of GitHub. GitHub is where people build software. More than 12 million people use GitHub to discover, fork, and contribute to over 31 million projects. Many clients check a developer’s GitHub profile before hiring them. So, developers that contribute here will have a provable background in developing trading bots for virtual currencies. If this platform ever becomes popular there will be a lot of opportunity for growth. Making the platform free will allow many people to access the platform and will encourage use and growth of the platform. It will be essential to get other developers to contribute to the platform as well as build and publish their own bots. Developers will be able to build bots to be used on this platform and sell them for profits. Since it will be such a large amount of work to maintain this large platform, it will be necessary for developers to participate in the maintenance and development of this project.

The detailed theory behind this platform starts by exposing all of the functionality from each of the crypto trading exchanges with a consistent interface. This allows for developers to quickly write a bot that works on all of the exchanges instead of learning each separate API and writing a bot for each exchange. Each adapter will return the same output for each function, respectively, as any other adapter for the other exchanges. There will be unit tests that test each adapter and test the native API’s for each exchange so that it will be easier to debug and verify correct functionality. It will be important to maintain the full functionality offered by each exchange and make sure exchanges that don't support some functionality do so gracefully. For example, only some exchanges offer margin trading - adapters that don't support margin trading functionality shall respond with appropriate error codes/messages and the bots will handle these appropriately.

The platform will be attractive for new exchanges since they will want their API included in our platform. This may encourage exchanges to contribute to the platform by creating a library and adapter class for their exchange. Developers that have built a bot for a specific exchange that is not yet covered in the platform may contribute by integrating the API for the exchange into the platform. Developers may have a successful bot for a specific exchange that they may want to use on other exchanges or possibly sell their bot.

The primary target audience and opportunity of this application will be existing traders that have experience in software development and would be interested in PHP or existing PHP developers that are interested in trading crypto-currencies. The bot will not be exclusively targeted for these types of groups - it should have a simple graphical user interface (GUI) that will allow easy set-up and execution of pre-built bots so that anybody will have access to its’ abilities. It will also allow for the non-developer type of user be able to buy and install 3rd-party bots. This is an example of a large stream of revenue for this free and open-source platform.

There will be plenty of example bots to get the beginner started in no time. It will still be easy for a developer to build bots that have specific behavior for specific exchanges since each exchange might require different strategies. This platform will allow the developer to easily build a wide range of trading bots and have plenty of reference bots to get started from.

If someone needs to liquidate a digital asset, they will be able to find the most profitable way to do it. They can easily create a bot to sell it at an expected percentage above the current price. They can distribute the sale across all the exchanges to maximize the potential liquidity available.
14  Bitcoin / Bitcoin Discussion / Research Questions for Project on: March 18, 2016, 09:27:18 AM
Here is a survey I created on Google Forms: http:// goo . gl /forms/D2Kte6dCN6 (remove spaces)

Here are interview questions designed for bitcoin and cryptocurrency traders: http:// goo . gl /forms/HaFD8YTdFz

Remove spaces from URL
15  Economy / Service Announcements / Bitcoin United States Dollar Info (Website) on: February 10, 2015, 07:30:51 PM
Check out my new website discussing some interesting topics related to Bitcoin http://bitcoinusd.info/
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!