마켓 / MetaTrader 5 / Experts / FIbonacci Robot Scalper 30 USD 데모 다운로드됨: 26 게시됨: 26 11월 2025 현재 버전: 1.35 적합한 로봇을 찾지 못하셨나요? 프리랜스에서 나만의 로봇을 주문해 보세요 프리랜스로 이동 트레이딩 로봇 또는 지표 구매 구입 방법 EA를 작동시켜보세요 가상 호스팅으로 구매 전에 지표와 트레이딩 로봇을 테스트해보세요 마켓에서 수익 창출을 원하십니까? 제품의 판매량을 나타내는 방법 미리보기 리뷰 코멘트 (5) 새 소식 제품을 구매하거나 렌트한 사용자만 코멘트를 남길 수 있습니다 Gabriel Henrique Souza Gaya 2025.11.27 12:40 #1 📊 Trading Strategy Backtest Summary 1. Initial Conditions Initial Deposit: $3,000 Leverage: 1:200 History Quality: 100% Bars Tested: 3,743 Ticks Processed: 801,460 Active Symbols: 1 2. Overall Performance Total Net Profit: $480.78 Gross Profit: $480.78 Gross Loss: $0.00 Profit Factor: Undefined (no losses) Expected Payoff: 96.16 3. Drawdown Analysis Absolute Drawdown: $0.00 Maximal Drawdown: $378.15 (10.88%) Relative Drawdown: 10.88% 4. Risk & Efficiency Metrics Sharpe Ratio: 0.48 Recovery Factor: 1.27 LR Correlation: 0.98 LR Standard Error: 9.70 5. Trade Statistics Total Trades: 5 Total Orders: 10 Winning Trades: 100% win rate (5 out of 5 trades) Short Positions: 3 wins (100%) Long Positions: 2 wins (100%) Profit/Loss Details: Largest Winning Trade: $103.50 Average Profit per Trade: $96.16 Largest Loss: $0.00 Number of Consecutive Wins: 5 Max Consecutive Profit: $480.78 6. Correlation Metrics Profit vs. MFE Correlation: 1.00 Profit vs. MAE Correlation: 0.36 MFE vs. MAE Correlation: 0.3619 7. Trade Duration Minimum Position Duration: 25 min 38 sec Maximum Position Duration: 67 hours 8 min 36 sec Average Position Duration: 18 hours 49 min 01 sec 📈 Conclusion The backtest shows exceptional performance with: A 100% win rate, Zero losing trades, Moderate drawdown at 10.88%, Consistent profitability over only 5 trades. While the results are very strong, the small number of trades suggests that additional testing over a larger sample size is needed to confirm long-term reliability and robustness. Gabriel Henrique Souza Gaya 2025.11.27 14:50 #2 Análise de Trading - Dias 26 e 27/11 :root { --primary-color: #2c3e50; --secondary-color: #3498db; --success-color: #2ecc71; --danger-color: #e74c3c; --warning-color: #f39c12; --light-color: #ecf0f1; --dark-color: #34495e; } * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } body { background-color: #f5f7fa; color: #333; line-height: 1.6; } .container { max-width: 1200px; margin: 0 auto; padding: 20px; } header { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: white; padding: 30px 0; text-align: center; border-radius: 10px; margin-bottom: 30px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); } h1 { font-size: 2.5rem; margin-bottom: 10px; } .subtitle { font-size: 1.2rem; opacity: 0.9; } .date-filter { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; } .date-btn { padding: 10px 20px; background-color: var(--secondary-color); color: white; border: none; border-radius: 5px; cursor: pointer; font-weight: 600; transition: background-color 0.3s; } .date-btn.active { background-color: var(--primary-color); } .date-btn:hover { background-color: #2980b9; } .dashboard { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 30px; } .card { background: white; border-radius: 10px; padding: 20px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; } .card:hover { transform: translateY(-5px); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); } .card h2 { color: var(--primary-color); margin-bottom: 15px; font-size: 1.3rem; border-bottom: 2px solid var(--light-color); padding-bottom: 10px; } .stat { display: flex; justify-content: space-between; margin-bottom: 10px; padding: 8px 0; border-bottom: 1px solid #eee; } .stat-value { font-weight: bold; } .profit { color: var(--success-color); } .loss { color: var(--danger-color); } .chart-container { background: white; border-radius: 10px; padding: 20px; margin-bottom: 30px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); } .chart-title { color: var(--primary-color); margin-bottom: 15px; font-size: 1.3rem; } table { width: 100%; border-collapse: collapse; margin-bottom: 30px; background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); } th, td { padding: 12px 15px; text-align: left; border-bottom: 1px solid #eee; } th { background-color: var(--primary-color); color: white; font-weight: 600; } tr:hover { background-color: #f9f9f9; } .summary { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 30px; } .summary-card { background: white; border-radius: 10px; padding: 20px; text-align: center; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); } .summary-card h3 { color: var(--primary-color); margin-bottom: 10px; } .summary-value { font-size: 2rem; font-weight: bold; margin: 10px 0; } footer { text-align: center; margin-top: 40px; padding: 20px; color: #7f8c8d; border-top: 1px solid #eee; } @media (max-width: 768px) { .dashboard, .summary { grid-template-columns: 1fr; } h1 { font-size: 2rem; } .date-filter { flex-direction: column; align-items: center; } } Análise de Trading Dias 26 e 27 de Novembro de 2025 Todos os Dias Dia 26 Dia 27 Saldo Final $766.81 Valor atual da conta Total de Transações 129 Ordens executadas Lucro Líquido +$87.83 Resultado do período Performance por Dia 26/11 - Lucro: +$46.08 27/11 - Lucro: +$41.75 Melhor Trade: +$12.50 (GBPUSD) Pior Trade: -$5.05 (NZDJPY) Ativos Mais Negociados NZDUSD: 8 transações AUDUSD: 7 transações EURGBP: 6 transações USDJPY: 6 transações Análise de Volume Volume Total: 8.37 lotes Volume Médio: 0.065 lote Maior Volume: 0.5 lote Menor Volume: 0.01 lote Evolução do Saldo - Dias 26 e 27 Distribuição de Resultados por Horário Performance por Ativo Transações dos Dias 26 e 27 Data/Hora Ativo Tipo Volume Resultado 2025.11.26 17:55:02 GBPUSD Compra 0.5 +$12.50 2025.11.26 17:55:06 EURGBP Venda 0.5 +$7.28 2025.11.26 17:57:32 GBPJPY Compra 0.5 +$10.55 2025.11.26 18:05:55 AUDJPY Compra 0.5 +$5.75 2025.11.26 18:05:56 AUDCAD Compra 0.5 +$1.07 2025.11.27 14:56:39 GBPCHF Venda 0.1 +$10.05 Análise focada nos dias 26 e 27 de novembro de 2025 Dados extraídos do arquivo ReportHistory-230755.xlsx // Dados para os dias 26 e 27 const day26Data = { balance: 725.06, transactions: 10, netProfit: 46.08, assets: { 'GBPUSD': 12.50, 'EURGBP': 7.28, 'GBPJPY': 10.55, 'AUDJPY': 5.75, 'AUDCAD': 1.07, 'AUDUSD': 10.00, 'NZDUSD': 3.00, 'EURAUD': -2.61 } }; const day27Data = { balance: 766.81, transactions: 119, netProfit: 41.75, assets: { 'NZDUSD': -0.1, 'EURGBP': -2.65, 'AUDUSD': -0.8, 'USDCAD': -0.28, 'NZDJPY': -5.05, 'USDJPY': 6.91, 'GBPCHF': 10.05, 'EURAUD': 10.7, 'GBPNZD': 10.01, 'EURCAD': 11.4 } }; const allData = { balance: 766.81, transactions: 129, netProfit: 87.83, assets: { 'GBPUSD': 12.50, 'EURGBP': 4.63, 'GBPJPY': 10.55, 'AUDJPY': 5.75, 'AUDCAD': 1.07, 'AUDUSD': 9.20, 'NZDUSD': 2.90, 'EURAUD': 8.09, 'USDJPY': 6.91, 'GBPCHF': 10.05, 'GBPNZD': 10.01, 'EURCAD': 11.4, 'NZDJPY': -5.05, 'USDCAD': -0.28 } }; // Gráfico de Evolução do Saldo const balanceCtx = document.getElementById('balanceChart').getContext('2d'); const balanceChart = new Chart(balanceCtx, { type: 'line', data: { labels: ['26/11 - Início', '26/11 - Fim', '27/11 - Fim'], datasets: [{ label: 'Saldo da Conta', data: [678.98, 725.06, 766.81], borderColor: '#3498db', backgroundColor: 'rgba(52, 152, 219, 0.1)', borderWidth: 2, fill: true, tension: 0.4 }] }, options: { responsive: true, plugins: { legend: { position: 'top', }, title: { display: true, text: 'Evolução do Saldo nos Dias 26 e 27' } }, scales: { y: { beginAtZero: false, title: { display: true, text: 'Saldo ($)' } } } } }); // Gráfico de Distribuição por Horário const timeCtx = document.getElementById('timeDistributionChart').getContext('2d'); const timeChart = new Chart(timeCtx, { type: 'bar', data: { labels: ['00-04h', '04-08h', '08-12h', '12-16h', '16-20h', '20-24h'], datasets: [{ label: 'Número de Transações', data: [25, 40, 15, 20, 15, 14], backgroundColor: '#3498db', borderWidth: 1 }] }, options: { responsive: true, plugins: { legend: { position: 'top', }, title: { display: true, text: 'Distribuição de Transações por Horário' } }, scales: { y: { beginAtZero: true, title: { display: true, text: 'Número de Transações' } } } } }); // Gráfico de Performance por Ativo const assetCtx = document.getElementById('assetPerformanceChart').getContext('2d'); const assetChart = new Chart(assetCtx, { type: 'bar', data: { labels: Object.keys(allData.assets), datasets: [{ label: 'Lucro/Prejuízo Total ($)', data: Object.values(allData.assets), backgroundColor: function(context) { const value = context.raw; return value >= 0 ? '#2ecc71' : '#e74c3c'; }, borderWidth: 1 }] }, options: { responsive: true, plugins: { legend: { position: 'top', }, title: { display: true, text: 'Performance por Ativo (Dias 26 e 27)' } }, scales: { y: { beginAtZero: true, title: { display: true, text: 'Valor ($)' } } } } }); // Função para filtrar dados por dia function filterData(day) { // Atualizar botões ativos document.querySelectorAll('.date-btn').forEach(btn => { btn.classList.remove('active'); }); event.target.classList.add('active'); // Atualizar dados com base no dia selecionado let data; if (day === '26') { data = day26Data; } else if (day === '27') { data = day27Data; } else { data = allData; } // Atualizar os valores nos cartões de resumo document.getElementById('final-balance').textContent = '$' + data.balance.toFixed(2); document.getElementById('total-transactions').textContent = data.transactions; document.getElementById('net-profit').textContent = (data.netProfit >= 0 ? '+' : '') + '$' + data.netProfit.toFixed(2); // Atualizar o gráfico de performance por ativo assetChart.data.labels = Object.keys(data.assets); assetChart.data.datasets[0].data = Object.values(data.assets); assetChart.update(); // Atualizar a tabela de transações (simulação) updateTransactionsTable(day); } // Função para atualizar a tabela de transações (simulação simplificada) function updateTransactionsTable(day) { const tableBody = document.getElementById('transactions-table'); tableBody.innerHTML = ''; // Esta é uma simulação - em uma aplicação real, você teria dados completos let sampleTransactions = []; if (day === '26') { sampleTransactions = [ { time: '2025.11.26 17:55:02', asset: 'GBPUSD', type: 'Compra', volume: 0.5, result: 12.50 }, { time: '2025.11.26 17:55:06', asset: 'EURGBP', type: 'Venda', volume: 0.5, result: 7.28 }, { time: '2025.11.26 17:57:32', asset: 'GBPJPY', type: 'Compra', volume: 0.5, result: 10.55 }, { time: '2025.11.26 18:05:55', asset: 'AUDJPY', type: 'Compra', volume: 0.5, result: 5.75 }, { time: '2025.11.26 18:05:56', asset: 'AUDCAD', type: 'Compra', volume: 0.5, result: 1.07 } ]; } else if (day === '27') { sampleTransactions = [ { time: '2025.11.27 14:56:39', asset: 'GBPCHF', type: 'Venda', volume: 0.1, result: 10.05 }, { time: '2025.11.27 10:26:46', asset: 'GBPNZD', type: 'Compra', volume: 0.1, result: 10.01 }, { time: '2025.11.27 10:12:30', asset: 'EURCAD', type: 'Compra', volume: 0.1, result: 11.40 }, { time: '2025.11.27 10:12:30', asset: 'EURAUD', type: 'Compra', volume: 0.1, result: 10.70 }, { time: '2025.11.27 01:34:16', asset: 'AUDCAD', type: 'Venda', volume: 0.5, result: 1.07 } ]; } else { sampleTransactions = [ { time: '2025.11.26 17:55:02', asset: 'GBPUSD', type: 'Compra', volume: 0.5, result: 12.50 }, { time: '2025.11.26 17:55:06', asset: 'EURGBP', type: 'Venda', volume: 0.5, result: 7.28 }, { time: '2025.11.26 17:57:32', asset: 'GBPJPY', type: 'Compra', volume: 0.5, result: 10.55 }, { time: '2025.11.26 18:05:55', asset: 'AUDJPY', type: 'Compra', volume: 0.5, result: 5.75 }, { time: '2025.11.26 18:05:56', asset: 'AUDCAD', type: 'Compra', volume: 0.5, result: 1.07 }, { time: '2025.11.27 14:56:39', asset: 'GBPCHF', type: 'Venda', volume: 0.1, result: 10.05 } ]; } sampleTransactions.forEach(transaction => { const row = document.createElement('tr'); row.innerHTML = ` ${transaction.time} ${transaction.asset} ${transaction.type} ${transaction.volume} ${transaction.result >= 0 ? '+' : ''}$${transaction.result.toFixed(2)}`; tableBody.appendChild(row); }); } Gabriel Henrique Souza Gaya 2025.11.27 14:58 #3 This is my results in two days with this robot Gabriel Henrique Souza Gaya 2025.11.28 23:11 #4 My Profit in 3 days Gabriel Henrique Souza Gaya 2025.12.08 12:18 #5 Rodando banca de 200 dolares, em 1 hora e 15 minutos tive o lucro de 42 dolares, mais de 20% da banca. 제품을 구매하거나 렌트한 사용자만 코멘트를 남길 수 있습니다 트레이딩 기회를 놓치고 있어요: 무료 트레이딩 앱 복사용 8,000 이상의 시그널 금융 시장 개척을 위한 경제 뉴스 등록 로그인 공백없는 라틴 문자 비밀번호가 이 이메일로 전송될 것입니다 오류 발생됨 Google으로 로그인 웹사이트 정책 및 이용약관에 동의합니다. 계정이 없으시면, 가입하십시오 MQL5.com 웹사이트에 로그인을 하기 위해 쿠키를 허용하십시오. 브라우저에서 필요한 설정을 활성화하시지 않으면, 로그인할 수 없습니다. 사용자명/비밀번호를 잊으셨습니까? Google으로 로그인
Gabriel Henrique Souza Gaya 2025.11.27 12:40 #1 📊 Trading Strategy Backtest Summary 1. Initial Conditions Initial Deposit: $3,000 Leverage: 1:200 History Quality: 100% Bars Tested: 3,743 Ticks Processed: 801,460 Active Symbols: 1 2. Overall Performance Total Net Profit: $480.78 Gross Profit: $480.78 Gross Loss: $0.00 Profit Factor: Undefined (no losses) Expected Payoff: 96.16 3. Drawdown Analysis Absolute Drawdown: $0.00 Maximal Drawdown: $378.15 (10.88%) Relative Drawdown: 10.88% 4. Risk & Efficiency Metrics Sharpe Ratio: 0.48 Recovery Factor: 1.27 LR Correlation: 0.98 LR Standard Error: 9.70 5. Trade Statistics Total Trades: 5 Total Orders: 10 Winning Trades: 100% win rate (5 out of 5 trades) Short Positions: 3 wins (100%) Long Positions: 2 wins (100%) Profit/Loss Details: Largest Winning Trade: $103.50 Average Profit per Trade: $96.16 Largest Loss: $0.00 Number of Consecutive Wins: 5 Max Consecutive Profit: $480.78 6. Correlation Metrics Profit vs. MFE Correlation: 1.00 Profit vs. MAE Correlation: 0.36 MFE vs. MAE Correlation: 0.3619 7. Trade Duration Minimum Position Duration: 25 min 38 sec Maximum Position Duration: 67 hours 8 min 36 sec Average Position Duration: 18 hours 49 min 01 sec 📈 Conclusion The backtest shows exceptional performance with: A 100% win rate, Zero losing trades, Moderate drawdown at 10.88%, Consistent profitability over only 5 trades. While the results are very strong, the small number of trades suggests that additional testing over a larger sample size is needed to confirm long-term reliability and robustness.
Gabriel Henrique Souza Gaya 2025.11.27 14:50 #2 Análise de Trading - Dias 26 e 27/11 :root { --primary-color: #2c3e50; --secondary-color: #3498db; --success-color: #2ecc71; --danger-color: #e74c3c; --warning-color: #f39c12; --light-color: #ecf0f1; --dark-color: #34495e; } * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } body { background-color: #f5f7fa; color: #333; line-height: 1.6; } .container { max-width: 1200px; margin: 0 auto; padding: 20px; } header { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: white; padding: 30px 0; text-align: center; border-radius: 10px; margin-bottom: 30px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); } h1 { font-size: 2.5rem; margin-bottom: 10px; } .subtitle { font-size: 1.2rem; opacity: 0.9; } .date-filter { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; } .date-btn { padding: 10px 20px; background-color: var(--secondary-color); color: white; border: none; border-radius: 5px; cursor: pointer; font-weight: 600; transition: background-color 0.3s; } .date-btn.active { background-color: var(--primary-color); } .date-btn:hover { background-color: #2980b9; } .dashboard { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 30px; } .card { background: white; border-radius: 10px; padding: 20px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; } .card:hover { transform: translateY(-5px); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); } .card h2 { color: var(--primary-color); margin-bottom: 15px; font-size: 1.3rem; border-bottom: 2px solid var(--light-color); padding-bottom: 10px; } .stat { display: flex; justify-content: space-between; margin-bottom: 10px; padding: 8px 0; border-bottom: 1px solid #eee; } .stat-value { font-weight: bold; } .profit { color: var(--success-color); } .loss { color: var(--danger-color); } .chart-container { background: white; border-radius: 10px; padding: 20px; margin-bottom: 30px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); } .chart-title { color: var(--primary-color); margin-bottom: 15px; font-size: 1.3rem; } table { width: 100%; border-collapse: collapse; margin-bottom: 30px; background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); } th, td { padding: 12px 15px; text-align: left; border-bottom: 1px solid #eee; } th { background-color: var(--primary-color); color: white; font-weight: 600; } tr:hover { background-color: #f9f9f9; } .summary { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 30px; } .summary-card { background: white; border-radius: 10px; padding: 20px; text-align: center; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); } .summary-card h3 { color: var(--primary-color); margin-bottom: 10px; } .summary-value { font-size: 2rem; font-weight: bold; margin: 10px 0; } footer { text-align: center; margin-top: 40px; padding: 20px; color: #7f8c8d; border-top: 1px solid #eee; } @media (max-width: 768px) { .dashboard, .summary { grid-template-columns: 1fr; } h1 { font-size: 2rem; } .date-filter { flex-direction: column; align-items: center; } } Análise de Trading Dias 26 e 27 de Novembro de 2025 Todos os Dias Dia 26 Dia 27 Saldo Final $766.81 Valor atual da conta Total de Transações 129 Ordens executadas Lucro Líquido +$87.83 Resultado do período Performance por Dia 26/11 - Lucro: +$46.08 27/11 - Lucro: +$41.75 Melhor Trade: +$12.50 (GBPUSD) Pior Trade: -$5.05 (NZDJPY) Ativos Mais Negociados NZDUSD: 8 transações AUDUSD: 7 transações EURGBP: 6 transações USDJPY: 6 transações Análise de Volume Volume Total: 8.37 lotes Volume Médio: 0.065 lote Maior Volume: 0.5 lote Menor Volume: 0.01 lote Evolução do Saldo - Dias 26 e 27 Distribuição de Resultados por Horário Performance por Ativo Transações dos Dias 26 e 27 Data/Hora Ativo Tipo Volume Resultado 2025.11.26 17:55:02 GBPUSD Compra 0.5 +$12.50 2025.11.26 17:55:06 EURGBP Venda 0.5 +$7.28 2025.11.26 17:57:32 GBPJPY Compra 0.5 +$10.55 2025.11.26 18:05:55 AUDJPY Compra 0.5 +$5.75 2025.11.26 18:05:56 AUDCAD Compra 0.5 +$1.07 2025.11.27 14:56:39 GBPCHF Venda 0.1 +$10.05 Análise focada nos dias 26 e 27 de novembro de 2025 Dados extraídos do arquivo ReportHistory-230755.xlsx // Dados para os dias 26 e 27 const day26Data = { balance: 725.06, transactions: 10, netProfit: 46.08, assets: { 'GBPUSD': 12.50, 'EURGBP': 7.28, 'GBPJPY': 10.55, 'AUDJPY': 5.75, 'AUDCAD': 1.07, 'AUDUSD': 10.00, 'NZDUSD': 3.00, 'EURAUD': -2.61 } }; const day27Data = { balance: 766.81, transactions: 119, netProfit: 41.75, assets: { 'NZDUSD': -0.1, 'EURGBP': -2.65, 'AUDUSD': -0.8, 'USDCAD': -0.28, 'NZDJPY': -5.05, 'USDJPY': 6.91, 'GBPCHF': 10.05, 'EURAUD': 10.7, 'GBPNZD': 10.01, 'EURCAD': 11.4 } }; const allData = { balance: 766.81, transactions: 129, netProfit: 87.83, assets: { 'GBPUSD': 12.50, 'EURGBP': 4.63, 'GBPJPY': 10.55, 'AUDJPY': 5.75, 'AUDCAD': 1.07, 'AUDUSD': 9.20, 'NZDUSD': 2.90, 'EURAUD': 8.09, 'USDJPY': 6.91, 'GBPCHF': 10.05, 'GBPNZD': 10.01, 'EURCAD': 11.4, 'NZDJPY': -5.05, 'USDCAD': -0.28 } }; // Gráfico de Evolução do Saldo const balanceCtx = document.getElementById('balanceChart').getContext('2d'); const balanceChart = new Chart(balanceCtx, { type: 'line', data: { labels: ['26/11 - Início', '26/11 - Fim', '27/11 - Fim'], datasets: [{ label: 'Saldo da Conta', data: [678.98, 725.06, 766.81], borderColor: '#3498db', backgroundColor: 'rgba(52, 152, 219, 0.1)', borderWidth: 2, fill: true, tension: 0.4 }] }, options: { responsive: true, plugins: { legend: { position: 'top', }, title: { display: true, text: 'Evolução do Saldo nos Dias 26 e 27' } }, scales: { y: { beginAtZero: false, title: { display: true, text: 'Saldo ($)' } } } } }); // Gráfico de Distribuição por Horário const timeCtx = document.getElementById('timeDistributionChart').getContext('2d'); const timeChart = new Chart(timeCtx, { type: 'bar', data: { labels: ['00-04h', '04-08h', '08-12h', '12-16h', '16-20h', '20-24h'], datasets: [{ label: 'Número de Transações', data: [25, 40, 15, 20, 15, 14], backgroundColor: '#3498db', borderWidth: 1 }] }, options: { responsive: true, plugins: { legend: { position: 'top', }, title: { display: true, text: 'Distribuição de Transações por Horário' } }, scales: { y: { beginAtZero: true, title: { display: true, text: 'Número de Transações' } } } } }); // Gráfico de Performance por Ativo const assetCtx = document.getElementById('assetPerformanceChart').getContext('2d'); const assetChart = new Chart(assetCtx, { type: 'bar', data: { labels: Object.keys(allData.assets), datasets: [{ label: 'Lucro/Prejuízo Total ($)', data: Object.values(allData.assets), backgroundColor: function(context) { const value = context.raw; return value >= 0 ? '#2ecc71' : '#e74c3c'; }, borderWidth: 1 }] }, options: { responsive: true, plugins: { legend: { position: 'top', }, title: { display: true, text: 'Performance por Ativo (Dias 26 e 27)' } }, scales: { y: { beginAtZero: true, title: { display: true, text: 'Valor ($)' } } } } }); // Função para filtrar dados por dia function filterData(day) { // Atualizar botões ativos document.querySelectorAll('.date-btn').forEach(btn => { btn.classList.remove('active'); }); event.target.classList.add('active'); // Atualizar dados com base no dia selecionado let data; if (day === '26') { data = day26Data; } else if (day === '27') { data = day27Data; } else { data = allData; } // Atualizar os valores nos cartões de resumo document.getElementById('final-balance').textContent = '$' + data.balance.toFixed(2); document.getElementById('total-transactions').textContent = data.transactions; document.getElementById('net-profit').textContent = (data.netProfit >= 0 ? '+' : '') + '$' + data.netProfit.toFixed(2); // Atualizar o gráfico de performance por ativo assetChart.data.labels = Object.keys(data.assets); assetChart.data.datasets[0].data = Object.values(data.assets); assetChart.update(); // Atualizar a tabela de transações (simulação) updateTransactionsTable(day); } // Função para atualizar a tabela de transações (simulação simplificada) function updateTransactionsTable(day) { const tableBody = document.getElementById('transactions-table'); tableBody.innerHTML = ''; // Esta é uma simulação - em uma aplicação real, você teria dados completos let sampleTransactions = []; if (day === '26') { sampleTransactions = [ { time: '2025.11.26 17:55:02', asset: 'GBPUSD', type: 'Compra', volume: 0.5, result: 12.50 }, { time: '2025.11.26 17:55:06', asset: 'EURGBP', type: 'Venda', volume: 0.5, result: 7.28 }, { time: '2025.11.26 17:57:32', asset: 'GBPJPY', type: 'Compra', volume: 0.5, result: 10.55 }, { time: '2025.11.26 18:05:55', asset: 'AUDJPY', type: 'Compra', volume: 0.5, result: 5.75 }, { time: '2025.11.26 18:05:56', asset: 'AUDCAD', type: 'Compra', volume: 0.5, result: 1.07 } ]; } else if (day === '27') { sampleTransactions = [ { time: '2025.11.27 14:56:39', asset: 'GBPCHF', type: 'Venda', volume: 0.1, result: 10.05 }, { time: '2025.11.27 10:26:46', asset: 'GBPNZD', type: 'Compra', volume: 0.1, result: 10.01 }, { time: '2025.11.27 10:12:30', asset: 'EURCAD', type: 'Compra', volume: 0.1, result: 11.40 }, { time: '2025.11.27 10:12:30', asset: 'EURAUD', type: 'Compra', volume: 0.1, result: 10.70 }, { time: '2025.11.27 01:34:16', asset: 'AUDCAD', type: 'Venda', volume: 0.5, result: 1.07 } ]; } else { sampleTransactions = [ { time: '2025.11.26 17:55:02', asset: 'GBPUSD', type: 'Compra', volume: 0.5, result: 12.50 }, { time: '2025.11.26 17:55:06', asset: 'EURGBP', type: 'Venda', volume: 0.5, result: 7.28 }, { time: '2025.11.26 17:57:32', asset: 'GBPJPY', type: 'Compra', volume: 0.5, result: 10.55 }, { time: '2025.11.26 18:05:55', asset: 'AUDJPY', type: 'Compra', volume: 0.5, result: 5.75 }, { time: '2025.11.26 18:05:56', asset: 'AUDCAD', type: 'Compra', volume: 0.5, result: 1.07 }, { time: '2025.11.27 14:56:39', asset: 'GBPCHF', type: 'Venda', volume: 0.1, result: 10.05 } ]; } sampleTransactions.forEach(transaction => { const row = document.createElement('tr'); row.innerHTML = ` ${transaction.time} ${transaction.asset} ${transaction.type} ${transaction.volume} ${transaction.result >= 0 ? '+' : ''}$${transaction.result.toFixed(2)}`; tableBody.appendChild(row); }); }
Gabriel Henrique Souza Gaya 2025.12.08 12:18 #5 Rodando banca de 200 dolares, em 1 hora e 15 minutos tive o lucro de 42 dolares, mais de 20% da banca.
📊 Trading Strategy Backtest Summary
1. Initial Conditions
Initial Deposit: $3,000
Leverage: 1:200
History Quality: 100%
Bars Tested: 3,743
Ticks Processed: 801,460
Active Symbols: 1
2. Overall Performance
Total Net Profit: $480.78
Gross Profit: $480.78
Gross Loss: $0.00
Profit Factor: Undefined (no losses)
Expected Payoff: 96.16
3. Drawdown Analysis
Absolute Drawdown: $0.00
Maximal Drawdown: $378.15 (10.88%)
Relative Drawdown: 10.88%
4. Risk & Efficiency Metrics
Sharpe Ratio: 0.48
Recovery Factor: 1.27
LR Correlation: 0.98
LR Standard Error: 9.70
5. Trade Statistics
Total Trades: 5
Total Orders: 10
Winning Trades:
100% win rate (5 out of 5 trades)
Short Positions: 3 wins (100%)
Long Positions: 2 wins (100%)
Profit/Loss Details:
Largest Winning Trade: $103.50
Average Profit per Trade: $96.16
Largest Loss: $0.00
Number of Consecutive Wins: 5
Max Consecutive Profit: $480.78
6. Correlation Metrics
Profit vs. MFE Correlation: 1.00
Profit vs. MAE Correlation: 0.36
MFE vs. MAE Correlation: 0.3619
7. Trade Duration
Minimum Position Duration: 25 min 38 sec
Maximum Position Duration: 67 hours 8 min 36 sec
Average Position Duration: 18 hours 49 min 01 sec
📈 Conclusion
The backtest shows exceptional performance with:
A 100% win rate,
Zero losing trades,
Moderate drawdown at 10.88%,
Consistent profitability over only 5 trades.
While the results are very strong, the small number of trades suggests that additional testing over a larger sample size is needed to confirm long-term reliability and robustness.
Dias 26 e 27 de Novembro de 2025
Saldo Final
Valor atual da conta
Total de Transações
Ordens executadas
Lucro Líquido
Resultado do período
Performance por Dia
Ativos Mais Negociados
Análise de Volume
Evolução do Saldo - Dias 26 e 27
Distribuição de Resultados por Horário
Performance por Ativo
Transações dos Dias 26 e 27
Análise focada nos dias 26 e 27 de novembro de 2025
Dados extraídos do arquivo ReportHistory-230755.xlsx
This is my results in two days with this robot
My Profit in 3 days
Rodando banca de 200 dolares, em 1 hora e 15 minutos tive o lucro de 42 dolares, mais de 20% da banca.