บทความ
expertoption
import React, { useState, useEffect, useRef } from 'react';
import {
AreaChart, Area, XAxis, YAxis, CartesianGrid, Tooltip, ResponsiveContainer, ReferenceLine, Line
} from 'recharts';
import {
TrendingUp, TrendingDown, User, ShieldCheck, Zap,
BarChart3, Wallet, Clock, ChevronDown, Settings,
BrainCircuit, Sparkles, Activity, Search, Globe, Bitcoin, Landmark, Timer
} from 'lucide-react';
const ASSETS = [
{ id: 'eurusd', name: 'EUR/USD', type: 'Forex', icon: , payout: 0.82, volatility: 0.00012, basePrice: 1.0845 },
{ id: 'btc', name: 'Bitcoin', type: 'Crypto', icon: , payout: 0.92, volatility: 0.0018, basePrice: 65200.00 },
{ id: 'eth', name: 'Ethereum', type: 'Crypto', icon: , payout: 0.88, volatility: 0.0015, basePrice: 3450.00 },
{ id: 'gold', name: 'Gold', type: 'Commodity', icon: , payout: 0.80, volatility: 0.0003, basePrice: 2150.00 },
];
cons…