File size: 30,115 Bytes
8b7b267 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 |
/**
* Professional Trading Assistant
* Real-time signals, advanced strategies, automated monitoring
* @version 3.0.0 - Production Ready for HF Spaces
*/
import { escapeHtml, safeFormatNumber, safeFormatCurrency } from '../../shared/js/utils/sanitizer.js';
/**
* API Configuration
*/
const API_CONFIG = {
backend: window.location.origin + '/api',
timeout: 8000, // Reduced timeout for faster fallback
retries: 1, // Number of retries per source
fallbacks: {
binance: 'https://api.binance.com/api/v3',
coingecko: 'https://api.coingecko.com/api/v3'
}
};
/**
* Simple cache for API responses
*/
const API_CACHE = {
data: new Map(),
ttl: 60000, // 60 seconds
set(key, value) {
this.data.set(key, {
value,
timestamp: Date.now()
});
},
get(key) {
const item = this.data.get(key);
if (!item) return null;
if (Date.now() - item.timestamp > this.ttl) {
this.data.delete(key);
return null;
}
return item.value;
},
clear() {
this.data.clear();
}
};
/**
* Trading Strategies
*/
const STRATEGIES = {
'trend-rsi-macd': {
name: 'Trend + RSI + MACD',
description: 'Combines trend following with momentum indicators',
indicators: ['EMA', 'RSI', 'MACD'],
timeframes: ['1h', '4h', '1d']
},
'scalping': {
name: 'Scalping Strategy',
description: 'Quick trades on small price movements',
indicators: ['Bollinger Bands', 'Stochastic', 'Volume'],
timeframes: ['1m', '5m', '15m']
},
'swing': {
name: 'Swing Trading',
description: 'Medium-term position trading',
indicators: ['EMA', 'RSI', 'Support/Resistance'],
timeframes: ['4h', '1d', '1w']
},
'breakout': {
name: 'Breakout Strategy',
description: 'Trade price breakouts from consolidation',
indicators: ['ATR', 'Volume', 'Bollinger Bands'],
timeframes: ['15m', '1h', '4h']
}
};
/**
* Cryptos for monitoring
*/
const CRYPTOS = [
{ symbol: 'BTC', name: 'Bitcoin', binance: 'BTCUSDT', demoPrice: 43000 },
{ symbol: 'ETH', name: 'Ethereum', binance: 'ETHUSDT', demoPrice: 2300 },
{ symbol: 'BNB', name: 'Binance Coin', binance: 'BNBUSDT', demoPrice: 310 },
{ symbol: 'SOL', name: 'Solana', binance: 'SOLUSDT', demoPrice: 98 },
{ symbol: 'ADA', name: 'Cardano', binance: 'ADAUSDT', demoPrice: 0.58 },
{ symbol: 'XRP', name: 'Ripple', binance: 'XRPUSDT', demoPrice: 0.62 },
{ symbol: 'DOT', name: 'Polkadot', binance: 'DOTUSDT', demoPrice: 7.2 },
{ symbol: 'AVAX', name: 'Avalanche', binance: 'AVAXUSDT', demoPrice: 38 },
{ symbol: 'MATIC', name: 'Polygon', binance: 'MATICUSDT', demoPrice: 0.89 },
{ symbol: 'LINK', name: 'Chainlink', binance: 'LINKUSDT', demoPrice: 14.5 }
];
/**
* Main Trading Assistant Class
*/
class TradingAssistantProfessional {
constructor() {
this.selectedCrypto = 'BTC';
this.selectedStrategy = 'trend-rsi-macd';
this.isMonitoring = false;
this.monitoringInterval = null;
this.signals = [];
this.marketData = {};
this.lastUpdate = null;
}
/**
* Initialize
*/
async init() {
try {
console.log('[TradingAssistant] Initializing Professional Edition...');
this.bindEvents();
this.renderStrategyCards();
this.renderCryptoList();
await this.loadMarketData();
this.showToast('✅ Trading Assistant Ready', 'success');
console.log('[TradingAssistant] Initialization complete');
} catch (error) {
console.error('[TradingAssistant] Initialization error:', error);
this.showToast('⚠️ Initialization error - using fallback mode', 'warning');
}
}
/**
* Bind UI events
*/
bindEvents() {
// Crypto selection
document.addEventListener('click', (e) => {
if (e.target.closest('[data-crypto]')) {
const cryptoBtn = e.target.closest('[data-crypto]');
this.selectedCrypto = cryptoBtn.dataset.crypto;
this.updateCryptoSelection();
this.loadMarketData();
}
});
// Strategy selection
document.addEventListener('click', (e) => {
if (e.target.closest('[data-strategy]')) {
const strategyBtn = e.target.closest('[data-strategy]');
this.selectedStrategy = strategyBtn.dataset.strategy;
this.updateStrategySelection();
}
});
// Get signals button
const getSignalsBtn = document.getElementById('get-signals-btn');
if (getSignalsBtn) {
getSignalsBtn.addEventListener('click', () => this.analyzeMarket());
}
// Toggle monitoring
const toggleMonitorBtn = document.getElementById('toggle-monitor-btn');
if (toggleMonitorBtn) {
toggleMonitorBtn.addEventListener('click', () => this.toggleMonitoring());
}
// Refresh button
const refreshBtn = document.getElementById('refresh-data');
if (refreshBtn) {
refreshBtn.addEventListener('click', () => this.loadMarketData(true));
}
// Export signals
const exportBtn = document.getElementById('export-signals');
if (exportBtn) {
exportBtn.addEventListener('click', () => this.exportSignals());
}
}
/**
* Render strategy cards
*/
renderStrategyCards() {
const container = document.getElementById('strategy-cards');
if (!container) return;
const html = Object.entries(STRATEGIES).map(([key, strategy]) => `
<div class="strategy-card ${key === this.selectedStrategy ? 'active' : ''}" data-strategy="${key}">
<div class="strategy-header">
<h4>${escapeHtml(strategy.name)}</h4>
<span class="strategy-badge">${strategy.indicators.length} indicators</span>
</div>
<p class="strategy-description">${escapeHtml(strategy.description)}</p>
<div class="strategy-indicators">
${strategy.indicators.map(ind => `<span class="indicator-tag">${escapeHtml(ind)}</span>`).join('')}
</div>
<div class="strategy-timeframes">
<small>Timeframes: ${strategy.timeframes.join(', ')}</small>
</div>
</div>
`).join('');
container.innerHTML = html;
}
/**
* Render crypto list
*/
renderCryptoList() {
const container = document.getElementById('crypto-list');
if (!container) return;
const html = CRYPTOS.map(crypto => `
<button class="crypto-btn ${crypto.symbol === this.selectedCrypto ? 'active' : ''}" data-crypto="${crypto.symbol}">
<span class="crypto-symbol">${crypto.symbol}</span>
<span class="crypto-name">${escapeHtml(crypto.name)}</span>
<span class="crypto-price" id="price-${crypto.symbol}">Loading...</span>
</button>
`).join('');
container.innerHTML = html;
}
/**
* Update crypto selection
*/
updateCryptoSelection() {
document.querySelectorAll('[data-crypto]').forEach(btn => {
btn.classList.toggle('active', btn.dataset.crypto === this.selectedCrypto);
});
}
/**
* Update strategy selection
*/
updateStrategySelection() {
document.querySelectorAll('[data-strategy]').forEach(card => {
card.classList.toggle('active', card.dataset.strategy === this.selectedStrategy);
});
}
/**
* Load market data
*/
async loadMarketData(forceRefresh = false) {
try {
console.log('[TradingAssistant] Loading market data...');
// Load current prices for all cryptos
for (const crypto of CRYPTOS) {
try {
const price = await this.fetchPrice(crypto.symbol);
this.marketData[crypto.symbol] = { price, timestamp: Date.now() };
// Update price display
const priceEl = document.getElementById(`price-${crypto.symbol}`);
if (priceEl) {
priceEl.textContent = safeFormatCurrency(price);
}
} catch (error) {
console.warn(`Failed to load price for ${crypto.symbol}:`, error);
}
}
// Load OHLCV for selected crypto
const ohlcvData = await this.fetchOHLCV(this.selectedCrypto, '4h', 100);
this.marketData[this.selectedCrypto].ohlcv = ohlcvData;
this.lastUpdate = new Date();
this.updateLastUpdateDisplay();
console.log('✅ Market data loaded');
} catch (error) {
console.error('❌ Failed to load market data:', error);
this.showToast('Failed to load market data', 'error');
}
}
/**
* Fetch current price
*/
async fetchPrice(symbol) {
const crypto = CRYPTOS.find(c => c.symbol === symbol);
if (!crypto) throw new Error('Symbol not found');
// Check cache first
const cacheKey = `price_${symbol}`;
const cached = API_CACHE.get(cacheKey);
if (cached) {
console.log(`[API] Using cached price for ${symbol}: $${cached}`);
return cached;
}
// Try backend first (faster within HF Spaces)
try {
const url = `${API_CONFIG.backend}/coins/top?limit=100`;
const response = await this.fetchWithTimeout(url, 5000); // Shorter timeout for backend
if (response.ok) {
const data = await response.json();
const coins = data.markets || data.coins || data.data || [];
const coin = coins.find(c => c.symbol?.toUpperCase() === symbol);
if (coin) {
const price = coin.current_price || coin.price || 0;
if (price > 0) {
API_CACHE.set(cacheKey, price);
return price;
}
}
}
} catch (error) {
console.warn('[API] Backend price fetch failed:', error.message);
}
// Try Binance as fallback (may be slow/blocked)
try {
const url = `${API_CONFIG.fallbacks.binance}/ticker/price?symbol=${crypto.binance}`;
const response = await this.fetchWithTimeout(url, 5000);
if (response.ok) {
const data = await response.json();
const price = parseFloat(data.price);
if (price > 0) {
API_CACHE.set(cacheKey, price);
return price;
}
}
} catch (error) {
console.warn('[API] Binance price fetch failed:', error.message);
}
// Use fallback demo price
console.warn(`[API] All sources failed for ${symbol}, using demo price`);
const demoPrice = crypto.demoPrice || 1000;
return demoPrice;
}
/**
* Fetch OHLCV data
*/
async fetchOHLCV(symbol, timeframe, limit) {
const crypto = CRYPTOS.find(c => c.symbol === symbol);
if (!crypto) throw new Error('Symbol not found');
// Check cache first
const cacheKey = `ohlcv_${symbol}_${timeframe}_${limit}`;
const cached = API_CACHE.get(cacheKey);
if (cached) {
console.log(`[API] Using cached OHLCV for ${symbol}`);
return cached;
}
// Try Binance first (most reliable for OHLCV)
try {
const intervalMap = {
'1m': '1m', '5m': '5m', '15m': '15m',
'1h': '1h', '4h': '4h', '1d': '1d', '1w': '1w'
};
const interval = intervalMap[timeframe] || '4h';
const url = `${API_CONFIG.fallbacks.binance}/klines?symbol=${crypto.binance}&interval=${interval}&limit=${limit}`;
const response = await this.fetchWithTimeout(url, 6000);
if (response.ok) {
const data = await response.json();
const ohlcv = data.map(item => ({
time: Math.floor(item[0] / 1000),
open: parseFloat(item[1]),
high: parseFloat(item[2]),
low: parseFloat(item[3]),
close: parseFloat(item[4]),
volume: parseFloat(item[5])
}));
API_CACHE.set(cacheKey, ohlcv);
return ohlcv;
}
} catch (error) {
console.warn('[API] Binance OHLCV fetch failed:', error.message);
}
// Try backend
try {
const url = `${API_CONFIG.backend}/ohlcv/${symbol}?interval=${timeframe}&limit=${limit}`;
const response = await this.fetchWithTimeout(url, 5000);
if (response.ok) {
const data = await response.json();
const items = data.data || data.ohlcv || data.items || [];
const ohlcv = items.map(item => ({
time: typeof item.timestamp === 'number' ? item.timestamp : Math.floor(new Date(item.timestamp).getTime() / 1000),
open: parseFloat(item.open),
high: parseFloat(item.high),
low: parseFloat(item.low),
close: parseFloat(item.close),
volume: parseFloat(item.volume || 0)
}));
API_CACHE.set(cacheKey, ohlcv);
return ohlcv;
}
} catch (error) {
console.warn('[API] Backend OHLCV fetch failed:', error.message);
}
// Generate demo OHLCV data as fallback
console.warn(`[API] All sources failed for ${symbol} OHLCV, generating demo data`);
return this.generateDemoOHLCV(crypto.demoPrice || 1000, limit);
}
/**
* Generate demo OHLCV data for fallback
*/
generateDemoOHLCV(basePrice, limit) {
const now = Math.floor(Date.now() / 1000);
const interval = 14400; // 4 hours in seconds
const data = [];
for (let i = limit - 1; i >= 0; i--) {
const volatility = basePrice * 0.02; // 2% volatility
const trend = (Math.random() - 0.5) * volatility;
const open = basePrice + trend;
const close = open + (Math.random() - 0.5) * volatility;
const high = Math.max(open, close) + Math.random() * volatility * 0.5;
const low = Math.min(open, close) - Math.random() * volatility * 0.5;
const volume = basePrice * (10000 + Math.random() * 5000);
data.push({
time: now - (i * interval),
open,
high,
low,
close,
volume
});
basePrice = close; // Next candle starts from previous close
}
return data;
}
/**
* Fetch with timeout
*/
async fetchWithTimeout(url, timeout) {
const controller = new AbortController();
const timeoutId = setTimeout(() => controller.abort(), timeout);
try {
const response = await fetch(url, {
signal: controller.signal,
headers: { 'Accept': 'application/json' }
});
clearTimeout(timeoutId);
return response;
} catch (error) {
clearTimeout(timeoutId);
if (error.name === 'AbortError') {
throw new Error('Request timeout');
}
throw error;
}
}
/**
* Analyze market and generate signals
*/
async analyzeMarket() {
const analyzeBtn = document.getElementById('get-signals-btn');
if (analyzeBtn) {
analyzeBtn.disabled = true;
analyzeBtn.textContent = 'Analyzing...';
}
try {
console.log(`[TradingAssistant] Analyzing ${this.selectedCrypto} with ${this.selectedStrategy}...`);
// Get OHLCV data
const cryptoData = this.marketData[this.selectedCrypto];
if (!cryptoData || !cryptoData.ohlcv) {
await this.loadMarketData();
}
const ohlcvData = this.marketData[this.selectedCrypto].ohlcv;
if (!ohlcvData || ohlcvData.length < 30) {
throw new Error('Insufficient data for analysis');
}
// Calculate indicators
const indicators = this.calculateIndicators(ohlcvData);
// Generate signal
const signal = this.generateSignal(ohlcvData, indicators, this.selectedStrategy);
// Add to signals list
this.signals.unshift(signal);
if (this.signals.length > 50) {
this.signals = this.signals.slice(0, 50);
}
// Render signals
this.renderSignals();
this.showToast(`✅ Signal generated: ${signal.action.toUpperCase()}`, signal.action === 'BUY' ? 'success' : signal.action === 'SELL' ? 'error' : 'info');
} catch (error) {
console.error('❌ Analysis error:', error);
this.showToast('Analysis failed: ' + error.message, 'error');
} finally {
if (analyzeBtn) {
analyzeBtn.disabled = false;
analyzeBtn.textContent = 'Get Signals';
}
}
}
/**
* Calculate technical indicators
*/
calculateIndicators(ohlcvData) {
const closes = ohlcvData.map(c => c.close);
return {
rsi: this.calculateRSI(closes, 14),
macd: this.calculateMACD(closes),
ema20: this.calculateEMA(closes, 20),
ema50: this.calculateEMA(closes, 50),
atr: this.calculateATR(ohlcvData, 14),
volume: ohlcvData[ohlcvData.length - 1].volume
};
}
/**
* Calculate RSI
*/
calculateRSI(prices, period = 14) {
if (prices.length < period + 1) return null;
let gains = 0;
let losses = 0;
for (let i = 1; i <= period; i++) {
const change = prices[i] - prices[i - 1];
if (change > 0) gains += change;
else losses += Math.abs(change);
}
let avgGain = gains / period;
let avgLoss = losses / period;
for (let i = period + 1; i < prices.length; i++) {
const change = prices[i] - prices[i - 1];
const gain = change > 0 ? change : 0;
const loss = change < 0 ? Math.abs(change) : 0;
avgGain = (avgGain * (period - 1) + gain) / period;
avgLoss = (avgLoss * (period - 1) + loss) / period;
}
const rs = avgGain / avgLoss;
return 100 - (100 / (1 + rs));
}
/**
* Calculate MACD
*/
calculateMACD(prices) {
const ema12 = this.calculateEMA(prices, 12);
const ema26 = this.calculateEMA(prices, 26);
return ema12 - ema26;
}
/**
* Calculate EMA
*/
calculateEMA(prices, period) {
if (prices.length < period) return null;
const k = 2 / (period + 1);
let ema = prices[0];
for (let i = 1; i < prices.length; i++) {
ema = prices[i] * k + ema * (1 - k);
}
return ema;
}
/**
* Calculate ATR (Average True Range)
*/
calculateATR(ohlcvData, period = 14) {
if (ohlcvData.length < period + 1) return null;
const trValues = [];
for (let i = 1; i < ohlcvData.length; i++) {
const high = ohlcvData[i].high;
const low = ohlcvData[i].low;
const prevClose = ohlcvData[i - 1].close;
const tr = Math.max(
high - low,
Math.abs(high - prevClose),
Math.abs(low - prevClose)
);
trValues.push(tr);
}
// Calculate ATR as average of TR values
const atr = trValues.slice(-period).reduce((sum, tr) => sum + tr, 0) / period;
return atr;
}
/**
* Generate trading signal
*/
generateSignal(ohlcvData, indicators, strategy) {
const latestCandle = ohlcvData[ohlcvData.length - 1];
const currentPrice = latestCandle.close;
let action = 'HOLD';
let confidence = 50;
let reasons = [];
// Strategy-specific logic
if (strategy === 'trend-rsi-macd') {
// Bullish signals
const bullishSignals = [];
if (indicators.rsi < 30) bullishSignals.push('RSI Oversold');
if (indicators.macd > 0) bullishSignals.push('MACD Bullish');
if (currentPrice > indicators.ema20) bullishSignals.push('Above EMA20');
// Bearish signals
const bearishSignals = [];
if (indicators.rsi > 70) bearishSignals.push('RSI Overbought');
if (indicators.macd < 0) bearishSignals.push('MACD Bearish');
if (currentPrice < indicators.ema20) bearishSignals.push('Below EMA20');
if (bullishSignals.length >= 2) {
action = 'BUY';
confidence = 60 + (bullishSignals.length * 10);
reasons = bullishSignals;
} else if (bearishSignals.length >= 2) {
action = 'SELL';
confidence = 60 + (bearishSignals.length * 10);
reasons = bearishSignals;
} else {
reasons = ['Mixed signals - no clear trend'];
}
}
// Calculate entry/exit/stop
const entryPrice = currentPrice;
const stopLoss = action === 'BUY'
? currentPrice - (indicators.atr * 1.5)
: currentPrice + (indicators.atr * 1.5);
const takeProfit = action === 'BUY'
? currentPrice + (indicators.atr * 3)
: currentPrice - (indicators.atr * 3);
return {
timestamp: new Date(),
symbol: this.selectedCrypto,
strategy: STRATEGIES[strategy].name,
action,
confidence,
reasons,
price: currentPrice,
entryPrice,
stopLoss,
takeProfit,
indicators: {
rsi: indicators.rsi?.toFixed(2),
macd: indicators.macd?.toFixed(4),
ema20: indicators.ema20?.toFixed(2)
}
};
}
/**
* Render signals list
*/
renderSignals() {
const container = document.getElementById('signals-list');
if (!container) return;
if (this.signals.length === 0) {
container.innerHTML = `
<div style="text-align: center; padding: 3rem; color: var(--text-muted);">
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" style="margin-bottom: 1rem;">
<polyline points="22 12 18 12 15 21 9 3 6 12 2 12"></polyline>
</svg>
<p>No signals yet. Click "Get Signals" to analyze the market.</p>
</div>
`;
return;
}
const html = this.signals.map(signal => `
<div class="signal-card signal-${signal.action.toLowerCase()}">
<div class="signal-header">
<div>
<span class="signal-badge badge-${signal.action.toLowerCase()}">${signal.action}</span>
<span class="signal-symbol">${signal.symbol}</span>
<span class="signal-confidence">${signal.confidence}% confidence</span>
</div>
<div class="signal-time">${signal.timestamp.toLocaleTimeString()}</div>
</div>
<div class="signal-body">
<div class="signal-price">
<strong>Entry:</strong> ${safeFormatCurrency(signal.entryPrice)}
</div>
<div class="signal-targets">
<div><strong>Stop Loss:</strong> ${safeFormatCurrency(signal.stopLoss)}</div>
<div><strong>Take Profit:</strong> ${safeFormatCurrency(signal.takeProfit)}</div>
</div>
<div class="signal-reasons">
<strong>Reasons:</strong>
<ul>
${signal.reasons.map(r => `<li>${escapeHtml(r)}</li>`).join('')}
</ul>
</div>
<div class="signal-indicators">
<span>RSI: ${signal.indicators.rsi}</span>
<span>MACD: ${signal.indicators.macd}</span>
<span>EMA20: ${signal.indicators.ema20}</span>
</div>
</div>
</div>
`).join('');
container.innerHTML = html;
}
/**
* Toggle monitoring
*/
toggleMonitoring() {
this.isMonitoring = !this.isMonitoring;
const btn = document.getElementById('toggle-monitor-btn');
if (btn) {
btn.textContent = this.isMonitoring ? 'Stop Monitoring' : 'Start Monitoring';
btn.classList.toggle('btn-danger', this.isMonitoring);
btn.classList.toggle('btn-primary', !this.isMonitoring);
}
if (this.isMonitoring) {
this.startMonitoring();
this.showToast('✅ Monitoring started', 'success');
} else {
this.stopMonitoring();
this.showToast('⏹️ Monitoring stopped', 'info');
}
}
/**
* Start automated monitoring
*/
startMonitoring() {
// Analyze every 5 minutes
this.monitoringInterval = setInterval(() => {
this.analyzeMarket();
}, 5 * 60 * 1000);
// Immediate analysis
this.analyzeMarket();
}
/**
* Stop monitoring
*/
stopMonitoring() {
if (this.monitoringInterval) {
clearInterval(this.monitoringInterval);
this.monitoringInterval = null;
}
}
/**
* Export signals
*/
exportSignals() {
if (this.signals.length === 0) {
this.showToast('No signals to export', 'warning');
return;
}
const exportData = {
exportDate: new Date().toISOString(),
totalSignals: this.signals.length,
signals: this.signals
};
const blob = new Blob([JSON.stringify(exportData, null, 2)], { type: 'application/json' });
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = `trading_signals_${Date.now()}.json`;
a.click();
URL.revokeObjectURL(url);
this.showToast('✅ Signals exported', 'success');
}
/**
* Update last update display
*/
updateLastUpdateDisplay() {
const el = document.getElementById('last-update-time');
if (el && this.lastUpdate) {
el.textContent = `Last update: ${this.lastUpdate.toLocaleTimeString()}`;
}
}
/**
* Show toast notification
*/
showToast(message, type = 'info') {
console.log(`[Toast ${type}]`, message);
// Simple toast implementation
const toast = document.createElement('div');
toast.className = `toast toast-${type}`;
toast.textContent = message;
toast.style.cssText = `
position: fixed;
top: 20px;
right: 20px;
background: ${type === 'success' ? '#22c55e' : type === 'error' ? '#ef4444' : '#3b82f6'};
color: white;
padding: 1rem 1.5rem;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.3);
z-index: 10000;
animation: slideIn 0.3s ease;
`;
document.body.appendChild(toast);
setTimeout(() => {
toast.style.animation = 'slideOut 0.3s ease';
setTimeout(() => toast.remove(), 300);
}, 3000);
}
/**
* Cleanup
*/
destroy() {
this.stopMonitoring();
}
}
// Initialize on page load
let tradingAssistantInstance = null;
document.addEventListener('DOMContentLoaded', async () => {
try {
tradingAssistantInstance = new TradingAssistantProfessional();
await tradingAssistantInstance.init();
} catch (error) {
console.error('[TradingAssistant] Fatal error:', error);
}
});
// Cleanup on unload
window.addEventListener('beforeunload', () => {
if (tradingAssistantInstance) {
tradingAssistantInstance.destroy();
}
});
// Add CSS animations
const style = document.createElement('style');
style.textContent = `
@keyframes slideIn {
from { transform: translateX(400px); opacity: 0; }
to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOut {
from { transform: translateX(0); opacity: 1; }
to { transform: translateX(400px); opacity: 0; }
}
`;
document.head.appendChild(style);
export { TradingAssistantProfessional };
export default TradingAssistantProfessional;
|