tv-chart.html is cached by a broswer #1377 Chart Save/Load API requires text/html #1361 Heikin Ashi open is calculated incorrectly #1341 Objects created in one resolution are often not visible in another resolution #1336 Add additional indicators to the library #1305 Add method to get checkable action state #1281 Trading Platform: quantity is not applied to trading context menu #1272 Track indicators, drawings and chart styles #1263 translate problem #1256 Part of translation are removed from language file? #1247 Bars in past not displayed (1 minute resolution) #1244 Trend Line on weekly chart #1235 Order lines no longer respond to events #1233 How to set setVisibleRange with param "to" in future time? #1229 Remote loading charts NOT LOAD PROPERLY #1227 Change text of open, high, low, close to O,H,L,C #1225 resolveSymbol call twice with symbol name after resolve info with ticker #1221 Platform: multiple layout symbol is loaded incorrectly #1219 List/ Hide / show objects that were not created using the API #1215 Range of Viewable Chart #1206 Selected line tool changed event #1203 Overrides:Study `MA Cross` ambiguous identifier `short` #1202 Sync multicharts, track time #1201 New API methods #1200 Quick trading buttom #1199 Measure tools improvements #1198 Draw circles with ellipse instrument when shift is pressed #1197 Automatically show/hide navigation buttons #1196 Reduce library size #1194 How to add predicred line to chart? #1188 Disable the context menu in the objects tree. #1182 Add symbol_info parameters validation #1148 calculateHistoryDepth context #1080 icons using createMultipointShape #1079 Can't draw programmatically vertical line in future date #987 Feature request: edit_buttons_in_legend split #970 Navigation buttons not visible in mobile #875 Add ADX indicator on chart (Average Directional Index) #869 Set default range for intervals #673 Heikin Ashi chart is built wrong #662 Custom date formatting #156
59 lines
2.0 KiB
HTML
59 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
|
|
<title>TradingView Charting Library demo -- Mobile (black)</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">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
|
|
|
<script type="text/javascript" src="//code.jquery.com/jquery-1.11.2.min.js"></script>
|
|
<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">
|
|
|
|
function getParameterByName(name) {
|
|
name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]");
|
|
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
|
|
results = regex.exec(location.search);
|
|
return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
|
|
}
|
|
|
|
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("https://demo_feed.tradingview.com"),
|
|
library_path: "charting_library/",
|
|
locale: getParameterByName('lang') || "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",
|
|
overrides: {
|
|
"paneProperties.background": "#222222",
|
|
"paneProperties.vertGridProperties.color": "#454545",
|
|
"paneProperties.horzGridProperties.color": "#454545",
|
|
"symbolWatermarkProperties.transparency": 90,
|
|
"scalesProperties.textColor" : "#AAA"
|
|
}
|
|
});
|
|
})
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body style="margin:0px;">
|
|
<div id="tv_chart_container"></div>
|
|
</body>
|
|
|
|
</html>
|