bbstrader 0.2.91__py3-none-any.whl → 0.2.92__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.

Potentially problematic release.


This version of bbstrader might be problematic. Click here for more details.

bbstrader/__main__.py ADDED
@@ -0,0 +1,50 @@
1
+ import argparse
2
+ import sys
3
+
4
+ import pyfiglet
5
+ from colorama import Fore
6
+
7
+ from bbstrader.btengine.scripts import backtest
8
+ from bbstrader.metatrader.scripts import copy_trades
9
+ from bbstrader.trading.script import execute_strategy
10
+
11
+ DESCRIPTION = "BBSTRADER"
12
+ USAGE_TEXT = """
13
+ Usage:
14
+ python -m bbstrader --run <module> [options]
15
+
16
+ Modules:
17
+ copier: Copy trades from one MetaTrader account to another or multiple accounts
18
+ backtest: Backtest a strategy, see bbstrader.btengine.backtest.run_backtest
19
+ execution: Execute a strategy, see bbstrader.trading.execution.MT5ExecutionEngine
20
+
21
+ run <module> --help for more information on the module
22
+ """
23
+
24
+ FONT = pyfiglet.figlet_format("BBSTRADER", font="big")
25
+
26
+
27
+ def main():
28
+ print(Fore.BLUE + FONT)
29
+ parser = argparse.ArgumentParser(
30
+ prog="BBSTRADER",
31
+ usage=USAGE_TEXT,
32
+ description=DESCRIPTION,
33
+ formatter_class=argparse.RawTextHelpFormatter,
34
+ add_help=False,
35
+ )
36
+ parser.add_argument("--run", type=str, nargs="?", default=None, help="Run a module")
37
+ args, unknown = parser.parse_known_args()
38
+ if ("-h" in sys.argv or "--help" in sys.argv) and args.run is None:
39
+ print(USAGE_TEXT)
40
+ sys.exit(0)
41
+ if args.run == "copier":
42
+ copy_trades(unknown)
43
+ elif args.run == "backtest":
44
+ backtest(unknown)
45
+ elif args.run == "execution":
46
+ execute_strategy(unknown)
47
+
48
+
49
+ if __name__ == "__main__":
50
+ main()
@@ -496,6 +496,7 @@ class YFDataHandler(BaseCSVDataHandler):
496
496
  start=self.start_date,
497
497
  end=self.end_date,
498
498
  multi_level_index=False,
499
+ auto_adjust=True,
499
500
  progress=False,
500
501
  )
501
502
  if "Adj Close" not in data.columns:
@@ -1,13 +1,24 @@
1
1
  from abc import ABCMeta, abstractmethod
2
2
  from queue import Queue
3
3
 
4
+ from loguru import logger
5
+
4
6
  from bbstrader.btengine.data import DataHandler
5
7
  from bbstrader.btengine.event import FillEvent, OrderEvent
8
+ from bbstrader.config import BBSTRADER_DIR
6
9
  from bbstrader.metatrader.account import Account
7
10
 
8
11
  __all__ = ["ExecutionHandler", "SimExecutionHandler", "MT5ExecutionHandler"]
9
12
 
10
13
 
14
+ logger.add(
15
+ f"{BBSTRADER_DIR}/logs/execution.log",
16
+ enqueue=True,
17
+ level="INFO",
18
+ format="{time:YYYY-MM-DD HH:mm:ss} | {level} | {name} | {message}",
19
+ )
20
+
21
+
11
22
  class ExecutionHandler(metaclass=ABCMeta):
12
23
  """
13
24
  The ExecutionHandler abstract class handles the interaction
@@ -59,7 +70,7 @@ class SimExecutionHandler(ExecutionHandler):
59
70
  """
60
71
  self.events = events
61
72
  self.bardata = data
62
- self.logger = kwargs.get("logger")
73
+ self.logger = kwargs.get("logger") or logger
63
74
 
64
75
  def execute_order(self, event: OrderEvent):
65
76
  """
@@ -123,7 +134,7 @@ class MT5ExecutionHandler(ExecutionHandler):
123
134
  """
124
135
  self.events = events
125
136
  self.bardata = data
