Bitcoin Forum

Bitcoin => Project Development => Topic started by: Xiaoxiao on August 28, 2015, 03:39:13 AM



Title: Looking for someone that can create me a simple script
Post by: Xiaoxiao on August 28, 2015, 03:39:13 AM
That can do things such as make a twitter post every 2 hours of BTC price or something like that.  Please let me know know best way to proceed for computer to do a task like that.  I know there are forum bots such as 'Chart Buddy' that can post charts every 1 or 2 hours on the forums.

Will pay $200 for completed script.  Thanks and let me know if that is too expensive or cheap.


Title: Re: Looking for someone that can create me a simple script
Post by: blankia on August 28, 2015, 06:47:00 AM
Hi Xiaoxiao,

I can make this script for you. I have some good experience with exchanges API's, bots and programming. Please pm me with details.

Depending on what functionality and how complex the script needs to be i can tell you the price.


Title: Re: Looking for someone that can create me a simple script
Post by: avatar_kiyoshi on August 28, 2015, 12:49:45 PM
My friend good in coding, if you still need this, just PM me :)
the price is enough i think.


Title: Re: Looking for someone that can create me a simple script
Post by: melisande on August 31, 2015, 02:51:31 PM
I can do this pretty well in 3 days but you need to state which platform will it be taking its information from whether bitstamp, blockchain or any of your choice.


Title: Re: Looking for someone that can create me a simple script
Post by: Ghris on August 31, 2015, 03:00:00 PM
You know if this than that?

Check out ifttt.com for automatic tweeting etc.


Title: Re: Looking for someone that can create me a simple script
Post by: melisande on August 31, 2015, 07:16:28 PM
You know if this than that?

Check out ifttt.com for automatic tweeting etc.
I think the OP needs something that works like a feeder that picks data from a particular website and post it as a tweet message automatically.


Title: Re: Looking for someone that can create me a simple script
Post by: Ghris on August 31, 2015, 08:44:57 PM
You know if this than that?

Check out ifttt.com for automatic tweeting etc.
I think the OP needs something that works like a feeder that picks data from a particular website and post it as a tweet message automatically.

Yea I think ifttt.com can be set up for that.


Title: Re: Looking for someone that can create me a simple script
Post by: chipbricks on September 06, 2015, 11:05:12 PM
That can do things such as make a twitter post every 2 hours of BTC price or something like that.  Please let me know know best way to proceed for computer to do a task like that.  I know there are forum bots such as 'Chart Buddy' that can post charts every 1 or 2 hours on the forums.

Will pay $200 for completed script.  Thanks and let me know if that is too expensive or cheap.

use https://github.com/tweepy/tweepy . I think ~25$ budget for this.


Title: Re: Looking for someone that can create me a simple script
Post by: amacar1 on September 07, 2015, 04:56:05 PM
I can do this for you. Please contact me.


Title: Re: Looking for someone that can create me a simple script
Post by: Ditto on September 07, 2015, 09:25:49 PM
Cron for scheduling, with a simple script to do whatever you need, like this

Code:
require 'twitter'
require 'httparty'

response = HTTParty.get('https://api.bitcoinaverage.com/ticker/global/USD/')
price = response['last']

client = Twitter::REST::Client.new do |config|
  config.consumer_key        = "YOUR_CONSUMER_KEY"
  config.consumer_secret     = "YOUR_CONSUMER_SECRET"
  config.access_token        = "YOUR_ACCESS_TOKEN"
  config.access_token_secret = "YOUR_ACCESS_SECRET"
end

client.update("Price - " + price)


That should tweet the price every time cron runs it.