Created
July 5, 2018 17:04
-
-
Save herenow/a8521ebe87599ae4bb7e3973199a779d to your computer and use it in GitHub Desktop.
Filter coinmarketcap coins by minimum of 100k USD marketcap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('#currencies-all tbody > tr').filter((i, v) => (window.parseFloat($(v).find('.market-cap').data('usd')) || 0) < 100000000.0).remove() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Run this on your browser's console.