forked from tradesdontlie/tradingview-mcp
-
Notifications
You must be signed in to change notification settings - Fork 762
Expand file tree
/
Copy pathrules.json
More file actions
65 lines (58 loc) · 1.95 KB
/
Copy pathrules.json
File metadata and controls
65 lines (58 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"watchlist": ["BTCUSDT"],
"default_timeframe": "1",
"strategy": {
"name": "10-Second Momentum Scalper",
"sources": [
"Price momentum — buy if last close > previous close (green candle)",
"RSI filter — only trade when RSI is not at an extreme (30–70 range)"
],
"primary_timeframes": [
"1-minute (signal source)",
"10-second execution loop"
]
},
"indicators": {
"rsi_14": "Momentum filter. Only trade when RSI is between 30–70 (avoid extremes).",
"price_momentum": "Compare last close vs previous close. Up = long signal. Down = short signal."
},
"bias_criteria": {
"bullish": [
"Last 1-min candle closed higher than the one before it",
"RSI is between 30 and 70"
],
"bearish": [
"Last 1-min candle closed lower than the one before it",
"RSI is between 30 and 70"
],
"neutral": [
"RSI is above 70 (overbought — skip)",
"RSI is below 30 (oversold — skip)",
"Candle close change is less than 0.05% (chop — skip)"
]
},
"entry_rules": {
"long": [
"Last close > previous close by at least 0.05%",
"RSI between 30 and 70",
"Enter market buy immediately"
],
"short": [
"Last close < previous close by at least 0.05%",
"RSI between 30 and 70",
"Enter market sell immediately"
]
},
"exit_rules": [
"Exit automatically after 10 seconds (next loop tick closes previous position)",
"No manual exit management — pure time-based scalp"
],
"risk_rules": [
"Fixed trade size: 1% of portfolio per trade",
"Maximum trade size: $3.00",
"Maximum 6 trades per 60-second run",
"No stop loss — exit is time-based at next tick",
"For demo purposes only — minimum BitGet order size may apply"
],
"notes": "Demo strategy for YouTube video. Runs 6 trades over 60 seconds, one every 10 seconds. Signal is simple price momentum on 1-min candles with RSI sanity check."
}