126
- self.logger = kwargs.get("logger")
137
+ self.logger = kwargs.get("logger") or logger
127
138
  self.__account = Account(**kwargs)
128
139
 
129
140
  def _calculate_lot(self, symbol, quantity, price):
@@ -1,3 +1,4 @@
1
+ from typing import Dict, List
1
2
  import warnings
2
3
 
3
4
  import matplotlib.pyplot as plt
@@ -19,8 +20,56 @@ __all__ = [
19
20
  "plot_returns_and_dd",
20
21
  "plot_monthly_yearly_returns",
21
22
  "show_qs_stats",
23
+ "get_asset_performances",
24
+ "get_perfbased_weights",
22
25
  ]
23
26
 
27
+ def get_asset_performances(
28
+ portfolio: pd.DataFrame, assets: List[str], plot=True, strategy=""
29
+ ) -> pd.Series:
30
+ """
31
+ Calculate the performance of the assets in the portfolio.
32
+
33
+ Args:
34
+ portfolio (pd.DataFrame): The portfolio DataFrame.
35
+ assets (List[str]): The list of assets to calculate the performance for.
36
+ plot (bool): Whether to plot the performance of the assets.
37
+ strategy (str): The name of the strategy.
38
+
39
+ Returns:
40
+ pd.Series: The performance of the assets.
41
+ """
42
+ asset_prices = portfolio[assets]
43
+ asset_prices = asset_prices.abs()
44
+ asset_prices.replace(0, np.nan, inplace=True)
45
+ asset_prices.ffill(inplace=True)
46
+ asset_returns = asset_prices.pct_change()
47
+ asset_returns.replace([np.inf, -np.inf], np.nan, inplace=True)
48
+ asset_returns.fillna(0, inplace=True)
49
+ asset_cum_returns = (1.0 + asset_returns).cumprod()
50
+ if plot:
51
+ asset_cum_returns.plot(figsize=(12, 6), title=f"{strategy} Strategy Assets Performance")
52
+ plt.show()
53
+ return asset_cum_returns.iloc[-1] - 1
54
+
55
+
56
+ def get_perfbased_weights(performances) -> Dict[str, float]:
57
+ """
58
+ Calculate the weights of the assets based on their performances.
59
+
60
+ Args:
61
+ performances (pd.Series): The performances of the assets.
62
+
63
+ Returns:
64
+ Dict[str, float]: The weights of the assets.
65
+ """
66
+ weights = (
67
+ performances.to_frame()
68
+ .assign(weight=performances.values / performances.sum())
69
+ .weight.to_dict()
70
+ )
71
+ return weights
72
+
24
73
 
25
74
  def create_sharpe_ratio(returns, periods=252) -> float:
