Tracker Dashboard

System Status: Running
Configuration
Current Configuration
{
  "buy_threshold": 2.5,
  "emails": [
    "971545552471",
    "971527080892",
    "971507343021"
  ],
  "indicator_weights": {
    "FairValueGap": 0.5,
    "Hacolt": 0.8,
    "MarketSentimentTechnicals": 0.6,
    "MomentumStrategy": 0.7,
    "RangeFilter": 1,
    "SuperTrend": 1.2
  },
  "poll_interval": 1700,
  "sell_threshold": 2.4,
  "tickers": [
    "CALM",
    "ELMD",
    "EXEL",
    "NET",
    "FIX",
    "ITRN",
    "META",
    "RJF",
    "GOOGL",
    "BABA",
    "TSLA",
    "QFIN",
    "NVDA",
    "FTNT",
    "PLMR",
    "ROK",
    "COST",
    "AAPL"
  ]
}
Stock State (Summary)
Detailed Stock State (Raw JSON)

      
http://<YOUR_SERVER>:8880/webhook

Webhook & TradingView Alerts Setup

TradingView can send signals directly to this system via a webhook. Use the URL below in your TradingView alert settings.

Your webhook URL is:

http://<YOUR_SERVER>/webhook

How to Create TradingView Alerts

  1. Click the "Alerts" icon in TradingView and select "Create Alert".
  2. Set your condition (e.g., SuperTrend turning bullish for a BUY signal).
  3. Check the "Webhook URL" box and paste the URL above.
  4. In the "Alert Message" field, use a JSON payload similar to:
                    
      {
        "id": "alert-{{ticker}}-{{time}}",
        "indicator": "SuperTrend",
        "action": "buy",
        "timestamp": "{{time}}",
        "price": {{close}}
      }
                    
                  
    (Change "action" to "sell" for SELL signals.)

For volatility updates, create a separate alert with a payload like:

  1. Create an alert for volatility.
  2. Use a payload similar to:
                    
      {
        "id": "alert-{{ticker}}-{{time}}",
        "indicator": "SuperTrend",
        "volatility": "low",  // or "medium"/"high"
        "timestamp": "{{time}}",
        "price": {{close}}
      }
                    
                  
  3. This will update the system’s stored volatility info.
Recent Logs