// ===============================
// DERIV UNDER 8 SMART BOT
// Optimized Beginner Strategy
// ===============================
// SETTINGS
const SYMBOL = 'R_100';
const STAKE = 1;
const MAX_LOSSES = 2;
// Internal Variables
let losses = 0;
let cooldown = false;
// MAIN LOOP
const runBot = async () => {
while (true) {
// Get latest tick
let tick = await Bot.getTicks(SYMBOL);
let quote = tick.quote.toString();
let digit = parseInt(quote.slice(-1));
console.log("Last Digit:", digit);
// ==================================
// SMART ENTRY CONDITIONS
// ==================================
// Only trade after 8 or 9
// because probability favors UNDER 8 next
if ((digit === 8 || digit === 9) && !cooldown) {
console.log("GOOD SIGNAL DETECTED");
// Buy UNDER 8
let contract = await Bot.buy({
contract_type: 'DIGITUNDER',
symbol: SYMBOL,
duration: 1,
duration_unit: 't',
barrier: '8',
amount: STAKE
});
console.log("UNDER 8 TRADE PLACED");
// Wait for result
let result = await contract.wait();
// ========================
// WIN MANAGEMENT
// ========================
if (result.profit > 0) {
console.log("WIN");
losses = 0;
} else {
console.log("LOSS");
losses++;
// ========================
// LOSS PROTECTION
// ========================
// Pause after consecutive losses
if (losses >= MAX_LOSSES) {
console.log("Cooldown Started");
cooldown = true;
// Wait 20 seconds
await Bot.sleep(20000);
cooldown = false;
losses = 0;
console.log("Cooldown Ended");
}
}
// Small delay between trades
await Bot.sleep(1500);
}
}
};
// START BOT
runBot();
// ===============================
// DERIV UNDER 8 SMART BOT
// Optimized Beginner Strategy
// ===============================
// SETTINGS
const SYMBOL = 'R_100';
const STAKE = 1;
const MAX_LOSSES = 2;
// Internal Variables
let losses = 0;
let cooldown = false;
// MAIN LOOP
const runBot = async () => {
while (true) {
}
};
// START BOT
runBot();