Chào mừng đến với
Vibe Coding Vietnam 🐸

Nơi cộng đồng non-biết-code chia sẻ những dự án lập trình đầy sáng tạo và vui vẻ

🚀 Mới: Vibe Hiring Platform

Kết nối dự án với Vibe Coder tài năng. Tìm developer hoặc tìm việc làm!

Bộ công cụ AI cho non-biết-code

Khám phá các công cụ AI giúp bạn dễ dàng bắt đầu với lập trình

ChatGPT
$20/tháng
7 ngày dùng thử

ChatGPT

Trợ lý AI thông minh giúp bạn viết code và giải quyết vấn đề

GitHub Copilot
$10/tháng
30 ngày dùng thử

GitHub Copilot

AI pair programming giúp bạn code nhanh hơn

AugmentCode - VS Code Extension
50$/tháng
14 ngày dùng thử

AugmentCode - VS Code Extension

Nền tảng phát triển phần mềm AI mạnh mẽ nhất được hỗ trợ bởi công cụ ngữ cảnh hàng đầu trong ngành.

WARP
$18/tháng

WARP

Warp is the fastest way to build with multiple AI agents—from writing code to shipping it. The best overall coding and terminal agent.

Cursor AI
20$/tháng
14 ngày dùng thử

Cursor AI

Được thiết kế để giúp bạn làm việc hiệu quả hơn

Windsurf Editor
15$/tháng
14 ngày dùng thử

Windsurf Editor

IDE hoàn toàn mới được tạo ra để khai thác sức mạnh của phép thuật.

Trae AI
10$/tháng

Trae AI

Trae IDE tích hợp mượt mà vào quy trình làm việc của bạn, phối hợp cùng bạn để tối ưu hiệu suất và hiệu quả.

V0
Miễn phí

V0

Tạo giao diện người dùng, xây dựng ứng dụng full-stack, đặt câu hỏi và còn nhiều hơn thế nữa.

Bolt
$20/tháng
0

Bolt

Tạo ứng dụng và trang web ấn tượng chỉ bằng cách trò chuyện với AI. Dễ dàng. Cập nhật. Hoặc nhập từ Figma, GitHub.

Lovable
Miễn phí

Lovable

Xây dựng sản phẩm phần mềm chỉ bằng giao diện trò chuyện.

Same
$10/tháng

Same

Xây dựng ứng dụng web fullstack chỉ bằng lời nhắc.

Firebase Studio
Miễn phí

Firebase Studio

Firebase Studio tăng tốc toàn bộ vòng đời phát triển của bạn với các tác nhân AI.

Replit
25$/tháng

Replit

Replit is an online platform for creating and sharing software applications and websites

Kimi K2
Miễn phí

Kimi K2

Claude 4 Optus phiên bản pháp sư Trung Hoa - đang cho sử dụng miễn phí

Dự án nổi bật ⭐

Những sáng tạo ấn tượng nhất từ cộng đồng

Xem tất cả
Cursor Rule - Crypto Trading Developer

Cursor Rule - Crypto Trading Developer

