kaganseyda commited on
Commit
cc44ad6
·
verified ·
1 Parent(s): 45de908

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +53 -46
README.md CHANGED
@@ -1,46 +1,53 @@
1
- # Enhanced Spectral Stock Analysis (Adaptive Quant Engine)
2
-
3
- Professional-grade Hugging Face Space integrating advanced DSP-based spectral cycle analysis with a rolling adaptive backtest and Bayesian optimization of meta-parameters.
4
-
5
- ## Key Features
6
- - Adaptive Anti-Aliasing Filter (Butterworth) with volatility and regime sensitivity
7
- - Multi-Frequency Momentum Extraction (phase + amplitude weighted)
8
- - Market Regime Detection (ADX-based)
9
- - Dynamic Parameter Heuristics + Bayesian Meta-Optimization (cutoff, order, thresholds, frequency weighting)
10
- - Rolling Window Backtest (Train/Validation) with sliding window + weekly step
11
- - Statistical Signal Validation (forward return success rate, Sharpe, Sortino)
12
- - Performance Metrics: Sharpe, Sortino, Hit Rate, Max Drawdown
13
- - Live Adaptive Signal Projection using last optimized window
14
- - Data Caching Layer for efficiency
15
-
16
- ## Project Structure
17
- ```
18
- src/
19
- core/
20
- spectral_analyzer.py
21
- rolling_engine.py
22
- bayes_optimizer.py
23
- config.py
24
- utils/
25
- metrics.py
26
- app.py
27
- ```
28
-
29
- ## Running Locally
30
- Install dependencies:
31
- ```bash
32
- pip install -r requirements.txt
33
- ```
34
- Run app:
35
- ```bash
36
- python app.py
37
- ```
38
-
39
- ## Hugging Face Space
40
- Space type: Gradio. Set `app.py` as entry point.
41
-
42
- ## Disclaimer
43
- Educational & research tool. Not investment advice. Use at your own risk.
44
-
45
- ## License
46
- MIT
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ title: spectral analysis
4
+ sdk: gradio
5
+ emoji: 🏆
6
+ colorTo: red
7
+ ---
8
+ # Enhanced Spectral Stock Analysis (Adaptive Quant Engine)
9
+
10
+ Professional-grade Hugging Face Space integrating advanced DSP-based spectral cycle analysis with a rolling adaptive backtest and Bayesian optimization of meta-parameters.
11
+
12
+ ## Key Features
13
+ - Adaptive Anti-Aliasing Filter (Butterworth) with volatility and regime sensitivity
14
+ - Multi-Frequency Momentum Extraction (phase + amplitude weighted)
15
+ - Market Regime Detection (ADX-based)
16
+ - Dynamic Parameter Heuristics + Bayesian Meta-Optimization (cutoff, order, thresholds, frequency weighting)
17
+ - Rolling Window Backtest (Train/Validation) with sliding window + weekly step
18
+ - Statistical Signal Validation (forward return success rate, Sharpe, Sortino)
19
+ - Performance Metrics: Sharpe, Sortino, Hit Rate, Max Drawdown
20
+ - Live Adaptive Signal Projection using last optimized window
21
+ - Data Caching Layer for efficiency
22
+
23
+ ## Project Structure
24
+ ```
25
+ src/
26
+ core/
27
+ spectral_analyzer.py
28
+ rolling_engine.py
29
+ bayes_optimizer.py
30
+ config.py
31
+ utils/
32
+ metrics.py
33
+ app.py
34
+ ```
35
+
36
+ ## Running Locally
37
+ Install dependencies:
38
+ ```bash
39
+ pip install -r requirements.txt
40
+ ```
41
+ Run app:
42
+ ```bash
43
+ python app.py
44
+ ```
45
+
46
+ ## Hugging Face Space
47
+ Space type: Gradio. Set `app.py` as entry point.
48
+
49
+ ## Disclaimer
50
+ Educational & research tool. Not investment advice. Use at your own risk.
51
+
52
+ ## License
53
+ MIT