mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-08-08 20:47:44 +00:00
363f616aae
* Init todo * update all code * update * Extract factors from financial reports loop finished * Fix two small bugs. * Delete rdagent/app/qlib_rd_loop/run_script.sh * Minor mod * Delete rdagent/app/qlib_rd_loop/nohup.out * Fix a small bug in file reading. * some updates * Update the detailed process and prompt of factor loop. * Evaluation & dataset * Optimize the prompt for generating hypotheses and feedback in the factor loop. * Generate new data * dataset generation * Performed further optimizations on the factor loop and report extraction loop, added log handling for both processes, and implemented a screenshot feature for report extraction. * Update rdagent/components/coder/factor_coder/CoSTEER/evaluators.py * Update package.txt for fitz. * add the result * Performed further optimizations on the factor loop and report extraction loop, added log handling for both processes, and implemented a screenshot feature for report extraction. (#100) (#102) - Performed further optimizations on the factor loop and report extraction loop. - Added log handling for both processes. - Implemented a screenshot feature for report extraction. * Analysis * Optimized log output. * Factor update * A draft of the "Quick Start" section for README * Add scenario descriptions. * Updates * Adjust content * Enable logging of backtesting in Qlib and store rich-text descriptions in Trace. Support one-step debugging for factor extraction. * Reformat analysis.py * CI fix * Refactor * remove useless code * fix bugs (#111) * Fix two small bugs. * Fix a merge bug. * Fix two small bugs. * fix some bugs. * Fix some format bugs. * Restore a file. * Fix a format bug. * draft renew of evaluators * fix a small bug. * fix a small bug * Support Factor Report Loop * Update framework for extracting factors from research reports. * Refactor report-based factor extraction and fix minor bugs. * fix a small bug of log. * change some prompts * improve factor_runner * fix a small bug * change some prompts * cancel some comments * cancel some comments and fix some bugs --------- Co-authored-by: Young <afe.young@gmail.com> Co-authored-by: you-n-g <you-n-g@users.noreply.github.com> Co-authored-by: Taozhi Wang <taozhi.mark.wang@gmail.com> Co-authored-by: Suhan Cui <51844791+SH-Src@users.noreply.github.com>
108 lines
3.3 KiB
Python
108 lines
3.3 KiB
Python
from pathlib import Path
|
|
|
|
from rdagent.components.coder.factor_coder.factor import (
|
|
FactorExperiment,
|
|
FactorFBWorkspace,
|
|
FactorTask,
|
|
)
|
|
from rdagent.components.coder.factor_coder.utils import get_data_folder_intro
|
|
from rdagent.core.prompts import Prompts
|
|
from rdagent.core.scenario import Scenario
|
|
from rdagent.scenarios.qlib.experiment.workspace import QlibFBWorkspace
|
|
|
|
prompt_dict = Prompts(file_path=Path(__file__).parent / "prompts.yaml")
|
|
|
|
|
|
class QlibFactorExperiment(FactorExperiment[FactorTask, QlibFBWorkspace, FactorFBWorkspace]):
|
|
def __init__(self, *args, **kwargs) -> None:
|
|
super().__init__(*args, **kwargs)
|
|
self.experiment_workspace = QlibFBWorkspace(template_folder_path=Path(__file__).parent / "factor_template")
|
|
|
|
|
|
class QlibFactorScenario(Scenario):
|
|
@property
|
|
def background(self) -> str:
|
|
return prompt_dict["qlib_factor_background"]
|
|
|
|
@property
|
|
def source_data(self) -> str:
|
|
return get_data_folder_intro()
|
|
|
|
@property
|
|
def output_format(self) -> str:
|
|
return prompt_dict["qlib_factor_output_format"]
|
|
|
|
@property
|
|
def interface(self) -> str:
|
|
return prompt_dict["qlib_factor_interface"]
|
|
|
|
@property
|
|
def simulator(self) -> str:
|
|
return prompt_dict["qlib_factor_simulator"]
|
|
|
|
@property
|
|
def rich_style_description(self) -> str:
|
|
return """
|
|
### Qlib Factor Evolving Automatic R&D Demo
|
|
|
|
#### [Overview](#_summary)
|
|
|
|
The demo showcases the iterative process of hypothesis generation, knowledge construction, and decision-making. It highlights how financial factors evolve through continuous feedback and refinement.
|
|
|
|
#### Key Steps
|
|
|
|
1. **Hypothesis Generation**
|
|
- Generate and propose initial hypotheses based on data and domain knowledge.
|
|
|
|
2. **Factor Creation**
|
|
- Develop, define, and write new financial factors.
|
|
- Test these factors to gather empirical results.
|
|
|
|
3. **Factor Validation**
|
|
- Validate the newly created factors quantitatively.
|
|
|
|
4. **Backtesting with Qlib**
|
|
- **Dataset**: CSI300
|
|
- **Model**: LGBModel
|
|
- **Factors**: Alpha158 +
|
|
- **Data Split**:
|
|
- **Train**: 2008-01-01 to 2014-12-31
|
|
- **Valid**: 2015-01-01 to 2016-12-31
|
|
- **Test**: 2017-01-01 to 2020-08-01
|
|
|
|
5. **Feedback Analysis**
|
|
- Analyze backtest results.
|
|
- Incorporate feedback to refine hypotheses.
|
|
|
|
6. **Hypothesis Refinement**
|
|
- Refine hypotheses based on feedback and repeat the process.
|
|
|
|
#### [Automated R&D](#_rdloops)
|
|
|
|
- **[R (Research)](#_research)**
|
|
- Iteration of ideas and hypotheses.
|
|
- Continuous learning and knowledge construction.
|
|
|
|
- **[D (Development)](#_development)*
|
|
- Evolving code generation and model refinement.
|
|
- Automated implementation and testing of financial factors.
|
|
|
|
#### [Objective](#_summary)
|
|
|
|
To demonstrate the dynamic evolution of financial factors through the Qlib platform, emphasizing how each iteration enhances the accuracy and reliability of the resulting financial factors.
|
|
|
|
"""
|
|
|
|
def get_scenario_all_desc(self) -> str:
|
|
return f"""Background of the scenario:
|
|
{self.background}
|
|
The source data you can use:
|
|
{self.source_data}
|
|
The interface you should follow to write the runnable code:
|
|
{self.interface}
|
|
The output of your code should be in the format:
|
|
{self.output_format}
|
|
The simulator user can use to test your factor:
|
|
{self.simulator}
|
|
"""
|