Open sirged opened 6 years ago
Can anyone post code to view TRX and ADA?
set json to do shell script "curl -H 'CB-VERSION: 2015-04-08' https://api.coinbase.com/v2/prices/ETH-USD/spot" set json to do shell script "sed s/warnings.*//g <<< " & json set eth to do shell script "sed s/[a-zA-Z:{},]//g <<< " & json set eth to eth as real
set pay to do shell script "curl -s 'https://bittrex.com/api/v1.1/public/getticker?market=eth-trx' | grep -oE '(Last).' | sed 's/[^0-9\.]//g'" set pay to pay as real
set answer to pay eth set answer to answer 100 set answer to round answer set answer to answer / 100 return "$" & answer
set json to do shell script "curl -H 'CB-VERSION: 2015-04-08' https://api.coinbase.com/v2/prices/BTC-USD/spot" set json to do shell script "sed s/warnings.*//g <<< " & json set eth to do shell script "sed s/[a-zA-Z:{},]//g <<< " & json set eth to eth as real
set pay to do shell script "curl -s 'https://bittrex.com/api/v1.1/public/getticker?market=btc-xvg' | grep -oE '(Last).' | sed 's/[^0-9\.]//g'" set pay to pay as real
set answer to pay eth set answer to answer 100 set answer to round answer set answer to answer / 100 return "$" & answer
set json to do shell script "curl -H 'CB-VERSION: 2015-04-08' https://api.coinbase.com/v2/prices/BTC-USD/spot" set json to do shell script "sed s/warnings.*//g <<< " & json set eth to do shell script "sed s/[a-zA-Z:{},]//g <<< " & json set eth to eth as real
set pay to do shell script "curl -s 'https://bittrex.com/api/v1.1/public/getticker?market=btc-ada' | grep -oE '(Last).' | sed 's/[^0-9\.]//g'" set pay to pay as real
set answer to pay eth set answer to answer 100 set answer to round answer set answer to answer / 100 return "$" & answer
Thanks!!!
set coin to do shell script "curl -s 'https://min-api.cryptocompare.com/data/price?fsym=(TickerChar)&tsyms=USD' | sed 's/[^0-9\.]*//g'" return "$" & coin
This is a little cleaner and quicker to return. As well it aggregates data. Good for coins with low volume, or that are not on bittrex. Also would allow quick exchange to localized currency as well (GBP, EUR, etc...)
Examples HUSH ENJ
set coin to do shell script "curl -s 'https://min-api.cryptocompare.com/data/price?fsym=HUSH&tsyms=USD' | sed 's/[^0-9\.]*//g'" return "$" & coin
set coin to do shell script "curl -s 'https://min-api.cryptocompare.com/data/price?fsym=ENJ&tsyms=USD' | sed 's/[^0-9\.]*//g'" return "$" & coin