forked from amor71/LiuAlgoTrader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtradeplan.toml
61 lines (38 loc) · 1.42 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
47
48
49
50
51
52
53
54
55
56
# This is a TOML configuration file.
# if set to true, allow running outside market open hours
bypass_market_schedule = false
events = ["second", "minute", "trade", "quote"]
# ticket scanners, may have several
# scanners during the day
[scanners]
[scanners.momentum]
# check documentation for supported providers
provider = 'polygon'
# scan for tickers with minimal volume since day start
min_volume = 30000
# minimum daily percentage gap
min_gap = 3.5
# minimum last day dollar volume
min_last_dv = 500000
min_share_price = 2.0
max_share_price = 20.0
# How many minutes from market open, to start running scanner
from_market_open = 15
recurrence = 5
max_symbols = 440
# target_strategy_name = ""
# trading strategies, can have several *strategy* blocks
[strategies]
# strategy class name, must implement Strategy class
[strategies.MomentumLongV3]
filename = "/Users/amichayoren/dev/trades/momentum_long_v3.py"
[[strategies.MomentumLongV3.schedule]]
start = 15
duration = 180
[strategies.VWAPShort]
filename = "/Users/amichayoren/dev/trades/vwap_short.py"
# trading schedules block, trades many have
# several windows within the same day
[[strategies.VWAPShort.schedule]]
start = 15
duration = 180