diff --git a/dashboard/static/index.html b/dashboard/static/index.html index f0fb52c..914c185 100644 --- a/dashboard/static/index.html +++ b/dashboard/static/index.html @@ -145,6 +145,8 @@ footer a{color:#3f3f4a;text-decoration:none}footer a:hover{color:var(--tx)} + + diff --git a/live/paper_trader.py b/live/paper_trader.py index 758ccda..7fc5694 100644 --- a/live/paper_trader.py +++ b/live/paper_trader.py @@ -251,7 +251,7 @@ def compute_signals(): "SELL" if btc_fr > 0 else "BUY" if btc_fr < 0 else "NONE" ) ) - if annual_fr > 0.005: + if annual_fr > 0.05: # >5% APR (production threshold) STRATEGIES["Funding Rate Arb"]["signals"].append( {"time":time.time(),"signal":"SELL" if btc_fr > 0 else "BUY", "strength": min(0.6, annual_fr * 50),