NEW STRATEGY
전략 등록
자연어 전략과 기본 주문 설정을 바탕으로 SupaTrade JSON DSL을 구성합니다.
기본 설정
전략이 신호를 만들었을 때 자동 거래에 사용할 거래소, 심볼, 주문 조건을 설정합니다.
전략 입력
전략 조건을 자연어로 입력합니다.
JSON DSL 미리보기
검증을 통과한 JSON DSL만 Strategy DB에 저장됩니다.
{
"strategyId": "STR-BTC-001",
"name": "BTC RSI EMA Scalping",
"market": {
"exchange": "BINANCE",
"symbol": "BTCUSDT",
"timeframe": "1m"
},
"entry": {
"operator": "AND",
"conditions": [
{
"indicator": "RSI",
"period": 14,
"condition": "<=",
"value": 30
},
{
"indicator": "EMA_CROSS",
"fast": 20,
"slow": 60,
"direction": "UP"
}
]
},
"exit": {
"settingsRef": "default_tp_sl"
},
"risk": {
"leverage": 10,
"positionSize": 50,
"maxOpenPositions": 3,
"maxDailyLoss": 5
},
"automation": {
"enabled": true,
"symbols": ["BTC", "ETH", "SOL", "XRP", "DOGE", "AVAX", "LINK"],
"entryExchange": "binance",
"marginMode": "isolated",
"cooldownMinutes": 15,
"entryExecution": "market",
"tpExecution": "taker",
"slExecution": "taker",
"orderGroupId": true
},
"filters": {
"trend": true,
"volume": true,
"session": "ASIA"
}
}