NEW STRATEGY
전략 등록
자연어 전략과 기본 주문 설정을 바탕으로 FXTrade JSON DSL을 구성합니다.
기본 설정
전략이 신호를 만들었을 때 자동 거래에 사용할 API, 통화쌍, 주문 조건을 설정합니다.
전략 입력
전략 조건을 자연어로 입력합니다.
JSON DSL 미리보기
검증을 통과한 JSON DSL만 Strategy DB에 저장됩니다.
{
"strategyId": "STR-EURUSD-001",
"name": "EURUSD London Pullback",
"market": {
"broker": "MetaTrader 5",
"symbol": "EURUSD",
"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": ["EUR/USD", "GBP/USD", "USD/JPY", "AUD/USD", "USD/CHF", "EUR/GBP", "GBP/JPY"],
"entryBroker": "MetaTrader 5",
"marginMode": "계좌별 제한",
"cooldownMinutes": 15,
"entryExecution": "market",
"tpExecution": "market",
"slExecution": "market",
"orderGroupId": true
},
"filters": {
"trend": true,
"spread": "max_1_5_pips",
"session": "LONDON"
}
}