Obtenga el precio límite en tiempo real de los futuros OK, válidos solo en disco real. El código es de uso educativo y los autores no garantizan la corrección del programa, por lo que las consecuencias de la transacción son propias.
$.GetLimit = function(currStr, contract) { var url = "https://www.okcoin.com/api/v1/future_price_limit.do?symbol=" + currStr + "_usd&contract_type=" + contract; var httpResp = HttpQuery(url); if (httpResp.indexOf("false") != -1) return null; var parsedResp; try { parsedResp = JSON.parse(httpResp); } catch (e) { return null; } return parsedResp; }; function main() { var limit = $.GetLimit('btc', 'quarter'); // 获取 比特币 季度 合约限价 Log(limit.high, limit.low); // 最高买入、最低卖出限价 limit = $.GetLimit('ltc', 'this_week'); // 获取 莱特币 当周 合约限价 Log(limit.high, limit.low); // 最高买入、最低卖出限价 limit = $.GetLimit('btc', 'next_week'); // 获取 比特币 次周 合约限价 Log(limit.high, limit.low); // 最高买入、最低卖出限价 }
Quiero a Jimmy.TipoError: valor no tiene propiedad En el punto principal (__FILE__:16) Por favor, pregunte dónde se presenta el problema, se ha producido un error después de ejecutarlo en la herramienta de depuración, como se muestra arriba.