| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <title>Coin主页</title>
- <meta name="referrer" content="never">
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta http-equiv="pragma" content="no-cache">
- <meta http-equiv="cache-control" content="no-cache">
- <meta http-equiv="expires" content="0">
- <meta name="renderer" content="webkit|ie-comp|ie-stand">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
- <link rel="shortcut icon" href="cover/bitcoin.ico" type="image/x-icon">
- <script src="js/jquery-3.6.0.min.js"></script>
- <script type="text/javascript" src="js/my-coin.js"></script>
- </head>
- <style type="text/css">
- .font {
- color: blue;
- }
- .dynamic_hide {
- display: none;
- }
- </style>
- <script type="text/javascript">
- function show() {
- var my = document.getElementById("my");
- if (my.className.indexOf("dynamic_hide") > -1) {
- my.classList.remove("dynamic_hide");
- } else {
- my.classList.add("dynamic_hide");
- }
- }
- </script>
- <body>
- <span>Hello <font id="myc" style="cursor: pointer;" onclick="show()">W</font>orld!</span>
- <div id="my" class="dynamic_hide">
- <hr/>
- <div style="margin-right:20px;">
- <span class="font aaa">获取全部合约仓位信息V2</span>
- <button id="findAllPositionv2-1">展开</button>
- <button id="findAllPositionv2-2">实时启动</button>
- <button id="findAllPositionv2-3">实时停止</button>
- <input type="text" style="width: 100px;" class="bbb">
- </div>
- <div id="content" style="display: none;">
- total:<span id="contentSPAN">0</span>
- <table border="1" cellspacing="0">
- <thead>
- <tr id="contentTH">
- <th ccc="symbol">币对名称</th>
- <th ccc="marginCoin">保证金币种</th>
- <th ccc="holdSide">持仓方向</th>
- <th ccc="openDelegateCount">当前委托待成交的数量</th>
- <th ccc="margin">保证金数量</th>
- <th ccc="autoMargin">自动追加保证金</th>
- <th ccc="available">仓位可用</th>
- <th ccc="locked">仓位冻结</th>
- <th ccc="total">仓位总数量</th>
- <th ccc="leverage">杠杆倍数</th>
- <th ccc="achievedProfits">已实现盈亏</th>
- <th ccc="averageOpenPrice">平均开仓价</th>
- <th ccc="marginMode">保证金模式</th>
- <th ccc="holdMode">持仓模式</th>
- <th ccc="unrealizedPL">未实现盈亏</th>
- <th ccc="liquidationPrice">预估强平价</th>
- <th ccc="keepMarginRate">维持保证金率</th>
- <th ccc="marketPrice">标记价格</th>
- <th ccc="cTime">最近更新时间</th>
- </tr>
- </thead>
- <tbody id="contentTD">
- </tbody>
- </table>
- </div>
- </div>
- </body>
- </html>
|