tea-bond 0.3.10__cp38-abi3-win_amd64.whl → 0.3.12__cp38-abi3-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of tea-bond might be problematic. Click here for more details.
- pybond/__init__.py +4 -2
- pybond/bond.py +4 -2
- pybond/download.py +0 -2
- pybond/pd.py +5 -1
- pybond/pnl.py +35 -3
- pybond/polars_utils.py +3 -1
- pybond/pybond.pyd +0 -0
- {tea_bond-0.3.10.dist-info → tea_bond-0.3.12.dist-info}/METADATA +1 -1
- {tea_bond-0.3.10.dist-info → tea_bond-0.3.12.dist-info}/RECORD +10 -10
- {tea_bond-0.3.10.dist-info → tea_bond-0.3.12.dist-info}/WHEEL +1 -1
pybond/__init__.py
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
3
|
from .bond import Bond
|
|
4
|
-
from .pybond import Future, Ib, Sse
|
|
4
|
+
from .pybond import Future, Ib, Sse, get_version
|
|
5
5
|
from .pybond import TfEvaluator as _TfEvaluatorRS
|
|
6
6
|
|
|
7
|
+
__version__ = get_version()
|
|
8
|
+
|
|
7
9
|
|
|
8
10
|
class TfEvaluator(_TfEvaluatorRS):
|
|
9
11
|
def __new__(cls, future, bond, *args, **kwargs):
|
|
@@ -13,4 +15,4 @@ class TfEvaluator(_TfEvaluatorRS):
|
|
|
13
15
|
return super().__new__(cls, future, bond, *args, **kwargs)
|
|
14
16
|
|
|
15
17
|
|
|
16
|
-
__all__ = ["Bond", "Future", "Ib", "Sse", "TfEvaluator"]
|
|
18
|
+
__all__ = ["Bond", "Future", "Ib", "Sse", "TfEvaluator", "__version__"]
|
pybond/bond.py
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
3
|
import os
|
|
4
|
-
from datetime import date
|
|
5
4
|
from importlib.util import find_spec
|
|
6
5
|
from pathlib import Path
|
|
6
|
+
from typing import TYPE_CHECKING
|
|
7
7
|
|
|
8
8
|
from .pybond import Bond as _BondRS
|
|
9
9
|
from .pybond import Future, download_bond
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
if TYPE_CHECKING:
|
|
12
|
+
from datetime import date
|
|
13
|
+
|
|
12
14
|
|
|
13
15
|
WIND_AVAILABLE = find_spec("WindPy") is not None
|
|
14
16
|
|
pybond/download.py
CHANGED
pybond/pd.py
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
from typing import TYPE_CHECKING
|
|
4
|
+
|
|
4
5
|
import polars as pl
|
|
5
6
|
|
|
6
7
|
from .pl import Bonds as PlBonds
|
|
7
8
|
from .pl import Futures as PlFutures
|
|
8
9
|
from .pl import TfEvaluators as PlTfEvaluators
|
|
9
10
|
|
|
11
|
+
if TYPE_CHECKING:
|
|
12
|
+
import pandas as pd
|
|
13
|
+
|
|
10
14
|
|
|
11
15
|
class TfEvaluators:
|
|
12
16
|
"""
|
pybond/pnl.py
CHANGED
|
@@ -56,11 +56,12 @@ class PercentFee(Fee):
|
|
|
56
56
|
|
|
57
57
|
|
|
58
58
|
def calc_bond_trade_pnl(
|
|
59
|
+
symbol: IntoExpr,
|
|
59
60
|
settle_time: IntoExpr,
|
|
60
61
|
qty: IntoExpr,
|
|
61
62
|
clean_price: IntoExpr,
|
|
62
63
|
clean_close: IntoExpr,
|
|
63
|
-
symbol: str = "",
|
|
64
|
+
# symbol: str = "",
|
|
64
65
|
bond_info_path: str | None = None,
|
|
65
66
|
multiplier: float = 1,
|
|
66
67
|
fee: str | Fee = "",
|
|
@@ -70,6 +71,7 @@ def calc_bond_trade_pnl(
|
|
|
70
71
|
) -> pl.Expr:
|
|
71
72
|
if isinstance(fee, Fee):
|
|
72
73
|
fee = fee.str
|
|
74
|
+
symbol = parse_into_expr(symbol)
|
|
73
75
|
settle_time = parse_into_expr(settle_time)
|
|
74
76
|
qty = parse_into_expr(qty)
|
|
75
77
|
clean_price = parse_into_expr(clean_price)
|
|
@@ -92,7 +94,7 @@ def calc_bond_trade_pnl(
|
|
|
92
94
|
"fee": 0,
|
|
93
95
|
}
|
|
94
96
|
kwargs = {
|
|
95
|
-
"symbol": symbol,
|
|
97
|
+
# "symbol": symbol,
|
|
96
98
|
"multiplier": multiplier,
|
|
97
99
|
"fee": fee,
|
|
98
100
|
"borrowing_cost": borrowing_cost,
|
|
@@ -101,8 +103,38 @@ def calc_bond_trade_pnl(
|
|
|
101
103
|
"bond_info_path": bond_info_path,
|
|
102
104
|
}
|
|
103
105
|
return register_plugin(
|
|
104
|
-
args=[settle_time, qty, clean_price, clean_close],
|
|
106
|
+
args=[symbol, settle_time, qty, clean_price, clean_close],
|
|
105
107
|
kwargs=kwargs,
|
|
106
108
|
symbol="calc_bond_trade_pnl",
|
|
107
109
|
is_elementwise=False,
|
|
108
110
|
)
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
def trading_from_pos(
|
|
114
|
+
time: IntoExpr,
|
|
115
|
+
pos: IntoExpr,
|
|
116
|
+
open: IntoExpr,
|
|
117
|
+
finish_price: IntoExpr | None = None,
|
|
118
|
+
cash: float = 1e8,
|
|
119
|
+
multiplier: float = 1,
|
|
120
|
+
qty_tick: float = 1.0,
|
|
121
|
+
*,
|
|
122
|
+
stop_on_finish: bool = False,
|
|
123
|
+
) -> pl.Expr:
|
|
124
|
+
time = parse_into_expr(time)
|
|
125
|
+
pos = parse_into_expr(pos)
|
|
126
|
+
open = parse_into_expr(open)
|
|
127
|
+
finish_price = parse_into_expr(finish_price)
|
|
128
|
+
kwargs = {
|
|
129
|
+
"cash": cash,
|
|
130
|
+
"multiplier": multiplier,
|
|
131
|
+
"qty_tick": qty_tick,
|
|
132
|
+
"stop_on_finish": stop_on_finish,
|
|
133
|
+
"finish_price": None,
|
|
134
|
+
}
|
|
135
|
+
return register_plugin(
|
|
136
|
+
args=[time, pos, open, finish_price],
|
|
137
|
+
kwargs=kwargs,
|
|
138
|
+
symbol="trading_from_pos",
|
|
139
|
+
is_elementwise=False,
|
|
140
|
+
)
|
pybond/polars_utils.py
CHANGED
|
@@ -2,11 +2,13 @@ from __future__ import annotations
|
|
|
2
2
|
|
|
3
3
|
import re
|
|
4
4
|
from pathlib import Path
|
|
5
|
-
from typing import TYPE_CHECKING, Any
|
|
5
|
+
from typing import TYPE_CHECKING, Any
|
|
6
6
|
|
|
7
7
|
import polars as pl
|
|
8
8
|
|
|
9
9
|
if TYPE_CHECKING:
|
|
10
|
+
from collections.abc import Sequence
|
|
11
|
+
|
|
10
12
|
from polars.type_aliases import IntoExpr, PolarsDataType
|
|
11
13
|
|
|
12
14
|
|
pybond/pybond.pyd
CHANGED
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
pybond/__init__.py,sha256=
|
|
2
|
-
pybond/bond.py,sha256=
|
|
3
|
-
pybond/download.py,sha256=
|
|
1
|
+
pybond/__init__.py,sha256=ocuh95mkVrcU3cps2zC-kgK7VMV7BZIcOK-mXo7oYg0,563
|
|
2
|
+
pybond/bond.py,sha256=2YBnASWqBtRZ-ydzpCnjVuzPy-RxYvI97CruJLJ992U,6772
|
|
3
|
+
pybond/download.py,sha256=oEConLut3tC0hDGhiEdZXH6dleAa_rT2hTLtwo-nQzU,4294
|
|
4
4
|
pybond/ffi/__init__.py,sha256=AKhddxYYqfOkujr9FGKo-FOPk3DDi42SOfk5mbc0zWE,98
|
|
5
5
|
pybond/ffi/bond.py,sha256=BQmhYw1-cEJeU2XOy3yVmivMV-F0KI7xOKHsHpe4N7k,1654
|
|
6
6
|
pybond/ffi/datetime.py,sha256=NKgyWegyqc8MmGk11L3nL6hsVmfO9ibU_C3i9V_TW38,2047
|
|
@@ -15,12 +15,12 @@ pybond/nb/nb_datetime.py,sha256=sg3Vmg2n2P_A186QgOGSOKBq-Tr72ht_Yw064yYrWXE,1067
|
|
|
15
15
|
pybond/nb/nb_duration.py,sha256=bndVSHdG_yV0_vEWeAHd9Lq_UQ-8nkPnEC9cN2A2ca4,1709
|
|
16
16
|
pybond/nb/nb_evaluators.py,sha256=GBsW3UuGf8iVUWr2DTISXzdYoGV5ITEOVFJivBNmWkc,15544
|
|
17
17
|
pybond/nb/nb_time.py,sha256=5KNrWYcPwZUHoxvZKvh3qdhjB0DjRkxbUzONSv6OfhY,8928
|
|
18
|
-
pybond/pd.py,sha256=
|
|
18
|
+
pybond/pd.py,sha256=aMalUv_TBzT48BXdp7whzZ9g64p8uiPZrk9LaI1UaIU,13821
|
|
19
19
|
pybond/pl.py,sha256=WhiBv6IOs5-jxK78xd75KXZSogoFyJ0XJ-v23Gjp_ho,13966
|
|
20
|
-
pybond/pnl.py,sha256=
|
|
21
|
-
pybond/polars_utils.py,sha256=
|
|
22
|
-
pybond/pybond.pyd,sha256=
|
|
20
|
+
pybond/pnl.py,sha256=FSIN6YJ9P44nsJGgnpdsf7b5MS96ziGMmQAlPzG8lb4,3605
|
|
21
|
+
pybond/polars_utils.py,sha256=XJ7DXpBfMEm3DilAun7E8S_6ShqQxi--ZSFV8CyRCxA,2697
|
|
22
|
+
pybond/pybond.pyd,sha256=ML3k6ZZ2GAueGC5drTVCcPN_yg33JK6O3dFBspo1HhA,23583744
|
|
23
23
|
pybond/pybond.pyi,sha256=qzOfqoysuUW7rnZYxEmGEJXK_UrCjMvQ29Y_mJOBN1Y,11621
|
|
24
|
-
tea_bond-0.3.
|
|
25
|
-
tea_bond-0.3.
|
|
26
|
-
tea_bond-0.3.
|
|
24
|
+
tea_bond-0.3.12.dist-info/METADATA,sha256=LZOQ6O98UhsurMn3R23Kvk5klAjsDmqmo6xabz8cnzc,258
|
|
25
|
+
tea_bond-0.3.12.dist-info/WHEEL,sha256=CG8OzNtm0LMpJ2zhrjswlO8N-965OeMLklsQAG-nMvQ,94
|
|
26
|
+
tea_bond-0.3.12.dist-info/RECORD,,
|