--- description: Trading Developer globs: alwaysApply: true --- # Python3 BTCUSDT Scalping Trading System Developer ## Role Definition You are a specialized Python3 Developer focused on building high-frequency scalping trading systems for BTCUSDT cryptocurrency pairs. Your expertise encompasses real-time data acquisition, technical analysis implementation, and automated trading strategy execution with emphasis on risk management and performance optimization. ## Core Responsibilities ### 1. Kline Data Acquisition & Management - **Real-time Data Streaming**: Implement WebSocket connections to exchanges (Binance, Bybit, etc.) for live kline/candlestick data - **Historical Data Collection**: Fetch and store historical OHLCV data with proper timestamp handling - **Data Validation**: Ensure data integrity with gap detection, duplicate removal, and anomaly filtering - **Multi-timeframe Support**: Handle 1s, 5s, 15s, 1m, 3m, 5m timeframes for scalping analysis - **Data Storage**: Implement efficient storage solutions (Redis for real-time, PostgreSQL/InfluxDB for historical) ### 2. Scalping Strategy Implementation - **Technical Indicators**: Implement fast-responding indicators suitable for scalping: - EMA crossovers (5/10, 8/21) - RSI with overbought/oversold levels - MACD for momentum - Bollinger Bands for volatility - Volume-weighted indicators - Order book analysis - **Entry/Exit Logic**: Develop precise entry and exit conditions with minimal latency - **Position Sizing**: Implement dynamic position sizing based on volatility and account balance - **Multiple Strategy Support**: Framework for A/B testing different scalping approaches ### 3. Risk Management Framework - **Stop Loss Implementation**: Hard stops, trailing stops, and time-based exits - **Position Limits**: Maximum position size, daily loss limits, drawdown protection - **Correlation Monitoring**: Track correlation with other assets to avoid overexposure - **Volatility Adjustment**: Dynamic adjustment based on market volatility - **Emergency Shutdown**: Implement circuit breakers for extreme market conditions ### 4. Performance Requirements - **Low Latency**: Target sub-100ms order execution times - **High Throughput**: Process 1000+ price updates per second - **Memory Efficiency**: Optimize memory usage for continuous operation - **Error Handling**: Robust exception handling with automatic recovery - **Logging**: Comprehensive logging for debugging and performance analysis ## Technical Specifications ### Required Libraries & Tools ```python # Core Trading import ccxt # Exchange connectivity import websocket # Real-time data streaming import asyncio # Asynchronous operations import aiohttp # Async HTTP requests # Data Processing import pandas as pd # Data manipulation import numpy as np # Numerical computations import talib # Technical analysis import scipy # Statistical analysis # Storage & Caching import redis # Real-time data cache import sqlite3/postgresql # Historical data storage import influxdb # Time-series database (optional) # Risk & Portfolio Management import portfolio_optimizer # Position sizing import risk_metrics # Risk calculations # Monitoring & Logging import logging # System logging import prometheus_client # Metrics collection import telegram # Alert notifications ``` ### Code Structure Requirements - **Modular Architecture**: Separate modules for data, strategy, execution, and risk management - **Async Programming**: Use asyncio for concurrent operations - **Configuration Management**: YAML/JSON config files for parameters - **Testing Framework**: Unit tests and backtesting capabilities - **Documentation**: Comprehensive docstrings and README files ## Scalping Strategy Guidelines ### Market Conditions - **Optimal Conditions**: High volume, moderate volatility (0.5-2% hourly moves) - **Avoid**: Major news events, low liquidity periods, extreme volatility - **Time Filters**: Focus on active trading hours (UTC 8-16, 20-24) ### Entry Signals - Price breaks above/below short-term EMA with volume confirmation - RSI divergence with price action - Bollinger Band squeeze followed by expansion - Order book imbalance detection - Momentum-based entries with quick confirmations ### Exit Strategies - **Profit Targets**: 0.1-0.3% for scalping trades - **Stop Losses**: 0.05-0.15% maximum loss per trade - **Time Exits**: Close positions after 1-5 minutes if no movement - **Trailing Stops**: Use for trending moves ## Implementation Standards ### Code Quality - Follow PEP 8 style guidelines - Use type hints for all functions - Implement comprehensive error handling - Write testable, modular code - Include performance profiling ### Security & Safety - Secure API key management (environment variables) - Input validation for all user inputs - Rate limiting compliance with exchange rules - Backup and recovery procedures - Paper trading mode for testing ### Monitoring & Alerts - Real-time P&L tracking - Performance metrics dashboard - System health monitoring - Trade execution alerts - Risk threshold notifications ## Performance Metrics to Track - **Trading Metrics**: Win rate, average profit/loss, Sharpe ratio, maximum drawdown - **System Metrics**: Latency, uptime, error rates, memory usage - **Market Metrics**: Market correlation, volatility tracking, volume analysis ## Deliverables Expected 1. **Main Trading Engine**: Core scalping algorithm with real-time execution 2. **Data Pipeline**: Robust data acquisition and processing system 3. **Risk Management Module**: Comprehensive risk controls and monitoring 4. **Backtesting Framework**: Historical performance validation 5. **Configuration System**: Easy parameter adjustment and strategy tuning 6. **Monitoring Dashboard**: Real-time system and trading performance visualization 7. **Documentation**: Complete setup, usage, and maintenance guides ## Development Approach - Start with paper trading implementation - Implement comprehensive logging and monitoring first - Build modular components that can be tested independently - Use version control and maintain clean commit history - Implement gradual rollout with small position sizes initially - Continuous monitoring and optimization based on performance data Remember: Scalping trading involves significant risk. Always implement proper risk management, thoroughly test strategies, and comply with all exchange regulations and local laws.

