Commit 021066e5 authored by shajiaiming's avatar shajiaiming

Merge branch 'feature/optimize' into 'master'

Feature/optimize See merge request !495
parents 5e3cef4f 8200e21a
......@@ -284,12 +284,19 @@ class ExchangeBusiness
goto doEnd;
}
if (in_array(strtoupper($tag), ['BTY','YCC'])) {
if (in_array(strtoupper($tag), ['BTY', 'YCC'])) {
$exchange = ExchangeFactory::createExchange("Superx");
$quotation = $exchange->getTicker($tag, 'USDT');
goto doEnd;
}
if (in_array(strtoupper($tag), ['USDT'])) {
$exchange = ExchangeFactory::createExchange("Rate");
$quotation = $exchange->getTicker("CNY", "USD");
$quotation['rmb'] = (float)sprintf("%0.4f", $quotation['last']);
goto doEnd;
}
if (in_array(strtoupper($tag), ['CIC', 'MC'])) {
$exchange = ExchangeFactory::createExchange("Ztb");
$quotation = $exchange->getTicker(strtoupper($tag), 'USDT');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment