v0.6: Dashboard title update (v0.5.1 layout unchanged)
This commit is contained in:
parent
0ba7aaded3
commit
4c716914b9
|
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/env python3
|
||||
"""Trading Bot Dashboard v0.5.1 (RSI + Bollinger Bands HYBRID) - Auto-load 1-Day chart on page load"""
|
||||
"""Trading Bot Dashboard v0.6 (RSI + Bollinger Bands HYBRID) - Auto-load 1-Day chart on page load"""
|
||||
import sqlite3
|
||||
from fastapi import FastAPI
|
||||
from fastapi.responses import HTMLResponse
|
||||
|
|
@ -110,7 +110,7 @@ async def dashboard():
|
|||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Trading Bot v0.5.1</title>
|
||||
<title>Trading Bot v0.6</title>
|
||||
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
||||
<style>
|
||||
*{margin:0;padding:0;box-sizing:border-box}
|
||||
|
|
@ -170,7 +170,7 @@ body{font-family:Segoe UI,Arial;background:#1e1e1e;color:#d0d0d0;min-height:100v
|
|||
<div class="container">
|
||||
|
||||
<div class="header">
|
||||
<div><h1>🤖 Trading Bot v0.5.1</h1><p>P&L Analytics</p></div>
|
||||
<div><h1>🤖 Trading Bot v0.6</h1><p>P&L Analytics</p></div>
|
||||
<div class="status" id="st">● LOADING</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue