Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
2 views2 pages

New Text Document

Uploaded by

alihaider18591
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views2 pages

New Text Document

Uploaded by

alihaider18591
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

{

"botName": "Forex AutoBot",


"version": "1.0.0",
"author": "Ali Haider",
"description": "An automated trading bot for currency pairs using technical
analysis and smart money management.",
"mode": "live",
"broker": "Quotex",
"currencyPairs": ["EUR/USD", "GBP/USD", "USD/JPY", "AUD/USD"],
"defaultSettings": {
"timeframe": "1m",
"tradeDuration": "1m",
"tradeAmount": 1.0,
"slippageTolerance": 0.2,
"spreadFilter": true,
"spreadThreshold": 0.5
},
"strategy": {
"name": "RSI_MACD_Strategy",
"description": "Buy on RSI oversold + MACD crossover. Sell on RSI overbought +
MACD cross under.",
"indicators": {
"rsi": {
"enabled": true,
"period": 14,
"overbought": 70,
"oversold": 30
},
"macd": {
"enabled": true,
"fastPeriod": 12,
"slowPeriod": 26,
"signalPeriod": 9
},
"ema": {
"enabled": true,
"period": 50
}
},
"entryConditions": {
"buy": "rsi < oversold AND macdHistogram > 0",
"sell": "rsi > overbought AND macdHistogram < 0"
},
"exitConditions": {
"stopLoss": 5.0,
"takeProfit": 10.0,
"trailingStop": true,
"trailingDistance": 2.0
}
},
"moneyManagement": {
"method": "FixedAmount",
"fixedAmount": 1.0,
"martingale": {
"enabled": true,
"multiplier": 2.0,
"maxSteps": 4,
"resetAfterWin": true
}
},
"riskManagement": {
"maxDailyTrades": 100,
"maxLossLimit": 50.0,
"maxProfitTarget": 100.0,
"maxConsecutiveLosses": 5,
"allowTradingOnHighVolatility": false
},
"scheduling": {
"enableSchedule": true,
"activeDays": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"],
"startTime": "08:00",
"endTime": "17:00",
"timezone": "UTC"
},
"notifications": {
"enableTelegram": true,
"botToken": "YOUR_TELEGRAM_BOT_TOKEN",
"chatId": "YOUR_CHAT_ID",
"notifyOnTrade": true,
"notifyOnError": true,
"notifyOnStop": true
},
"logging": {
"enabled": true,
"logLevel": "info",
"saveToFile": true,
"filePath": "logs/forex_trades.json"
},
"backtesting": {
"enabled": false,
"startDate": "2024-01-01",
"endDate": "2024-12-31",
"initialBalance": 1000.0
}
}

You might also like