2 reviews
I made a couple of edits, having it only show stocks selling at 15np/share and only highlighting those that are at 100% or greater instead of 90%, but those are simply my personal preferences. This script makes using the stock market so much easier! A must-have
This script clearly highlights profitable stocks (for selling) and filters the stock ticker down to purchasable stocks, removing the ghastly scrolling effect without crippling the page or any functionality.
It successfully accomplishes its task and makes my daily stock meddling a lot more efficient.
I modified the script to only display purchasable stocks at 15, for maximum profit potential.
Simply change
if( marquee.childNodes[i].textContent.match (/ 15 /) || marquee.childNodes[i].textContent.match (/ 16 /))
to
if( marquee.childNodes[i].textContent.match (/ 15 /) || marquee.childNodes[i].textContent.match (/ 15 /))
at the end of line 42, if you wish to do the same.