Maybe we can get enough volume going on HORIZON and STELLAR platforms that we can get CoinMarketCap's attention, and maybe get HZ back on their site and maybe some of the tokens too.
By the way, the Latest Rates include-file is designed to be useful as an include-file, for example myrates.sh uses it:
#
# myrates.sh
#
BC=/usr/bin/bc
#RATESFILE=/usr/local/lib/ot/conversionrates.inc
RATESFILE=conversionrates.inc
MYrate=$1
if [ "x$MYrate" == "x" ]; then
echo "Syntax: myrate.sh rate"
exit 1
fi
. $RATESFILE
echo BBQrate=`echo "scale=8; $BBQrate / $MYrate"|$BC`
echo sBCErate=`echo "scale=8; $sBCErate / $MYrate"|$BC`
echo sBCIrate=`echo "scale=8; $sBCIrate / $MYrate"|$BC`
echo sBMCrate=`echo "scale=8; $sBMCrate / $MYrate"|$BC`
echo sBRFrate=`echo "scale=8; $sBRFrate / $MYrate"|$BC`
echo BTCrate=`echo "scale=8; $BTCrate / $MYrate"|$BC`
echo CDNrate=`echo "scale=8; $CDNrate / $MYrate"|$BC`
echo CLCrate=`echo "scale=8; $CLCrate / $MYrate"|$BC`
echo sCMCrate=`echo "scale=8; $sCMCrate / $MYrate"|$BC`
echo sCRFrate=`echo "scale=8; $sCRFrate / $MYrate"|$BC`
echo CZBrate=`echo "scale=8; $CZBrate / $MYrate"|$BC`
echo DVCrate=`echo "scale=8; $DVCrate / $MYrate"|$BC`
echo sDVCrate=`echo "scale=8; $sDVCrate / $MYrate"|$BC`
echo FBXrate=`echo "scale=8; $FBXrate / $MYrate"|$BC`
echo sGDCrate=`echo "scale=8; $sGDCrate / $MYrate"|$BC`
echo sGFCrate=`echo "scale=8; $sGFCrate / $MYrate"|$BC`
echo sGHCrate=`echo "scale=8; $sGHCrate / $MYrate"|$BC`
echo GMCrate=`echo "scale=8; $GMCrate / $MYrate"|$BC`
echo GPLrate=`echo "scale=8; $GPLrate / $MYrate"|$BC`
echo GPL2rate=`echo "scale=8; $GPL2rate / $MYrate"|$BC`
echo sGRCrate=`echo "scale=8; $sGRCrate / $MYrate"|$BC`
echo GRFrate=`echo "scale=8; $GRFrate / $MYrate"|$BC`
echo GRPrate=`echo "scale=8; $GRPrate / $MYrate"|$BC`
echo sGRPrate=`echo "scale=8; $sGRPrate / $MYrate"|$BC`
echo I0Crate=`echo "scale=8; $I0Crate / $MYrate"|$BC`
echo IXCrate=`echo "scale=8; $IXCrate / $MYrate"|$BC`
echo LTCrate=`echo "scale=8; $LTCrate / $MYrate"|$BC`
echo MBCrate=`echo "scale=8; $MBCrate / $MYrate"|$BC`
echo NKLrate=`echo "scale=8; $NKLrate / $MYrate"|$BC`
echo NMCrate=`echo "scale=8; $NMCrate / $MYrate"|$BC`
echo SPICErate=`echo "scale=8; $SPICErate / $MYrate"|$BC`
echo TBXrate=`echo "scale=8; $TBXrate / $MYrate"|$BC`
echo UFCrate=`echo "scale=8; $UFCrate / $MYrate"|$BC`
echo UKBrate=`echo "scale=8; $UKBrate / $MYrate"|$BC`
echo UNSrate=`echo "scale=8; $UNSrate / $MYrate"|$BC`
echo USFrate=`echo "scale=8; $USFrate / $MYrate"|$BC`
echo XGGrate=`echo "scale=8; $XGGrate / $MYrate"|$BC`
So if I want to see prices in bitcoin for example I can copy the BTCrate and use it as first argument to myrates.sh and presto it outputs the rates in terms of BTC.
Or it you are, say, wanting them in Yen, you can find somewhere a conversion to convert DeVCoin to Yen and plug in the result of that to see the whole list in terms of Yen.
Etcetera.
With the Open Transactions system the Big Seven had scripts that would place expires-in-24-hours orders to buy and sell to/from the others of the Big Seven in three scales, usually in thousands, tenthousands, and hundredthousands, using a markup or markdown from the Latest Rates of 3% at the small scale, 2% at the medium scale and 1% at the large scale, or maybe it was 1.5%, 1% and 0.5%, whatever, the point is the include file was included into their create-offers scripts.
Unfortunately I have no command-line "make an offer on HORIZON" nor "make an offer on STELLAR" commands yet like we had for Open Transactions.
-MarkM-