26
75
  """
@@ -173,7 +222,7 @@ def plot_returns_and_dd(df: pd.DataFrame, benchmark: str, title):
173
222
  # To avoid errors, we use the try-except block
174
223
  # in case the benchmark is not available
175
224
  try:
176
- bm = yf.download(benchmark, start=first_date, end=last_date)
225
+ bm = yf.download(benchmark, start=first_date, end=last_date, auto_adjust=True)
177
226
  bm["log_return"] = np.log(bm["Close"] / bm["Close"].shift(1))
178
227
  # Use exponential to get cumulative returns
179
228
  bm_returns = np.exp(np.cumsum(bm["log_return"].fillna(0)))
@@ -0,0 +1,157 @@
1
+ import argparse
2
+ import json
3
+ import os
4
+ import sys
5
+ from datetime import datetime
6
+
7
+ from bbstrader.btengine.backtest import run_backtest
8
+ from bbstrader.btengine.data import (
9
+ CSVDataHandler,
10
+ DataHandler,
11
+ EODHDataHandler,
12
+ FMPDataHandler,
13
+ MT5DataHandler,
14
+ YFDataHandler,
15
+ )
16
+ from bbstrader.btengine.execution import (
17
+ ExecutionHandler,
18
+ MT5ExecutionHandler,
19
+ SimExecutionHandler,
20
+ )
21
+ from bbstrader.core.utils import load_class, load_module
22
+
23
+ BACKTEST_PATH = os.path.expanduser("~/.bbstrader/backtest/backtest.py")
24
+ CONFIG_PATH = os.path.expanduser("~/.bbstrader/backtest/backtest.json")
25
+
26
+ DATA_HANDLER_MAP = {
27
+ "csv": CSVDataHandler,
28
+ "mt5": MT5DataHandler,
29
+ "yf": YFDataHandler,
30
+ "eodh": EODHDataHandler,
31
+ "fmp": FMPDataHandler,
32
+ }
33
+
34
+ EXECUTION_HANDLER_MAP = {
35
+ "sim": SimExecutionHandler,
36
+ "mt5": MT5ExecutionHandler,
37
+ }
38
+
39
+
40
+ def load_exc_handler(module, handler_name):
41
+ return load_class(module, handler_name, ExecutionHandler)
42
+
43
+
44
+ def load_data_handler(module, handler_name):
45
+ return load_class(module, handler_name, DataHandler)
46
+
47
+
48
+ def load_strategy(module, strategy_name):
49
+ from bbstrader.btengine.strategy import MT5Strategy, Strategy
50
+
51
+ return load_class(module, strategy_name, (Strategy, MT5Strategy))
52
+
53
+
54
+ def load_config(config_path, strategy_name):
55
+ if not os.path.exists(config_path):
56
+ raise FileNotFoundError(
57
+ f"Configuration file {config_path} not found. Please create it."
58
+ )
59
+
60
+ with open(config_path, "r") as f:
61
+ config = json.load(f)
62
+ try:
63
+ config = config[strategy_name]
64
+ except KeyError:
65
+ raise ValueError(
66
+ f"Strategy {strategy_name} not found in the configuration file."
67
+ )
68
+
69
+ required_fields = ["symbol_list", "start_date", "data_handler", "execution_handler"]
70
+ for field in required_fields:
71
+ if not config.get(field):
72
+ raise ValueError(f"{field} is required in the configuration file.")
73
+
74
+ config["start_date"] = datetime.strptime(config["start_date"], "%Y-%m-%d")
75
+
76
+ if config.get("execution_handler") not in EXECUTION_HANDLER_MAP:
77
+ try:
78
+ backtest_module = load_module(BACKTEST_PATH)
79
+ exc_handler_class = load_exc_handler(
80
+ backtest_module, config["execution_handler"]
81
+ )
82
+ except Exception as e:
83
+ raise ValueError(f"Invalid execution handler: {e}")
84
+ else:
85
+ exc_handler_class = EXECUTION_HANDLER_MAP[config["execution_handler"]]
86
+
87
+ if config.get("data_handler") not in DATA_HANDLER_MAP:
88
+ try:
89
+ backtest_module = load_module(BACKTEST_PATH)
90
+ data_handler_class = load_data_handler(
91
+ backtest_module, config["data_handler"]
92
+ )
93
+ except Exception as e:
94
+ raise ValueError(f"Invalid data handler: {e}")
95
+ else:
96
+ data_handler_class = DATA_HANDLER_MAP[config["data_handler"]]
97
+
98
+ config["execution_handler"] = exc_handler_class
99
+ config["data_handler"] = data_handler_class
100
+
101
+ return config
102
+
103
+
104
+ def backtest(unknown):
105
+ HELP_MSG = """
106
+ Usage:
107
+ python -m bbstrader --run backtest [options]
108
+
109
+ Options:
110
+ -s, --strategy: Strategy class name to run
111
+ -c, --config: Configuration file path (default: ~/.bbstrader/backtest/backtest.json)
112
+ -p, --path: Path to the backtest file (default: ~/.bbstrader/backtest/backtest.py)
113
+
114
+ Note:
115
+ The configuration file must contain all the required parameters
116
+ for the data handler and execution handler and strategy.
117
+ See bbstrader.btengine.BacktestEngine for more details on the parameters.
118
+ """
119
+ if "-h" in unknown or "--help" in unknown:
120
+ print(HELP_MSG)
121
+ sys.exit(0)
122
+
123
+ parser = argparse.ArgumentParser(description="Backtesting Engine CLI")
124
+ parser.add_argument(
125
+ "-s", "--strategy", type=str, required=True, help="Strategy class name to run"
126
+ )
127
+ parser.add_argument(
128
+ "-c", "--config", type=str, default=CONFIG_PATH, help="Configuration file path"
129
+ )
130
+ parser.add_argument(
131
+ "-p",
132
+ "--path",
133
+ type=str,
134
+ default=BACKTEST_PATH,
135
+ help="Path to the backtest file",
136
+ )
137
+ args = parser.parse_args(unknown)
138
+ config = load_config(args.config, args.strategy)
139
+ strategy_module = load_module(args.path)
140
+ strategy_class = load_strategy(strategy_module, args.strategy)
141
+
142
+ symbol_list = config.pop("symbol_list")
143
+ start_date = config.pop("start_date")
144
+ data_handler = config.pop("data_handler")
145
+ execution_handler = config.pop("execution_handler")
146
+
147
+ try:
148
+ run_backtest(
149
+ symbol_list,
150
+ start_date,
151
+ data_handler,
152
+ strategy_class,
153
+ exc_handler=execution_handler,
154
+ **config,
155
+ )
156
+ except Exception as e:
157
+ print(f"Error: {e}")
@@ -7,9 +7,12 @@ from typing import Dict, List, Literal, Union
7
7
  import numpy as np
8
8
  import pandas as pd
9
9
  import pytz
10
+ from loguru import logger
10
11
 
11
12
  from bbstrader.btengine.data import DataHandler
12
13
  from bbstrader.btengine.event import FillEvent, SignalEvent
14
+ from bbstrader.config import BBSTRADER_DIR
15
+ from bbstrader.core.utils import TradeSignal
13
16
  from bbstrader.metatrader.account import (
14
17
  Account,
15
18
  AdmiralMarktsGroup,
@@ -17,10 +20,16 @@ from bbstrader.metatrader.account import (
17
20
  )
18
21
  from bbstrader.metatrader.rates import Rates
19
22
  from bbstrader.models.optimization import optimized_weights
20
- from bbstrader.core.utils import TradeSignal
21
23
 
22
24
  __all__ = ["Strategy", "MT5Strategy"]
23
25
 
26
+ logger.add(
27
+ f"{BBSTRADER_DIR}/logs/strategy.log",
28
+ enqueue=True,
29
+ level="INFO",
30
+ format="{time:YYYY-MM-DD HH:mm:ss} | {level} | {name} | {message}",
31
+ )
32
+
24
33
 
25
34
  class Strategy(metaclass=ABCMeta):
26
35
  """
