Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
H
hb-data
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
子恒
hb-data
Commits
efa6ae4f
Commit
efa6ae4f
authored
Dec 22, 2021
by
子恒
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Bugfix]修改默认参数
parent
da739b0b
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
10 additions
and
10 deletions
+10
-10
rl_fof_concent.py
sync/rl_fof_concent.py
+1
-1
rl_fof_fund_base_info.py
sync/rl_fof_fund_base_info.py
+1
-1
rl_fof_fund_multi_asset_config.py
sync/rl_fof_fund_multi_asset_config.py
+1
-1
rl_fof_fund_multi_config_info.py
sync/rl_fof_fund_multi_config_info.py
+1
-1
rl_fof_fund_multi_industry_config.py
sync/rl_fof_fund_multi_industry_config.py
+1
-1
rl_fof_fund_multi_stock_style.py
sync/rl_fof_fund_multi_stock_style.py
+1
-1
rl_fof_fund_performance_score.py
sync/rl_fof_fund_performance_score.py
+1
-1
rl_fof_fund_performance_value.py
sync/rl_fof_fund_performance_value.py
+1
-1
rl_fof_manager_product.py
sync/rl_fof_manager_product.py
+1
-1
rl_fof_multi_brinson_industry_attr_total.py
sync/rl_fof_multi_brinson_industry_attr_total.py
+1
-1
No files found.
sync/rl_fof_concent.py
View file @
efa6ae4f
...
...
@@ -90,7 +90,7 @@ class SyncFdManagerFactor(BaseSync):
if
__name__
==
'__main__'
:
parser
=
argparse
.
ArgumentParser
()
parser
.
add_argument
(
'--rebuild'
,
type
=
bool
,
default
=
Tru
e
)
parser
.
add_argument
(
'--rebuild'
,
type
=
bool
,
default
=
Fals
e
)
parser
.
add_argument
(
'--update'
,
type
=
bool
,
default
=
False
)
args
=
parser
.
parse_args
()
if
args
.
rebuild
:
...
...
sync/rl_fof_fund_base_info.py
View file @
efa6ae4f
...
...
@@ -89,7 +89,7 @@ class SyncFdManagerFactor(BaseSync):
if
__name__
==
'__main__'
:
parser
=
argparse
.
ArgumentParser
()
parser
.
add_argument
(
'--rebuild'
,
type
=
bool
,
default
=
Tru
e
)
parser
.
add_argument
(
'--rebuild'
,
type
=
bool
,
default
=
Fals
e
)
parser
.
add_argument
(
'--update'
,
type
=
bool
,
default
=
False
)
args
=
parser
.
parse_args
()
if
args
.
rebuild
:
...
...
sync/rl_fof_fund_multi_asset_config.py
View file @
efa6ae4f
...
...
@@ -99,7 +99,7 @@ class SyncFdManagerFactor(BaseSync):
if
__name__
==
'__main__'
:
parser
=
argparse
.
ArgumentParser
()
parser
.
add_argument
(
'--rebuild'
,
type
=
bool
,
default
=
Tru
e
)
parser
.
add_argument
(
'--rebuild'
,
type
=
bool
,
default
=
Fals
e
)
parser
.
add_argument
(
'--update'
,
type
=
bool
,
default
=
False
)
args
=
parser
.
parse_args
()
if
args
.
rebuild
:
...
...
sync/rl_fof_fund_multi_config_info.py
View file @
efa6ae4f
...
...
@@ -99,7 +99,7 @@ class SyncFdManagerFactor(BaseSync):
if
__name__
==
'__main__'
:
parser
=
argparse
.
ArgumentParser
()
parser
.
add_argument
(
'--rebuild'
,
type
=
bool
,
default
=
Tru
e
)
parser
.
add_argument
(
'--rebuild'
,
type
=
bool
,
default
=
Fals
e
)
parser
.
add_argument
(
'--update'
,
type
=
bool
,
default
=
False
)
args
=
parser
.
parse_args
()
if
args
.
rebuild
:
...
...
sync/rl_fof_fund_multi_industry_config.py
View file @
efa6ae4f
...
...
@@ -149,7 +149,7 @@ class SyncFdManagerFactor(BaseSync):
if
__name__
==
'__main__'
:
parser
=
argparse
.
ArgumentParser
()
parser
.
add_argument
(
'--rebuild'
,
type
=
bool
,
default
=
Tru
e
)
parser
.
add_argument
(
'--rebuild'
,
type
=
bool
,
default
=
Fals
e
)
parser
.
add_argument
(
'--update'
,
type
=
bool
,
default
=
False
)
args
=
parser
.
parse_args
()
if
args
.
rebuild
:
...
...
sync/rl_fof_fund_multi_stock_style.py
View file @
efa6ae4f
...
...
@@ -93,7 +93,7 @@ class SyncFdManagerFactor(BaseSync):
if
__name__
==
'__main__'
:
parser
=
argparse
.
ArgumentParser
()
parser
.
add_argument
(
'--rebuild'
,
type
=
bool
,
default
=
Tru
e
)
parser
.
add_argument
(
'--rebuild'
,
type
=
bool
,
default
=
Fals
e
)
parser
.
add_argument
(
'--update'
,
type
=
bool
,
default
=
False
)
args
=
parser
.
parse_args
()
if
args
.
rebuild
:
...
...
sync/rl_fof_fund_performance_score.py
View file @
efa6ae4f
...
...
@@ -129,7 +129,7 @@ class SyncFdManagerFactor(BaseSync):
if
__name__
==
'__main__'
:
parser
=
argparse
.
ArgumentParser
()
parser
.
add_argument
(
'--rebuild'
,
type
=
bool
,
default
=
Tru
e
)
parser
.
add_argument
(
'--rebuild'
,
type
=
bool
,
default
=
Fals
e
)
parser
.
add_argument
(
'--update'
,
type
=
bool
,
default
=
False
)
args
=
parser
.
parse_args
()
if
args
.
rebuild
:
...
...
sync/rl_fof_fund_performance_value.py
View file @
efa6ae4f
...
...
@@ -107,7 +107,7 @@ class SyncFdManagerFactor(BaseSync):
if
__name__
==
'__main__'
:
parser
=
argparse
.
ArgumentParser
()
parser
.
add_argument
(
'--rebuild'
,
type
=
bool
,
default
=
Tru
e
)
parser
.
add_argument
(
'--rebuild'
,
type
=
bool
,
default
=
Fals
e
)
parser
.
add_argument
(
'--update'
,
type
=
bool
,
default
=
False
)
args
=
parser
.
parse_args
()
if
args
.
rebuild
:
...
...
sync/rl_fof_manager_product.py
View file @
efa6ae4f
...
...
@@ -117,7 +117,7 @@ class SyncFdManagerFactor(BaseSync):
if
__name__
==
'__main__'
:
parser
=
argparse
.
ArgumentParser
()
parser
.
add_argument
(
'--rebuild'
,
type
=
bool
,
default
=
Tru
e
)
parser
.
add_argument
(
'--rebuild'
,
type
=
bool
,
default
=
Fals
e
)
parser
.
add_argument
(
'--update'
,
type
=
bool
,
default
=
False
)
args
=
parser
.
parse_args
()
if
args
.
rebuild
:
...
...
sync/rl_fof_multi_brinson_industry_attr_total.py
View file @
efa6ae4f
...
...
@@ -101,7 +101,7 @@ class SyncFdManagerFactor(BaseSync):
if
__name__
==
'__main__'
:
parser
=
argparse
.
ArgumentParser
()
parser
.
add_argument
(
'--rebuild'
,
type
=
bool
,
default
=
Tru
e
)
parser
.
add_argument
(
'--rebuild'
,
type
=
bool
,
default
=
Fals
e
)
parser
.
add_argument
(
'--update'
,
type
=
bool
,
default
=
False
)
args
=
parser
.
parse_args
()
if
args
.
rebuild
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment