Skip to content

Instantly share code, notes, and snippets.

@herenow
Created July 5, 2018 17:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save herenow/a8521ebe87599ae4bb7e3973199a779d to your computer and use it in GitHub Desktop.
Save herenow/a8521ebe87599ae4bb7e3973199a779d to your computer and use it in GitHub Desktop.
Filter coinmarketcap coins by minimum of 100k USD marketcap
$('#currencies-all tbody > tr').filter((i, v) => (window.parseFloat($(v).find('.market-cap').data('usd')) || 0) < 100000000.0).remove()
@herenow
Copy link
Author

herenow commented Jul 5, 2018

Run this on your browser's console.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment