Quotex Ai Bot
Example heading with h2 size
Example heading with h3 size
Following is sample java code.
int i = 10;
if(i>0){
System.out.println('positive');
}
<!DOCTYPE html> <html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>🔥 VHABUK BG 🔥</title>
<style>
body {
margin: 0;
padding: 20px;
background-color: #000;
color: white;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
text-align: center;
text-transform: uppercase;
}
h1 {
font-size: 2em;
margin-bottom: 20px;
}
.signal-box {
background-color: #111;
border-radius: 12px;
padding: 20px;
max-width: 450px;
margin: auto;
font-size: 1.3em;
box-shadow: 0 0 8px rgba(255,255,255,0.1);
}
.telegram-btn {
display: inline-block;
margin-top: 25px;
padding: 12px 25px;
background-color: #229ED9;
color: white;
font-size: 16px;
border-radius: 10px;
text-decoration: none;
}
.time {
margin-top: 15px;
font-size: 0.9em;
color: #bbb;
}
.bling-text {
margin-top: 30px;
font-size: 1.1em;
font-weight: bold;
color: #00ffcc;
animation: bling 1s infinite alternate;
}
@keyframes bling {
0% { text-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc, 0 0 15px #00ffcc; }
100% { text-shadow: 0 0 20px #00ffff, 0 0 30px #00ffff, 0 0 40px #00ffff; }
}
</style>
</head>
<body>
<h1>🔥 VHABUK BG 🔥</h1> <div class="signal-box" id="signal">LOADING SIGNAL...</div> <a href="https://t.me/sessionbyrs" class="telegram-btn" target="_blank">📲 JOIN TELEGRAM</a>
<div class="time" id="bdt-time">TIME (BDT): LOADING...</div>
<div class="time" id="countdown">NEXT SIGNAL IN: 5:00</div> <div class="bling-text">
🤖 Robotaz Bot Created BY ZAMAL
</div> <!-- Avoid List Section --> <div class="signal-box" style="margin-top: 30px; background-color: #1a1a1a;">
<h3 style="color: red;">❌ AVOID LIST</h3>
<ul style="text-align: left; padding-left: 20px; line-height: 1.7;">
<li><b>$ TRANDE</b> - এর বিপরীতে <b>$IGNAL</b> দিলে নেওয়া যাবে না। ⚠️</li>
<li><b>$ TRANDE</b> - এর মাঝে যদি লস হয় তাহলে <b>MTG</b> নেওয়া যাবে না। ⚠️</li>
<li><b>80% - 90%</b> মার্কেটে <b>TRADE</b> নিতে হবে। ✅</li>
<li><b>REAL</b> মার্কেটে <b>SIGNAL</b> আসলে বাদ। ⚠️</li>
<li><b>OTC</b> মার্কেটে <b>SIGNAL</b> 80% to 90% WIN 💲</li>
<li><b>TRADE TIME (MORNING)</b>: 7AM to 8AM ✨</li>
<li><b>TRADE TIME (NIGHT)</b>: 6PM to 9PM ✨</li>
</ul>
</div> <audio id="notifSound" src="https://actions.google.com/sounds/v1/alarms/beep_short.ogg" preload="auto"></audio>
<script>
const pairs = [
'USD/BDT', 'USD/JPY', 'USD/ARS', 'USD/PKR', 'USD/PHP',
'USD/TRY', 'USD/DZD', 'USD/CHF', 'NZD/CAD'
];
const directions = ['CALL ⬆️', 'PUT ⬇️'];
let countdown = 300;
function getRandomSignal() {
const pair = pairs[Math.floor(Math.random() * pairs.length)];
const dir = directions[Math.floor(Math.random() * directions.length)];
return `<b>TM TRADING ROOM</b><br><br><b>PAIR:</b> ${pair}<br><b>DIRECTION:</b> ${dir}<br><b>TIMEFRAME:</b> 1 MINUTE`;
}
function updateSignal() {
document.getElementById("signal").innerHTML = getRandomSignal();
const sound = document.getElementById("notifSound");
sound.pause();
sound.currentTime = 0;
sound.play();
countdown = 300;
}
function updateCountdown() {
const minutes = Math.floor(countdown / 60);
const seconds = countdown % 60;
document.getElementById("countdown").textContent =
`NEXT SIGNAL IN: ${minutes}:${seconds < 10 ? '0' : ''}${seconds}`;
if (countdown > 0) {
countdown--;
}
}
function updateBDTTime() {
const options = {
timeZone: 'Asia/Dhaka',
hour: '2-digit',
minute: '2-digit',
second: '2-digit',
hour12: true
};
const now = new Date();
const timeString = new Intl.DateTimeFormat('en-US', options).format(now);
document.getElementById("bdt-time").textContent = `TIME (BDT): ${timeString.toUpperCase()}`;
}
updateSignal();
updateBDTTime();
updateCountdown();
setInterval(updateSignal, 300000); // Every 5 minutes
setInterval(updateCountdown, 1000); // Countdown every second
setInterval(updateBDTTime, 1000); // Time every second
</script> </body>
</html>