Hello,
I am trying to download this page: http://coinmarketcap.com/currencies/views/all/
to put the list of the currency names in an array (Bitcoin, Litecoin, Nxt, Ripple, etc.)
for now, I have this:
Powershell
$url="http://coinmarketcap.com/currencies/views/all"$content=(new-objectSystem.Net.WebClient).DownloadString($url)
Anyone would have an idea please ?