1.1 got stable
This commit is contained in:
42
mobile_white.html
Normal file
42
mobile_white.html
Normal file
@@ -0,0 +1,42 @@
|
||||
<html>
|
||||
<head>
|
||||
|
||||
<title>TradingView Charting Library demo</title>
|
||||
|
||||
<!-- Fix for iOS Safari zooming bug -->
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0">
|
||||
|
||||
<script type="text/javascript" src="charting_library/charting_library.min.js"></script>
|
||||
<script type="text/javascript" src="charting_library/datafeed/udf/datafeed.js"></script>
|
||||
|
||||
<script type="text/javascript" src="//code.jquery.com/jquery-2.1.0.min.js"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
TradingView.onready(function()
|
||||
{
|
||||
var widget = new TradingView.widget({
|
||||
fullscreen: true,
|
||||
symbol: 'AA',
|
||||
interval: 'D',
|
||||
container_id: "tv_chart_container",
|
||||
// BEWARE: no trailing slash is expected in feed URL
|
||||
datafeed: new Datafeeds.UDFCompatibleDatafeed("http://demo_feed.tradingview.com"),
|
||||
library_path: "charting_library/",
|
||||
locale: "en",
|
||||
// Regression Trend-related functionality is not implemented yet, so it's hidden for a while
|
||||
drawings_access: { type: 'black', tools: [ { name: "Regression Trend" } ] },
|
||||
disabled_features: ["use_localstorage_for_settings"],
|
||||
preset: "mobile"
|
||||
});
|
||||
})
|
||||
|
||||
</script>
|
||||
|
||||
</head>
|
||||
|
||||
<body style="margin:0px;">
|
||||
<div id="tv_chart_container"></div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user