add 120
This commit is contained in:
parent
d31855785d
commit
ea611f0cdc
5
gen.py
5
gen.py
@ -215,6 +215,11 @@ def collect(data: DataStore, collector: OutputCollector, corp: database.KRXCorp
|
||||
d120[nday + 1] <= d120[nday]):
|
||||
collector.collect("모두 정배열", corp, stock.index[nday])
|
||||
|
||||
if(d120[nday + 1] <= d120[nday] and
|
||||
d120[nday + 1] < d240[nday] and
|
||||
d120[nday] >= d240[nday]):
|
||||
collector.collect("120선240선추월", corp, stock.index[nday])
|
||||
|
||||
if (d5[nday + 1] < d20[nday + 1] and d20[nday] < d5[nday]):
|
||||
collector.collect("d20d5돌파", corp, stock.index[nday])
|
||||
|
||||
|
@ -64,3 +64,6 @@
|
||||
description: '볼린저 밴드(25일선 ,표준편차 2배)의 위 밴드 값을 넘었을 때 표시.'
|
||||
- name: 양봉사이20일선
|
||||
description: Open과 Close 사이 20일 선
|
||||
- name: 120선240선추월
|
||||
description: |
|
||||
120선이 상승해서 240일 선을 뚫을때
|
Loading…
Reference in New Issue
Block a user