All Projects → borakilicoglu → svelte-tradingview-widget

borakilicoglu / svelte-tradingview-widget

Licence: MIT license
Svelte component for rendering the TradingView Advanced Real-Time Chart Widget

Programming Languages

HTML
75241 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to svelte-tradingview-widget

TradingViewTools
Some scripts to automate things related to TradingView
Stars: ✭ 33 (-44.07%)
Mutual labels:  tradingview
svelte-popper
🍿🔗Official Svelte wrapper for Popper - the positioning library
Stars: ✭ 27 (-54.24%)
Mutual labels:  svelte-component
awesome-pinescript
A Comprehensive Collection of Everything Related to Tradingview Pine Script.
Stars: ✭ 563 (+854.24%)
Mutual labels:  tradingview
tradingview-jsapi-binance
Sample implementation of TradingView Charting Library JS API for Binance exchange
Stars: ✭ 41 (-30.51%)
Mutual labels:  tradingview
tvjs-overlays
💴 Collection of overlays made by the TradingVueJs community
Stars: ✭ 65 (+10.17%)
Mutual labels:  tradingview
TradingView-to-ThinkorSwim
ThinkorSwim scripts/indicators shared on https://usethinkscript.com/
Stars: ✭ 79 (+33.9%)
Mutual labels:  tradingview
tradingview-webhooks
Backend service converting tradingview alerts into action.
Stars: ✭ 44 (-25.42%)
Mutual labels:  tradingview
svelte-time
Format a timestamp using day.js
Stars: ✭ 70 (+18.64%)
Mutual labels:  svelte-component
pinescript practice
PineScript 是 TradingView 網站看盤多功能圖表專用的程式語言,這邊是程式碼範例的存放處,方便大家複製貼上。我將教學的課程,分享在 youtube 頻道,歡迎搭配使用。
Stars: ✭ 121 (+105.08%)
Mutual labels:  tradingview
ccex-api
Cryptocurrency exchanges realtime api wrapper
Stars: ✭ 29 (-50.85%)
Mutual labels:  tradingview
pine-script-syntax-highlighting
Syntax Highlighting for Pine Script
Stars: ✭ 58 (-1.69%)
Mutual labels:  tradingview
TradingView-UDF
TradingView charting library UDF implemented in PHP.
Stars: ✭ 21 (-64.41%)
Mutual labels:  tradingview
praecox-datepicker
A date picker built with Svelte.Simple and flexible, supporting functions such as single selection, multiple selection, disabling, and marking.
Stars: ✭ 66 (+11.86%)
Mutual labels:  svelte-component
howtrader
Howtrader is a crypto currency quant framework, you can easily develop, backtest and run your own strategy in real market. It also supports tradingview or other 3rd party signals, just simply send a post request and it will help trade automatically. Now it only support binance spot, futures and inverse futures exchange. It will support okex, ftx…
Stars: ✭ 294 (+398.31%)
Mutual labels:  tradingview
awesome-tradingview
Curated list of noteworthy TradingView Strategies, Indicators and Alert Scripts for Trading Bots (PineScript)
Stars: ✭ 173 (+193.22%)
Mutual labels:  tradingview
Bybit-Auto-Trading-Bot-Ordes-placed-via-TradingView-Webhook
Python based Trading Bot that uses TradingView.com webhook JSON alerts to place orders(buy/sell/close/manage positions/TP/SL/TS etc.) on Bybit.com. Hire me directly here https://www.freelancer.com/u/Beannsofts for any assistance
Stars: ✭ 235 (+298.31%)
Mutual labels:  tradingview
python-tradingview-ta
Unofficial TradingView technical analysis API wrapper.
Stars: ✭ 751 (+1172.88%)
Mutual labels:  tradingview
tradingview-alert-binance-trader
This trading bot listens to the TradingView alert emails on your inbox and executes trades on Binance based on the parameters set on the TD alerts.
Stars: ✭ 153 (+159.32%)
Mutual labels:  tradingview
add-tradingview-alerts-tool
Automated entry of TradingView alerts for bot trading tools such as 3Commas, Alertatron, CryptoHopper, etc.
Stars: ✭ 467 (+691.53%)
Mutual labels:  tradingview
svelte-readotron
Svelte component to display an estimated reading time
Stars: ✭ 36 (-38.98%)
Mutual labels:  svelte-component

svelte-tradingview-widget

Svelte component for rendering the TradingView Advanced Real-Time Chart Widget.

npm license npm

image

Demo

https://borakilicoglu.github.io/svelte-tradingview-widget

Install

yarn add svelte-tradingview-widget or npm install --save svelte-tradingview-widget

Usage

Basic example

import TradingViewWidget from "svelte-tradingview-widget";

<TradingViewWidget />;

Advanced example

Define all properties into options and then pass them to the component. See this page for the TradingView Advanced Real-Time Chart API.

import TradingViewWidget from "svelte-tradingview-widget";

let options = { symbol: "BINANCE:BTCUSDT", theme: "dark", autosize: true, locale: "fr" };

<TradingViewWidget {options} />;
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].