[docs]classadaptive:""" This class is mostly used as the default value for the functions' parameters when the value of ``None`` has some other meaning or when the meaning of the parameter depends on the other parameter's values, :ref:`otp.config <configuration>` options or the context. Examples -------- For example, setting :py:class:`~onetick.py.DataSource` ``symbols`` parameter to ``otp.adaptive`` allows to set symbols when running the query later. >>> data = otp.DataSource('SOME_DB', tick_type='TT', symbols=otp.adaptive) >>> otp.run(data, symbols='S1') Time X 0 2003-12-01 00:00:00.000 1 1 2003-12-01 00:00:00.001 2 2 2003-12-01 00:00:00.002 3 This is the default value of ``symbols`` parameter, so ommiting it also works: >>> data = otp.DataSource('SOME_DB', tick_type='TT') >>> otp.run(data, symbols='S1') Time X 0 2003-12-01 00:00:00.000 1 1 2003-12-01 00:00:00.001 2 2 2003-12-01 00:00:00.002 3 """
classadaptive_to_default(adaptive):""" If something is not specified and can not be deduced, then use the default one """classdefault(object):""" Used when you need to specify a default without evaluating it (e.g. default timezone) """
[docs]classrange:""" Class that expresses OneTick ranges. For example, if you want to express a range in the .split() method, then you can use this range. It has start and stop fields that allow you to define a range. See also -------- :py:meth:`~onetick.py.Source.split`. Examples -------- >>> data = otp.Ticks(X=[0.33, -5.1, otp.nan, 9.4]) >>> r1, r2, r3 = data.split(data['X'], [otp.nan, otp.range(0, 100)], default=True) >>> r1() Time X 0 2003-12-01 00:00:00.002 NaN >>> r2() Time X 0 2003-12-01 00:00:00.000 0.33 1 2003-12-01 00:00:00.003 9.40 >>> r3() Time X 0 2003-12-01 00:00:00.001 -5.1 """def__init__(self,start,stop):self.start=startself.stop=stop