Skip to content

Commit

Permalink
ENH: Add Korea Exchange
Browse files Browse the repository at this point in the history
  • Loading branch information
Freddie Vargus committed Nov 27, 2018
1 parent 29ec980 commit a4391be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions zipline/country.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ class CountryCode(object):
NORWAY = code('NORWAY')
PORTUGAL = code('PORTUGAL')
SINGAPORE = code('SINGAPORE')
SOUTH_KOREA = code('KOREA, REPUBLIC OF')
SPAIN = code('SPAIN')
SWEDEN = code('SWEDEN')
SWITZERLAND = code('SWITZERLAND')
Expand Down
2 changes: 2 additions & 0 deletions zipline/pipeline/domain.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ def __repr__(self):
IN_EQUITIES = EquityCalendarDomain(CountryCode.INDIA, "XBOM")
IT_EQUITIES = EquityCalendarDomain(CountryCode.ITALY, 'XMIL')
JP_EQUITIES = EquityCalendarDomain(CountryCode.JAPAN, 'XTKS')
KR_EQUITIES = EquityCalendarDomain(CountryCode.SOUTH_KOREA, 'XKRX')
NL_EQUITIES = EquityCalendarDomain(CountryCode.NETHERLANDS, 'XAMS')
NO_EQUITIES = EquityCalendarDomain(CountryCode.NORWAY, 'XOSL')
NZ_EQUITIES = EquityCalendarDomain(CountryCode.NEW_ZEALAND, 'XNZE')
Expand Down Expand Up @@ -257,6 +258,7 @@ def __repr__(self):
IN_EQUITIES,
IT_EQUITIES,
JP_EQUITIES,
KR_EQUITIES,
NL_EQUITIES,
NO_EQUITIES,
NZ_EQUITIES,
Expand Down

0 comments on commit a4391be

Please sign in to comment.