rename fix and build fixes

This commit is contained in:
Dobromir Popov
2025-10-18 16:46:23 +03:00
parent a520ed7e39
commit 3d91cb0e8f
7 changed files with 100 additions and 69 deletions

View File

@@ -44,12 +44,12 @@ ANNOTATE/
pip install dash plotly pandas numpy
# Run the application
python TESTCASES/web/app.py
python ANNOTATE/web/app.py
```
## Usage
1. **Start the application**: Run `python TESTCASES/web/app.py`
1. **Start the application**: Run `python ANNOTATE/web/app.py`
2. **Open browser**: Navigate to `http://localhost:8051`
3. **Select symbol and timeframe**: Choose trading pair and timeframes to display
4. **Navigate to time period**: Use date picker or scroll to find market conditions
@@ -74,10 +74,10 @@ This sub-project is designed to be self-contained but can be integrated with the
```python
# Import annotation manager in main system
from TESTCASES.core.annotation_manager import AnnotationManager
from ANNOTATE.core.annotation_manager import AnnotationManager
# Import training simulator
from TESTCASES.core.training_simulator import TrainingSimulator
from ANNOTATE.core.training_simulator import TrainingSimulator
# Use generated test cases in training
test_cases = annotation_manager.get_test_cases()