11 lines
265 B
Python
11 lines
265 B
Python
"""
|
|
Lowkey Backtest CLI - VectorBT Edition
|
|
|
|
A backtesting framework supporting multiple market types (spot, perpetual)
|
|
with realistic trading simulation including leverage, funding, and shorts.
|
|
"""
|
|
from engine.cli import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|