@@ -91,10 +100,11 @@ class MT5Strategy(Strategy):
91
100
  self.risk_budget = self._check_risk_budget(**kwargs)
92
101
  self.max_trades = kwargs.get("max_trades", {s: 1 for s in self.symbols})
93
102
  self.tf = kwargs.get("time_frame", "D1")
94
- self.logger = kwargs.get("logger")
103
+ self.logger = kwargs.get("logger") or logger
95
104
  if self.mode == "backtest":
96
105
  self._initialize_portfolio()
97
106
  self.kwargs = kwargs
107
+ self.periodes = 0
98
108
 
99
109
  @property
100
110
  def cash(self) -> float:
bbstrader/compat.py CHANGED
@@ -4,7 +4,7 @@ import sys
4
4
 
5
5
  def setup_mock_metatrader():
6
6
  """Mock MetaTrader5 on Linux to prevent import errors."""
7
- if platform.system() == "Linux":
7
+ if platform.system() != "Windows":
8
8
  from unittest.mock import MagicMock
9
9
 
10
10
  class Mock(MagicMock):
bbstrader/config.py CHANGED
@@ -7,17 +7,15 @@ TERMINAL = "\\terminal64.exe"
7
7
  BASE_FOLDER = "C:\\Program Files\\"
8
8
 
9
9
  AMG_PATH = BASE_FOLDER + "Admirals Group MT5 Terminal" + TERMINAL
10
- XCB_PATH = BASE_FOLDER + "4xCube MT5 Terminal" + TERMINAL
11
- TML_PATH = BASE_FOLDER + "Trinota Markets MetaTrader 5 Terminal" + TERMINAL
12
10
  PGL_PATH = BASE_FOLDER + "Pepperstone MetaTrader 5" + TERMINAL
