mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-08-01 01:27:42 +00:00
a05050c70d
- data_config.yaml: frequency 15min -> 1min, path -> eurusd_1min_data - patches/generate.py: updated qlib.init path and freq - patches/eva_utils.py: updated intraday label to 1min - all prompts/configs: replaced 15min references with 1min - fx_validator config, trader, graph: 1min intraday trading context
28 lines
796 B
Python
28 lines
796 B
Python
"""
|
|
FX Validator Configuration
|
|
Angepasst für EURUSD 1min intraday trading
|
|
"""
|
|
import os
|
|
|
|
FX_CONFIG = {
|
|
"instrument": "EURUSD=X",
|
|
"frequency": "1min",
|
|
"llm_provider": "openai",
|
|
"backend_url": os.getenv("OPENAI_API_BASE", "http://localhost:8081/v1"),
|
|
"api_key": os.getenv("OPENAI_API_KEY", "local"),
|
|
"deep_think_llm": os.getenv("CHAT_MODEL", "openai/qwen3.5-35b"),
|
|
"quick_think_llm": os.getenv("CHAT_MODEL", "openai/qwen3.5-35b"),
|
|
"max_debate_rounds": 2,
|
|
"max_risk_discuss_rounds": 1,
|
|
# FX-spezifisch
|
|
"spread_bps": 1.5,
|
|
"target_arr": 9.62,
|
|
"max_drawdown": 20.0,
|
|
"sessions": {
|
|
"asian": ("00:00", "08:00"),
|
|
"london": ("08:00", "16:00"),
|
|
"ny": ("13:00", "21:00"),
|
|
"overlap": ("13:00", "16:00"),
|
|
},
|
|
}
|