-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbollinger_breakout.json
More file actions
58 lines (58 loc) · 1.31 KB
/
Copy pathbollinger_breakout.json
File metadata and controls
58 lines (58 loc) · 1.31 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
{
"settings": {
"initial_capital": 429496729600,
"commission_pct": 0,
"slippage_ticks": 2,
"tick_size": 42949672
},
"vars": [
["sma_mid", {"BbandsMid": {"series": "Close", "k": 5}}],
["upper_band", {"BbandsUpper": {"series": "Close", "k": 5, "mult": 10737418240}}],
["lower_band", {"BbandsLower": {"series": "Close", "k": 5, "mult": 10737418240}}]
],
"signal": null,
"statements": [
{
"Entry": {
"id": "EL",
"direction": "Long",
"qty": null,
"limit": null,
"stop": null,
"when": {"Crossover": ["Close", {"Var": "upper_band"}]}
}
},
{
"Exit": {
"id": "EL",
"from": null,
"qty": null,
"profit": null,
"loss": null,
"trail_offset": null,
"when": {"Crossunder": ["Close", {"Var": "sma_mid"}]}
}
},
{
"Entry": {
"id": "ES",
"direction": "Short",
"qty": null,
"limit": null,
"stop": null,
"when": {"Crossunder": ["Close", {"Var": "lower_band"}]}
}
},
{
"Exit": {
"id": "ES",
"from": null,
"qty": null,
"profit": null,
"loss": null,
"trail_offset": null,
"when": {"Crossover": ["Close", {"Var": "sma_mid"}]}
}
}
]
}