forked from asafravid/sss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsss_config.py
52 lines (46 loc) · 2.7 KB
/
sss_config.py
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
#############################################################################
#
# Version 0.1.92 - Author: Asaf Ravid <[email protected]>
#
# Stock Screener and Scanner - based on yfinance
# Copyright (C) 2021 Asaf Ravid
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
#############################################################################
run_custom_tase = False # Custom Portfolio
run_custom = False
run_tase = True # Tel Aviv Stock Exchange
run_nsr = False # NASDAQ100+S&P500+RUSSEL1000
run_all = False # All Nasdaq Stocks
research_mode = True # Research Mode
research_mode_max_ev = False # @JustLearning's suggestion in Telegram: Multi-Dimentional Scan by Max EV Limit rather than Min EV Limit
# When automatic_results_folder_selection is False, the explicitly specified paths below are used for the
# reference and new_run folder locations.
# When automatic_results_folder_selection is True, the program will automatically use the most recently created
# folder(s).
automatic_results_folder_selection = False
# Upon 1st ever run: reference must be set to None
# After 1st ever Run: Recommended to use reference (filter and damper)
# The research mode shall run on new_run as input (new_run >= reference_run) where > means newer
reference_run_custom = None # 'Results/All/20210606-011608_Tchnlgy3.0_FnnclSrvcs0.5_A_Bdb_nRes3195'
reference_run_tase = 'Results/Tase/20210702-085910_Tase_Tchnlgy3.0_RlEstt1.0_Bdb_nRes295'
reference_run_nsr = 'Results/Nsr/20210703-141918_Tchnlgy3.0_FnnclSrvcs0.5_Bdb_nRes825'
reference_run_all = 'Results/All/20210704-014737_Tchnlgy3.0_FnnclSrvcs0.5_A_Bdb_nRes2752'
new_run_tase = 'Results/Tase/20210708-121809_Tase_Tchnlgy3.0_RlEstt1.0_Bdb_nRes293'
new_run_nsr = 'Results/Nsr/20210708-110048_Tchnlgy3.0_FnnclSrvcs0.5_Bdb_nRes815'
new_run_all = 'Results/All/20210707-163412_Tchnlgy3.0_FnnclSrvcs0.5_A_Bdb_nRes2697'
new_run_custom = 'Results/Custom/20210607-002552_Bdb_nRes3_Custom'
custom_portfolio = ['GRVY']
custom_portfolio_tase = ['FORTY.TA']