cash works again!

This commit is contained in:
Dobromir Popov
2025-05-25 00:28:52 +03:00
parent d418f6ce59
commit cf825239cd
18 changed files with 1970 additions and 1331 deletions

View File

@ -69,14 +69,6 @@ features, labels = self.data_generator.generate_training_cases(
)
```
### ❌ INCORRECT: Generating Data
```python
# NEVER DO THIS
synthetic_data = generate_synthetic_market_data()
random_prices = np.random.normal(100, 10, 1000)
simulated_candles = create_fake_ohlcv_data()
```
## Logging and Monitoring
All data operations must log their source:
@ -126,4 +118,22 @@ Any questions about data authenticity should be escalated immediately. When in d
---
**Remember: The integrity of our trading system depends on using only real market data. No exceptions.**
**Remember: The integrity of our trading system depends on using only real market data. No exceptions.**
## ❌ **EXAMPLES OF FORBIDDEN OPERATIONS**
### **Code Patterns to NEVER Use:**
```python
# ❌ FORBIDDEN EXAMPLES - DO NOT IMPLEMENT
# These patterns are STRICTLY FORBIDDEN:
# - Any random data generation
# - Any synthetic price creation
# - Any mock trading data
# - Any simulated market scenarios
# ✅ ONLY ALLOWED: Real market data from exchanges
real_data = binance_client.get_historical_klines(symbol, interval, limit)
live_price = binance_client.get_ticker_price(symbol)
```