-
Notifications
You must be signed in to change notification settings - Fork 567
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
183 additions
and
282 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title></title> | ||
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0"> | ||
<link rel="stylesheet" href="../css/weui.css"/> | ||
<link rel="stylesheet" href="../css/weuix.css"/> | ||
<script src="../js/tv.js"></script> | ||
|
||
</head> | ||
|
||
<body ontouchstart> | ||
<div class="page-hd"> | ||
<h1 class="page-hd-title"> | ||
tradingview画图 | ||
</h1> | ||
<p class="page-hd-desc">LightweightCharts<a href="https://aitrade.ga/books/lightweight-charts-docs-cn/">中文</a></p> | ||
</div> | ||
<div class="page-bd-15"> | ||
<div id="myChart" height="300"></div> | ||
<br> | ||
<br> | ||
<div id="myChart2" height="300"></div> | ||
<script> | ||
function ispc() { | ||
var userAgentInfo = navigator.userAgent; | ||
var Agents = ["Android", "iPhone","SymbianOS", "Windows Phone","iPad", "iPod"]; | ||
var flagPc = true; | ||
for (var v = 0; v < Agents.length; v++) { | ||
if (userAgentInfo.indexOf(Agents[v]) > 0) { | ||
flagPc = false; | ||
break; | ||
} | ||
} | ||
return flagPc; | ||
} | ||
var width=ispc()?800:400; | ||
var height=ispc()?600:300; | ||
const chart = LightweightCharts.createChart(document.getElementById("myChart"), { width: 400, height: 300 }); | ||
chart.resize(width, height); | ||
const lineSeries = chart.addLineSeries(); | ||
lineSeries.setData([ | ||
{ time: '2019-04-11', value: 80.01 }, | ||
{ time: '2019-04-12', value: 96.63 }, | ||
{ time: '2019-04-13', value: 76.64 }, | ||
{ time: '2019-04-14', value: 81.89 }, | ||
{ time: '2019-04-15', value: 74.43 }, | ||
{ time: '2019-04-16', value: 80.01 }, | ||
{ time: '2019-04-17', value: 96.63 }, | ||
{ time: '2019-04-18', value: 76.64 }, | ||
{ time: '2019-04-19', value: 81.89 }, | ||
{ time: '2019-04-20', value: 74.43 }, | ||
]); | ||
|
||
const chart2 = LightweightCharts.createChart(document.getElementById("myChart2")); | ||
chart2.resize(width, height); | ||
const cand = chart2.addCandlestickSeries({title:"k线图",upColor: "#FA5151",downColor: "#07C160", borderUpColor: "#FA5151",borderDownColor: "#07C160", wickUpColor: "#FA5151",wickDownColor: "#07C160"}); | ||
cand.setData([ | ||
{ | ||
time: "2018-12-19", | ||
open: 141.77, | ||
high: 170.39, | ||
low: 120.25, | ||
close: 145.72 | ||
}, | ||
{ | ||
time: "2018-12-20", | ||
open: 145.72, | ||
high: 147.99, | ||
low: 100.11, | ||
close: 108.19 | ||
}, | ||
{ time: "2018-12-21", open: 108.19, high: 118.43, low: 74.22, close: 75.16 }, | ||
{ time: "2018-12-22", open: 75.16, high: 82.84, low: 36.16, close: 45.72 }, | ||
{ time: "2018-12-23", open: 45.12, high: 53.9, low: 45.12, close: 48.09 }, | ||
{ time: "2018-12-24", open: 60.71, high: 60.71, low: 53.39, close: 59.29 }, | ||
{ time: "2018-12-25", open: 68.26, high: 68.26, low: 59.04, close: 60.5 }, | ||
{ time: "2018-12-26", open: 67.71, high: 105.85, low: 66.67, close: 91.04 }, | ||
{ time: "2018-12-27", open: 91.04, high: 121.4, low: 82.7, close: 111.4 }, | ||
{ | ||
time: "2018-12-28", | ||
open: 111.51, | ||
high: 142.83, | ||
low: 103.34, | ||
close: 131.25 | ||
}, | ||
{ time: "2018-12-29", open: 131.33, high: 151.17, low: 77.68, close: 96.43 }, | ||
{ time: "2018-12-30", open: 106.33, high: 110.2, low: 90.39, close: 98.1 }, | ||
{ time: "2018-12-31", open: 109.87, high: 114.69, low: 85.66, close: 111.26 }, | ||
|
||
]); | ||
</script> | ||
</div> | ||
<br> | ||
<br> | ||
<div class="weui-footer weui-footer_fixed-bottom"> | ||
<p class="weui-footer__links"> | ||
<a href="../index.html" class="weui-footer__link">WeUI首页</a> | ||
</p> | ||
<p class="weui-footer__text">Copyright © Yoby</p> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
6.09|2022-4-15 | ||
6.10|2023-06-11 |