openfund-taker 1.3.8__py3-none-any.whl → 1.3.10__py3-none-any.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.
- {openfund_taker-1.3.8.dist-info → openfund_taker-1.3.10.dist-info}/METADATA +1 -1
- {openfund_taker-1.3.8.dist-info → openfund_taker-1.3.10.dist-info}/RECORD +5 -5
- taker/TrailingSLTaker.py +3 -3
- {openfund_taker-1.3.8.dist-info → openfund_taker-1.3.10.dist-info}/WHEEL +0 -0
- {openfund_taker-1.3.8.dist-info → openfund_taker-1.3.10.dist-info}/entry_points.txt +0 -0
@@ -1,7 +1,7 @@
|
|
1
1
|
taker/MultiAssetOldTradingBot.py,sha256=uBh_BxglvcbaHIsWHM7GI9Qa_QjzsxXaXJAAWEOMO5c,15315
|
2
2
|
taker/ThreeLineTradingTaker.py,sha256=ElD9pKDO4nxw5VKNRrvXqyiU0gkV_1Mg_zk-hftfaPs,20553
|
3
3
|
taker/TrailingSLAndTPTaker.py,sha256=rx3tw9TwFCpqnz3e0WlTtFVcn8mBbPHtp62n3RF86Kg,1144
|
4
|
-
taker/TrailingSLTaker.py,sha256=
|
4
|
+
taker/TrailingSLTaker.py,sha256=M7wl2St9l-NHWwbYlELznRL0RnFJ1hmMA32sLykbKQI,42760
|
5
5
|
taker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
6
|
taker/chua_bitget.py,sha256=YY6XK5Bd-wlArsN5BnAfiqE0h1DPkti6i4TEB4F5zDA,12918
|
7
7
|
taker/chua_bn.py,sha256=GnTePWlgDwdHgroBbEp1Ajcsf5_m_Vn_RV63SYzu2jI,10668
|
@@ -10,7 +10,7 @@ taker/chua_ok_all.py,sha256=2XnZM6QdB3juSE1pqQIJyh2x1XuhlTlnBKNA3owlJ9E,15267
|
|
10
10
|
taker/chua_ok_bot.py,sha256=9SW0ujhi6PfN4yR1JZ9NaA37HtnXJ2QAWUfW52NG68w,13109
|
11
11
|
taker/config.py,sha256=YPxghO5i0vgRg9Cja8kGj9O7pgSbbtzOgf3RexqXXwY,1188
|
12
12
|
taker/main.py,sha256=QCEjINu3IgwWEGcuquHzeYjKJYAQrPe8ctQhMoIb9SA,2561
|
13
|
-
openfund_taker-1.3.
|
14
|
-
openfund_taker-1.3.
|
15
|
-
openfund_taker-1.3.
|
16
|
-
openfund_taker-1.3.
|
13
|
+
openfund_taker-1.3.10.dist-info/METADATA,sha256=pbct82JuEMaNdf60ASiqaeNOCOzvZoWo2a6QO0LlST0,7528
|
14
|
+
openfund_taker-1.3.10.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
15
|
+
openfund_taker-1.3.10.dist-info/entry_points.txt,sha256=a7mG8F7aOA5-Gk2vPWuAR4537faxaHUgM_jwIDBZoEc,50
|
16
|
+
openfund_taker-1.3.10.dist-info/RECORD,,
|
taker/TrailingSLTaker.py
CHANGED
@@ -806,9 +806,9 @@ class TrailingSLTaker:
|
|
806
806
|
"""
|
807
807
|
|
808
808
|
total_profit = self.calculate_average_profit(symbol, position)
|
809
|
-
|
810
|
-
|
811
|
-
|
809
|
+
|
810
|
+
self.logger.info(f"{symbol} 当前总盈利: {total_profit:.2f}%")
|
811
|
+
self.send_feishu_notification(f"{symbol} 当前总盈利: {total_profit:.2f}%")
|
812
812
|
|
813
813
|
cur_highest_total_profit = self.highest_total_profit.get(symbol, 0.0)
|
814
814
|
|
File without changes
|
File without changes
|