Bitcoin Forum
May 07, 2024, 12:55:03 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Looking for someone that can create me a simple script  (Read 1112 times)
Xiaoxiao (OP)
Legendary
*
Offline Offline

Activity: 1274
Merit: 1000

The Golden Rule Rules


View Profile
August 28, 2015, 03:39:13 AM
 #1

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.
1715086503
Hero Member
*
Offline Offline

Posts: 1715086503

View Profile Personal Message (Offline)

Ignore
1715086503
Reply with quote  #2

1715086503
Report to moderator
Be very wary of relying on JavaScript for security on crypto sites. The site can change the JavaScript at any time unless you take unusual precautions, and browsers are not generally known for their airtight security.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715086503
Hero Member
*
Offline Offline

Posts: 1715086503

View Profile Personal Message (Offline)

Ignore
1715086503
Reply with quote  #2

1715086503
Report to moderator
blankia
Newbie
*
Offline Offline

Activity: 27
Merit: 0


View Profile
August 28, 2015, 06:47:00 AM
 #2

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.
avatar_kiyoshi
Legendary
*
Offline Offline

Activity: 1106
Merit: 1000



View Profile
August 28, 2015, 12:49:45 PM
 #3

My friend good in coding, if you still need this, just PM me Smiley
the price is enough i think.
melisande
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250



View Profile
August 31, 2015, 02:51:31 PM
 #4

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.
Ghris
Sr. Member
****
Offline Offline

Activity: 356
Merit: 250


View Profile
August 31, 2015, 03:00:00 PM
 #5

You know if this than that?

Check out ifttt.com for automatic tweeting etc.
melisande
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250



View Profile
August 31, 2015, 07:16:28 PM
 #6

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.
Ghris
Sr. Member
****
Offline Offline

Activity: 356
Merit: 250


View Profile
August 31, 2015, 08:44:57 PM
 #7

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.
chipbricks
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
September 06, 2015, 11:05:12 PM
 #8

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.
amacar1
Hero Member
*****
Offline Offline

Activity: 707
Merit: 501


View Profile
September 07, 2015, 04:56:05 PM
 #9

I can do this for you. Please contact me.
Ditto
Sr. Member
****
Offline Offline

Activity: 330
Merit: 250


View Profile
September 07, 2015, 09:25:49 PM
 #10

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.
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!