mirror of
https://github.com/basicswap/basicswap.git
synced 2025-01-03 17:29:26 +00:00
ui: Add trading chart
This commit is contained in:
parent
1987931332
commit
c1482a8280
2 changed files with 1127 additions and 1 deletions
File diff suppressed because one or more lines are too long
|
@ -115,6 +115,34 @@
|
||||||
<div class="flex flex-wrap items-center justify-between -m-2">
|
<div class="flex flex-wrap items-center justify-between -m-2">
|
||||||
<div class="w-full pt-2">
|
<div class="w-full pt-2">
|
||||||
|
|
||||||
|
|
||||||
|
<!-- TradingView Widget BEGIN -->
|
||||||
|
<div class="tradingview-widget-container">
|
||||||
|
<div id="tradingview_wrapper" class="h-96 mb-10"></div>
|
||||||
|
<script type="text/javascript" src="/static/js/libs/TV.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
new TradingView.widget(
|
||||||
|
{
|
||||||
|
"autosize": true,
|
||||||
|
"symbol": "COINBASE:BTCUSD",
|
||||||
|
"interval": "D",
|
||||||
|
"timezone": "Etc/UTC",
|
||||||
|
"theme": "light",
|
||||||
|
"style": "1",
|
||||||
|
"locale": "en",
|
||||||
|
"toolbar_bg": "#f1f3f6",
|
||||||
|
"enable_publishing": false,
|
||||||
|
"allow_symbol_change": true,
|
||||||
|
"save_image": false,
|
||||||
|
"container_id": "tradingview_wrapper"
|
||||||
|
}
|
||||||
|
);
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
<!-- TradingView Widget END -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<form method="post">
|
<form method="post">
|
||||||
|
|
||||||
<div class="flex justify-between items-center pb-4 bg-white">
|
<div class="flex justify-between items-center pb-4 bg-white">
|
||||||
|
|
Loading…
Reference in a new issue