13
11
  FTMO_PATH = BASE_FOLDER + "FTMO MetaTrader 5" + TERMINAL
12
+ JGM_PATH = BASE_FOLDER + "JustMarkets MetaTrader 5" + TERMINAL
14
13
 
15
14
  BROKERS_PATHS = {
16
15
  "AMG": AMG_PATH,
17
16
  "FTMO": FTMO_PATH,
18
- "XCB": XCB_PATH,
19
- "TML": TML_PATH,
20
17
  "PGL": PGL_PATH,
18
+ "JGM": JGM_PATH,
21
19
  }
22
20
 
23
21
 
bbstrader/core/utils.py CHANGED
@@ -1,11 +1,100 @@
1
- from enum import Enum
1
+ import configparser
2
+ import importlib
3
+ import importlib.util
4
+ import os
2
5
  from dataclasses import dataclass
6
+ from enum import Enum
7
+ from typing import Any, Dict, List
8
+
9
+
10
+ def load_module(file_path):
11
+ """Load a module from a file path.
12
+
13
+ Args:
14
+ file_path: Path to the file to load.
15
+
16
+ Returns:
17
+ The loaded module.
18
+ """
19
+ if not os.path.exists(file_path):
20
+ raise FileNotFoundError(
21
+ f"Strategy file {file_path} not found. Please create it."
22
+ )
23
+ spec = importlib.util.spec_from_file_location("strategies", file_path)
24
+ module = importlib.util.module_from_spec(spec)
25
+ spec.loader.exec_module(module)
26
+ return module
27
+
28
+
29
+ def load_class(module, class_name, base_class):
30
+ """Load a class from a module.
31
+
32
+ Args:
33
+ module: The module to load the class from.
34
+ class_name: The name of the class to load.
35
+ base_class: The base class that the class must inherit from.
36
+ """
37
+ if not hasattr(module, class_name):
38
+ raise AttributeError(f"{class_name} not found in {module}")
39
+ class_ = getattr(module, class_name)
40
+ if not issubclass(class_, base_class):
41
+ raise TypeError(f"{class_name} must inherit from {base_class}.")
42
+ return class_
43
+
44
+
45
+ def auto_convert(value):
46
+ """Convert string values to appropriate data types"""
47
+ if value.lower() in {"true", "false"}: # Boolean
48
+ return value.lower() == "true"
49
+ elif value.lower() in {"none", "null"}: # None
50
+ return None
51
+ elif value.isdigit():
52
+ return int(value)
53
+ try:
54
+ return float(value)
55
+ except ValueError:
56
+ return value
57
+
58
+
59
+ def dict_from_ini(file_path, sections: str | List[str] = None) -> Dict[str, Any]:
60
+ """Reads an INI file and converts it to a dictionary with proper data types.
61
+
62
+ Args:
63
+ file_path: Path to the INI file to read.
64
+ sections: Optional list of sections to read from the INI file.
65
+
66
+ Returns:
67
+ A dictionary containing the INI file contents with proper data types.
68
+ """
69
+ config = configparser.ConfigParser()
70
+ config.read(file_path)
71
+
72
+ ini_dict = {}
73
+ for section in config.sections():
74
+ ini_dict[section] = {
75
+ key: auto_convert(value) for key, value in config.items(section)
76
+ }
77
+
78
+ if isinstance(sections, str):
79
+ try:
80
+ return ini_dict[sections]
81
+ except KeyError:
82
+ raise KeyError(f"{sections} not found in the {file_path} file")
83
+ if isinstance(sections, list):
84
+ sect_dict = {}
85
+ for section in sections:
86
+ try:
87
+ sect_dict[section] = ini_dict[section]
88
+ except KeyError:
89
+ raise KeyError(f"{section} not found in the {file_path} file")
90
+ return ini_dict
3
91
 
4
92
 
5
93
  class TradeAction(Enum):
6
94
  """
7
95
  An enumeration class for trade actions.
8
96
  """
97
+
9
98
  BUY = "LONG"
10
99
  LONG = "LONG"
11
100
  SELL = "SHORT"
