Commit e516cbd9 authored by shajiaiming's avatar shajiaiming

Merge branch 'feature/ticker' into 'master'

SZHB ticker See merge request !437
parents f01c779b 9d053412
...@@ -172,6 +172,16 @@ class ExchangeBusiness ...@@ -172,6 +172,16 @@ class ExchangeBusiness
goto doEnd; goto doEnd;
} }
if (strtoupper($tag) == 'SZHB') {
$quotation = [
'low' => 0.01,
'high' => 0.01,
'last' => 0.01,
'rmb' => 0.01,
];
goto doEnd;
}
if (in_array(strtoupper($tag), ['GST', 'JNTK', 'SPT', 'STO', 'GM', 'BSTC', 'RYH', 'CNDT', 'WL', 'ETS', 'LIMS', 'AT', 'BTJ', 'WXB'])) { if (in_array(strtoupper($tag), ['GST', 'JNTK', 'SPT', 'STO', 'GM', 'BSTC', 'RYH', 'CNDT', 'WL', 'ETS', 'LIMS', 'AT', 'BTJ', 'WXB'])) {
$quotation = [ $quotation = [
'low' => 0, 'low' => 0,
......
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