# Trading System: start()
Starts the trading system.
- Interface
class MidaTradingSystem {
start (): Promise<void>;
}
- Example
import { SuperTradingSystem } from "./SuperTradingSystem.js";
const system = new SuperTradingSystem({ tradingAccount: myAccount, });
await system.start();