@@ -3,4 +3,5 @@ from bbstrader.metatrader.account import * # noqa: F403
3
3
  from bbstrader.metatrader.rates import * # noqa: F403
4
4
  from bbstrader.metatrader.risk import * # noqa: F403
5
5
  from bbstrader.metatrader.trade import * # noqa: F403
6
- from bbstrader.metatrader.utils import * # noqa: F403
6
+ from bbstrader.metatrader.utils import * # noqa: F403*
7
+ from bbstrader.metatrader.copier import * # noqa: F403
@@ -4,8 +4,6 @@ import urllib.request
4
4
  from datetime import datetime
5
5
  from typing import Any, Dict, List, Literal, Optional, Tuple, Union
6
6
 
7
- from bbstrader import compat # noqa: F401
8
- import MetaTrader5 as mt5
9
7
  import pandas as pd
10
8
  from currency_converter import SINGLE_DAY_ECB_URL, CurrencyConverter
11
9
 
@@ -24,14 +22,19 @@ from bbstrader.metatrader.utils import (
24
22
  raise_mt5_error,
25
23
  )
26
24
 
25
+ try:
26
+ import MetaTrader5 as mt5
27
+ except ImportError:
28
+ import bbstrader.compat # noqa: F401
29
+
30
+
27
31
  __all__ = [
28
32
  "Account",
29
33
  "Broker",
30
34
  "AdmiralMarktsGroup",
31
35
  "JustGlobalMarkets",
32
- "TrinotaMarkets",
33
- "XCubeLimited",
34
36
  "PepperstoneGroupLimited",
37
+ "check_mt5_connection",
35
38
  "FTMO",
36
39
  ]
37
40
 
@@ -39,8 +42,6 @@ __BROKERS__ = {
39
42
  "AMG": "Admirals Group AS",
40
43
  "JGM": "Just Global Markets Ltd.",
41
44
  "FTMO": "FTMO S.R.O.",
42
- "XCB": "4xCube Limited",
43
- "TML": "Trinota Markets (Global) Limited",
44
45
  "PGL": "Pepperstone Group Limited",
45
46
  }
46
47
 
@@ -48,8 +49,6 @@ BROKERS_TIMEZONES = {
48
49
  "AMG": "Europe/Helsinki",
49
50
  "JGM": "Europe/Helsinki",
50
51
  "FTMO": "Europe/Helsinki",
51
- "XCB": "Europe/Helsinki",
52
- "TML": "Europe/Helsinki",
53
52
  "PGL": "Europe/Helsinki",
54
53
  }
55
54
 
@@ -68,11 +67,11 @@ _ADMIRAL_MARKETS_PRODUCTS_ = [
68
67
  ]
69
68
  _JUST_MARKETS_PRODUCTS_ = ["Stocks", "Crypto", "indices", "Commodities", "Forex"]
70
69
 
