forked from amor71/trading_strategies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtradeplan.toml
48 lines (35 loc) · 1.31 KB
/
tradeplan.toml
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
# This is a TOML configuration file.
# if set to true, allow running outside market open hours
bypass_market_schedule = true
# ticket scanners, may have several
# scanners during the day
[scanners]
[scanners.GoldDigger]
filename = "scanners/gold_digger.py"
target_strategy_name = "golden_pair"
[scanners.MamaFama]
filename = "scanners/mama_fama.py"
target_strategy_name = "SwingMamaFama"
# trading strategies, can have several *strategy* blocks
[strategies]
# strategy class name, must implement Strategy class
[strategies.MomentumLongV3]
filename = "momentum_long_v3.py"
# check_patterns = true
# trading schedules block, trades many have
# several windows within the same day
[[strategies.MomentumLongV3.schedule]]
start = 15
duration = 60
# strategy class name, must implement Strategy class
[strategies.GoldenPair]
filename = "golden_pair.py"
# check_patterns = true
# trading schedules block, trades many have
# several windows within the same day
[[strategies.GoldenPair.schedule]]
start = 15
duration = 60
# strategy class name, must implement Strategy class
[strategies.SwingMamaFama]
filename = "swing_mana_fama.py"