Skip to content

Commit fba2304

Browse files
3.0.17rc11
1 parent f0a0e5f commit fba2304

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ Strongly recommended that you test the strategy in the demo mode before using re
2727

2828
## Important notices
2929
* After update to `3.0.17`, the configuration file `exch_srv_cfg.toml` for [exchanges-wrapper](https://github.com/DogsTailFarmer/exchanges-wrapper) must be updated. [Use templates for reference.](https://github.com/DogsTailFarmer/exchanges-wrapper/blob/master/exchanges_wrapper/exch_srv_cfg.toml.template)
30+
* After update to `3.0.17`, the configuration file `ms_cfg.toml` must be updated. [Use templates for reference.](https://github.com/DogsTailFarmer/martin-binance/blob/f0a0e5f9a7ceba3919ea0087f1b9f4e0d1bc95b6/martin_binance/templates/ms_cfg.toml)
31+
* The config files `cli_XX_AAABBB.py` also must be updated from [template](https://github.com/DogsTailFarmer/martin-binance/tree/public/martin_binance/templates)
3032

3133
* You cannot run multiple pairs with overlapping currencies on the same account!
3234

@@ -47,7 +49,7 @@ Strongly recommended that you test the strategy in the demo mode before using re
4749
## Referral link
4850
<p id="referral-link"></p>
4951

50-
Create account on [Binance](https://accounts.binance.com/en/register?ref=QCS4OGWR) and get 10% discount on all trading fee
52+
Create account on [Binance](https://accounts.binance.com/en/register?ref=FXQ6HY5O) and get 10% discount on all trading fee
5153

5254
Create account on [HUOBI](https://www.huobi.com/en-us/topic/double-reward/?invite_code=9uaw3223) and will get 50 % off trading fees
5355

martin_binance/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
__author__ = "Jerry Fedorenko"
77
__copyright__ = "Copyright © 2021 Jerry Fedorenko aka VM"
88
__license__ = "MIT"
9-
__version__ = "3.0.17rc10"
9+
__version__ = "3.0.17rc11"
1010
__maintainer__ = "Jerry Fedorenko"
1111
__contact__ = "https://github.com/DogsTailFarmer"
1212

martin_binance/strategy_base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
__author__ = "Jerry Fedorenko"
55
__copyright__ = "Copyright © 2021-2025 Jerry Fedorenko aka VM"
66
__license__ = "MIT"
7-
__version__ = "3.0.17"
7+
__version__ = "3.0.17rc11"
88
__maintainer__ = "Jerry Fedorenko"
99
__contact__ = "https://github.com/DogsTailFarmer"
1010

@@ -1922,7 +1922,7 @@ def load_from_csv() -> []:
19221922

19231923
df = pd.DataFrame(data).tail(TRADES_LIST_LIMIT)
19241924

1925-
for index, row in df.iterrows():
1925+
for _, row in df.iterrows():
19261926
trade = {
19271927
"time": row.iloc[1],
19281928
"isBuyer": row.iloc[2] == 'BUY',

0 commit comments

Comments
 (0)