1

I'm trying to fins an application that can give me a ticker style news feed and pull prices off of poloniex.com. Poloniex does not natively provide an embedded RSS feed so that wouldn't work but I don't know what the other options.

Comments
  • 1
    With node.js you can fetch the generated html from an url then you can check the part you need from it -> extract data -> fire notification

    repeat it periodically then the spine of your project is ready

    Happy Coding Broski!
  • 0
  • 2
    Why not just use their api ?

    https://poloniex.com/support/api/

    Much more easier and cleaner tha parsing rss or scraping for html content
  • 0
    @gacbl
    True that. That is the recommended way.
    Didn't know they have an API aswell.
Add Comment