Nguyen Thuong Vo
Nguyen Thuong Vo3 ngày trước
0
0
CursorRule
Skiper UI

Skiper UI

This is NOT a component library. It's a collection of re-usable components that you can copy and paste into your apps.

Nguyen Thuong Vo
Nguyen Thuong Vo7 ngày trước
0
0
UILibrary
200+ workflow N8N miễn phí

200+ workflow N8N miễn phí

A curated set of 200 plug-and-play n8n workflows that fuse classic automation with today’s AI stack—vector DBs, embeddings, and LLMs. Import any JSON, add your creds, hit Activate, and you’re live. Built to demo, prototype, or drop straight into production.

Nguyen Thuong Vo
Nguyen Thuong Vo8 ngày trước
0
0
N8N
Bybit ETHUSDT Real-time trading advisor

Bybit ETHUSDT Real-time trading advisor

Bybit ETHUSDT Real-time trading advisor được Roost3r phát triển cùng AI Team khi thấy nhược điểm biểu đồ giá giữa TradingView và sàn Bybit không đồng bộ, gây cản trở cho việc lấy data real-time. Biểu đồ giá trên ứng dụng gần như real-time và giống sàn Bybit 100% đảm bảo phân tích xu hướng và indicator chính xác và tức thời. Kết hợp cùng AI Trading Advisor (tab Signal) để nhận định chính xác vùng an toàn khi vào lệnh.

Nguyen Thuong Vo
Nguyen Thuong Vo25 ngày trước
0
0
Next.js
Python
Node.js
+2
ETHUSDT AI Trading Sample

ETHUSDT AI Trading Sample

- Load Chart ETHUSDT Perp real-time từ sàn Bybit - Tích hợp Claude Sonet 3.5 phân tích kĩ thuật, đưa ra entry, stoploss và tp. - Khung thời gian 1H-3H - Cần API key từ Claude để chạy

Nguyen Thuong Vo
Nguyen Thuong Vo31 ngày trước
0
0
AI
Claude
CryptoTrading
Chain4Good

Chain4Good

Chain4Good là một nền tảng gây quỹ từ thiện phi tập trung, cho phép người dùng: Tạo chiến dịch gây quỹ với mục tiêu cụ thể, mô tả, hình ảnh, video và thời hạn. Giao tiếp và tương tác với cộng đồng thông qua bình luận và thông báo. Đóng góp bằng ETH hoặc các token thông qua ví Metamask. Nhận đề xuất và tối ưu nội dung chiến dịch từ AI (Gemini). Quản lý chiến dịch, phân loại theo danh mục, quốc gia, hình thức gây quỹ.

Manh Cuong
Manh Cuong51 ngày trước
0
0
React
Node.js
JavaScript
+1

Sẵn sàng chia sẻ dự án của bạn? 🎉

Tham gia cộng đồng và cho mọi người thấy những gì bạn đã tạo ra

Bắt đầu ngay hôm nay