├── Chart.html ├── Images ├── Chart.png ├── Crypto-Currency-Ticker.png ├── Crypto-Ticker.png ├── Customizable-Cryptocurrency-Dashboard-with-Chart-Binance.png ├── Mini-Chart.png ├── Overview-Chart.png ├── Single-Ticker.png ├── Symbol-Info.png ├── Technical-Analysis.png └── binance.jpg ├── LICENSE ├── Mini-Chart.html ├── Overview-Chart.html ├── README.md ├── Single-Ticker.html ├── Symbol-Info.html ├── Technical-Analysis.html ├── Ticker-Tape.html └── Ticker.html /Chart.html: -------------------------------------------------------------------------------- 1 | 2 |
29 | -------------------------------------------------------------------------------- /Images/Chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDouble/HTML-Crypto-Currency-Chart-Snippets/652a88c4db5ba242ef0924b139981466d2a10d9a/Images/Chart.png -------------------------------------------------------------------------------- /Images/Crypto-Currency-Ticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDouble/HTML-Crypto-Currency-Chart-Snippets/652a88c4db5ba242ef0924b139981466d2a10d9a/Images/Crypto-Currency-Ticker.png -------------------------------------------------------------------------------- /Images/Crypto-Ticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDouble/HTML-Crypto-Currency-Chart-Snippets/652a88c4db5ba242ef0924b139981466d2a10d9a/Images/Crypto-Ticker.png -------------------------------------------------------------------------------- /Images/Customizable-Cryptocurrency-Dashboard-with-Chart-Binance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDouble/HTML-Crypto-Currency-Chart-Snippets/652a88c4db5ba242ef0924b139981466d2a10d9a/Images/Customizable-Cryptocurrency-Dashboard-with-Chart-Binance.png -------------------------------------------------------------------------------- /Images/Mini-Chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDouble/HTML-Crypto-Currency-Chart-Snippets/652a88c4db5ba242ef0924b139981466d2a10d9a/Images/Mini-Chart.png -------------------------------------------------------------------------------- /Images/Overview-Chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDouble/HTML-Crypto-Currency-Chart-Snippets/652a88c4db5ba242ef0924b139981466d2a10d9a/Images/Overview-Chart.png -------------------------------------------------------------------------------- /Images/Single-Ticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDouble/HTML-Crypto-Currency-Chart-Snippets/652a88c4db5ba242ef0924b139981466d2a10d9a/Images/Single-Ticker.png -------------------------------------------------------------------------------- /Images/Symbol-Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDouble/HTML-Crypto-Currency-Chart-Snippets/652a88c4db5ba242ef0924b139981466d2a10d9a/Images/Symbol-Info.png -------------------------------------------------------------------------------- /Images/Technical-Analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDouble/HTML-Crypto-Currency-Chart-Snippets/652a88c4db5ba242ef0924b139981466d2a10d9a/Images/Technical-Analysis.png -------------------------------------------------------------------------------- /Images/binance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDouble/HTML-Crypto-Currency-Chart-Snippets/652a88c4db5ba242ef0924b139981466d2a10d9a/Images/binance.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Alpay Yildirim 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Mini-Chart.html: -------------------------------------------------------------------------------- 1 | 2 | 21 | -------------------------------------------------------------------------------- /Overview-Chart.html: -------------------------------------------------------------------------------- 1 | 2 | 36 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 💹 HTML Crypto Currency Chart Snippets 💹 2 | 💹 Simple HTML Snippets to create Tickers / Charts of Cryptocurrencies with the TradingView API 💹 3 | 4 |  5 | 6 | ## [💹 Candlestick Chart with Indicators 💹](https://idouble.github.io/HTML-Crypto-Currency-Chart-Snippets/Chart) 7 | 8 |  9 | 10 | ``` 11 | 38 | ``` 39 | 40 | ## [💲 Crypto Currency Ticker 💲](https://idouble.github.io/HTML-Crypto-Currency-Chart-Snippets/Ticker) 41 | 42 |  43 | 44 | ``` 45 | 70 | ``` 71 | 72 | ## [💲 Crypto Currency Ticker Tape 💲](https://idouble.github.io/HTML-Crypto-Currency-Chart-Snippets/Ticker-Tape) 73 | 74 |  75 | 76 | ``` 77 | 103 | ``` 104 | 105 | ## [💹 Mini Chart 💹](https://idouble.github.io/HTML-Crypto-Currency-Chart-Snippets/Mini-Chart) 106 | 107 |  108 | 109 | ``` 110 | 129 | ``` 130 | 131 | ## [💹 Overview Chart 💹](https://idouble.github.io/HTML-Crypto-Currency-Chart-Snippets/Overview-Chart) 132 | 133 |  134 | 135 | ``` 136 | 170 | ``` 171 | 172 | ## [💹 Technical Analysis 💹](https://idouble.github.io/HTML-Crypto-Currency-Chart-Snippets/Technical-Analysis) 173 | 174 |  175 | 176 | ``` 177 | 193 | ``` 194 | 195 | ## [💲 Single Ticker 💲](https://idouble.github.io/HTML-Crypto-Currency-Chart-Snippets/Single-Ticker) 196 | 197 |  198 | 199 | ``` 200 | 213 | ``` 214 | 215 | ## [💲 Symbol Info 💲](https://idouble.github.io/HTML-Crypto-Currency-Chart-Snippets/Symbol-Info) 216 | 217 |  218 | 219 | ``` 220 | 233 | ``` 234 | 235 |  236 | -------------------------------------------------------------------------------- /Single-Ticker.html: -------------------------------------------------------------------------------- 1 | 2 | 15 | -------------------------------------------------------------------------------- /Symbol-Info.html: -------------------------------------------------------------------------------- 1 | 2 | 15 | -------------------------------------------------------------------------------- /Technical-Analysis.html: -------------------------------------------------------------------------------- 1 | 2 | 18 | -------------------------------------------------------------------------------- /Ticker-Tape.html: -------------------------------------------------------------------------------- 1 | 2 | 28 | -------------------------------------------------------------------------------- /Ticker.html: -------------------------------------------------------------------------------- 1 | 2 | 27 | --------------------------------------------------------------------------------