This function reads sym/asy data from wdc and puts it in mongodb
Warning
In general, nobody except the database admins will need to use this function
gme.ind.mapSymAsyMongo(2001)
written by AJ, 20130123
This function reads sym/asy data from the mongodb.
import datetime as dt
symList = gme.ind.readSymAsy(sTime=dt.datetime(2011,1,1),eTime=dt.datetime(2011,6,1),symh=[5,50],asyd=[-10,0])
written by AJ, 20130131
This function reads sym/asy data from the WDC kyoto website
Warning
You should not use this. Use the general function gme.ind.symasy.readSymAsy() instead.
import datetime as dt
symList = gme.ind.readSymAsyWeb(dt.datetime(2011,1,1),eTime=dt.datetime(2011,1,5))
written by AJ, 20130131
a class to represent a record of sym/asy data. Extends gme.base.gmeBase.gmeData. Note that sym/asym data is available from 1980-present day (or whatever the latest WDC has uploaded is). The data are 1-minute values. More info on sym/asy can be found here
Note
If any of the members have a value of None, this means that they could not be read for that specific time
emptySymAsyObj = gme.ind.symAsyRec()
written by AJ, 20130131
This method is used to convert a line of sym/asy data from the WDC to a symAsyRec object
Note
In general, users will not need to worry about this.
Belongs to: gme.ind.symasy.symAsyRec
mysymAsyObj.parseWeb(webLine)
written by AJ, 20130131
alias of gme.ind.symasy