{
"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"
]
}
http://<YOUR_SERVER>:8880/webhook
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
{
"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:
{
"id": "alert-{{ticker}}-{{time}}",
"indicator": "SuperTrend",
"volatility": "low", // or "medium"/"high"
"timestamp": "{{time}}",
"price": {{close}}
}