527f9213da
Create a standalone CLI package that uses pdmt5 as a dependency to export MetaTrader 5 data to CSV, JSON, Parquet, and SQLite3 formats. Includes 12 subcommands for rates, ticks, account/terminal info, symbols, orders, positions, and trading history, along with comprehensive test coverage. https://claude.ai/code/session_01YW3YHru8wRH9dvHnBX7xf1
6 lines
112 B
Python
6 lines
112 B
Python
"""Entry point for running mt5cli as a module via ``python -m mt5cli``."""
|
|
|
|
from mt5cli.cli import main
|
|
|
|
main()
|