TurtleTrade/run.py

6 lines
160 B
Python
Raw Permalink Normal View History

2025-05-20 22:54:54 +08:00
from turtle_trading import TurtleTrading
if __name__ == "__main__":
symbol = "000001" # Example symbol
turtle = TurtleTrading(symbol)
turtle.run()