Hi Gunthar and family,
I REALLY REALLY REALLY would love if the charts from trading view that auto-populate for viewing could allow us to insert lines and do analysis from within the tool.
The code you'd want for example would be:
------------------------------------------------
<!-- TradingView Widget BEGIN -->
<script type="text/javascript" src="
https://s3.tradingview.com/tv.js"></script>
<script type="text/javascript">
new TradingView.widget({
"width": 600,
"height": 590,
"symbol": "BITTREX:BTCUSDT",
"interval": "30",
"timezone": "America/Los_Angeles",
"theme": "Dark",
"style": "1",
"locale": "en",
"toolbar_bg": "rgba(0, 0, 0, 1)",
"enable_publishing": true,
"withdateranges": true,
"hide_side_toolbar": false,
"allow_symbol_change": true,
"hideideas": true,
"studies": [
"BB@tv-basicstudies",
"MACD@tv-basicstudies",
"RSI@tv-basicstudies"
]
});
</script>
<!-- TradingView Widget END -->