71
-
70
+ SUPPORTED_BROKERS = [__BROKERS__[b] for b in {"AMG", "JGM", "FTMO"}]
72
71
  INIT_MSG = (
73
72
  f"\n* Ensure you have a good and stable internet connexion\n"
74
73
  f"* Ensure you have an activete MT5 terminal install on your machine\n"
75
- f"* Ensure you have an active MT5 Account with {' or '.join(__BROKERS__.values())}\n"
74
+ f"* Ensure you have an active MT5 Account with {' or '.join(SUPPORTED_BROKERS)}\n"
76
75
  f"* If you want to trade {', '.join(_ADMIRAL_MARKETS_PRODUCTS_)}, See [{_ADMIRAL_MARKETS_URL_}]\n"
77
76
  f"* If you want to trade {', '.join(_JUST_MARKETS_PRODUCTS_)}, See [{_JUST_MARKETS_URL_}]\n"
78
77
  f"* If you are looking for a prop firm, See [{_FTMO_URL_}]\n"
@@ -189,7 +188,10 @@ def check_mt5_connection(**kwargs):
189
188
  except Exception:
190
189
  raise_mt5_error(INIT_MSG)
191
190
 
192
-
191
+ def shutdown_mt5():
192
+ """Close the connection to the MetaTrader 5 terminal."""
193
+ mt5.shutdown()
194
+
193
195
  class Broker(object):
194
196
  def __init__(self, name: str = None, **kwargs):
195
197
  if name is None:
@@ -242,24 +244,6 @@ class FTMO(Broker):
242
244
  return BROKERS_TIMEZONES["FTMO"]
243
245
 
244
246
 
245
- class XCubeLimited(Broker):
246
- def __init__(self, **kwargs):
247
- super().__init__("4xCube Limited", **kwargs)
248
-
249
- @property
250
- def timezone(self) -> str:
251
- return BROKERS_TIMEZONES["XCB"]
252
-
253
-
254
- class TrinotaMarkets(Broker):
255
- def __init__(self, **kwargs):
256
- super().__init__("Trinota Markets (Global) Limited", **kwargs)
257
-
258
- @property
259
- def timezone(self) -> str:
260
- return BROKERS_TIMEZONES["TML"]
261
-
262
-
263
247
  class PepperstoneGroupLimited(Broker):
264
248
  def __init__(self, **kwargs):
265
249
  super().__init__("Pepperstone Group Limited", **kwargs)
@@ -276,8 +260,6 @@ BROKERS: Dict[str, Broker] = {
276
260
  "FTMO": FTMO(),
277
261
  "AMG": AdmiralMarktsGroup(),
278
262
  "JGM": JustGlobalMarkets(),
279
- "XCB": XCubeLimited(),
280
- "TML": TrinotaMarkets(),
281
263
  "PGL": PepperstoneGroupLimited(),
282
264
  }
283
265
 
@@ -326,19 +308,25 @@ class Account(object):
326
308
 
327
309
  """
328
310
  check_mt5_connection(**kwargs)
329
- self._check_brokers()
311
+ self._check_brokers(**kwargs)
330
312
 
331
- def _check_brokers(self):
313
+ def _check_brokers(self, **kwargs):
314
+ if kwargs.get("copy", False):
315
+ return
332
316
  supported = BROKERS.copy()
333
317
  if self.broker not in supported.values():
334
318
  msg = (
335
319
  f"{self.broker.name} is not currently supported broker for the Account() class\n"
336
- f"Currently Supported brokers are: {', '.join([b.name for b in supported.values()])}\n"
320
+ f"Currently Supported brokers are: {', '.join(SUPPORTED_BROKERS)}\n"
337
321
  f"For {supported['AMG'].name}, See [{amg_url}]\n"
338
322
  f"For {supported['JGM'].name}, See [{jgm_url}]\n"
339
323
  f"For {supported['FTMO'].name}, See [{ftmo_url}]\n"
340
324
  )
341
325
  raise InvalidBroker(message=msg)
326
+
327
+ def shutdown(self):
328
+ """Close the connection to the MetaTrader 5 terminal."""
329
+ mt5.shutdown()
342
330
 
343
331
  @property
344
332
  def broker(self) -> Broker:
@@ -798,7 +786,9 @@ class Account(object):
798
786
  }
799
787
  return self._get_symbols_by_category("FX", category, fx_categories)
800
788
 
801
- def get_stocks_from_country(self, country_code: str = "USA", etf=False) -> List[str]:
789
+ def get_stocks_from_country(
790
+ self, country_code: str = "USA", etf=False
791
+ ) -> List[str]:
802
792
  """
803
793
  Retrieves a list of stock symbols from a specific country.
804
794
 
@@ -990,7 +980,7 @@ class Account(object):
990
980
  return SymbolInfo(**symbol_info_dict)
991
981
  except Exception as e:
992
982
  msg = self._symbol_info_msg(symbol)
993
- raise_mt5_error(message=f"{e+msg}")
983
+ raise_mt5_error(message=f"{e + msg}")
994
984
 
995
985
  def show_symbol_info(self, symbol: str):
996
986
  """
@@ -1036,7 +1026,7 @@ class Account(object):
1036
1026
  return TickInfo(**info_dict)
1037
1027
  except Exception as e:
1038
1028
  msg = self._symbol_info_msg(symbol)
1039
- raise_mt5_error(message=f"{e+msg}")
1029
+ raise_mt5_error(message=f"{e + msg}")
1040
1030
 
1041
1031
  def show_tick_info(self, symbol: str):
1042
1032
  """