Skip to content

Commit 3a83616

Browse files
committed
🚀 Release MeridianAlgo v4.1.0 - Quantum Edition
1 parent 5c26772 commit 3a83616

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# MeridianAlgo v4.0.4 - Quantum Edition 🚀
1+
# MeridianAlgo v4.1.0 - Quantum Edition 🚀
22

33
[![Python Version](https://img.shields.io/badge/python-3.7%2B-blue.svg)](https://www.python.org/downloads/)
44
[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
5-
[![PyPI Version](https://img.shields.io/badge/pypi-4.0.4-orange.svg)](https://pypi.org/project/meridianalgo/)
5+
[![PyPI Version](https://img.shields.io/badge/pypi-4.1.0-orange.svg)](https://pypi.org/project/meridianalgo/)
66
[![Tests](https://img.shields.io/badge/tests-passing-brightgreen.svg)](tests/)
77

88
**Meridian Quant: The Ultimate Quantitative Development Platform**
@@ -64,8 +64,8 @@ pip install meridianalgo[all]
6464

6565
# Development installation
6666
pip install meridianalgo[dev]
67-
```## 🚀 C
68-
omprehensive Examples
67+
```
68+
## 🚀 Comprehensive Examples
6969

7070
### 📈 **Basic Usage & Market Data**
7171

@@ -87,7 +87,7 @@ print(f"Current AAPL RSI: {rsi.iloc[-1]:.1f}")
8787
print(f"AAPL above upper Bollinger Band: {data['AAPL'].iloc[-1] > bb_upper.iloc[-1]}")
8888
```
8989

90-
### 📊 **Complete Technical Analysis Suite**
90+
📊 **Complete Technical Analysis Suite**
9191

9292
```python
9393
# === MOMENTUM INDICATORS ===
@@ -195,8 +195,8 @@ print(f"Fibonacci 38.2%: ${fib_levels[0.382]:.2f}")
195195
support_resistance = ma.SupportResistance(data['AAPL'])
196196
print(f"Key Support: ${support_resistance['support'][0]:.2f}")
197197
print(f"Key Resistance: ${support_resistance['resistance'][0]:.2f}")
198-
```##
199-
# 🏦 **Advanced Portfolio Management**
198+
```
199+
🏦 **Advanced Portfolio Management**
200200

201201
```python
202202
# === PORTFOLIO OPTIMIZATION ===
@@ -325,8 +325,8 @@ print(f"Portfolio Volatility: {portfolio_vol:.2%}")
325325
print(f"Risk Contributions:")
326326
for i, symbol in enumerate(symbols):
327327
print(f" {symbol}: {risk_contrib[i]:.1%} (Weight: {weights_array[i]:.1%})")
328-
```###
329-
⚠️ **Comprehensive Risk Analysis**
328+
```
329+
⚠️ **Comprehensive Risk Analysis**
330330

331331
```python
332332
# === RISK METRICS CALCULATION ===
@@ -507,8 +507,8 @@ print(f" Uptrend periods: {len(uptrend_periods)} ({len(uptrend_periods)/len(ret
507507
print(f" Downtrend periods: {len(downtrend_periods)} ({len(downtrend_periods)/len(returns):.1%})")
508508
print(f" Average uptrend return: {uptrend_periods.mean():.2%}")
509509
print(f" Average downtrend return: {downtrend_periods.mean():.2%}")
510-
```###
511-
🤖 **Machine Learning & Feature Engineering**
510+
```
511+
🤖 **Machine Learning & Feature Engineering**
512512

513513
```python
514514
# === COMPREHENSIVE FEATURE ENGINEERING ===
@@ -784,8 +784,8 @@ print(f" 🔄 Retraining schedule: Monthly")
784784
print(f" 📈 A/B testing: 20% traffic to new model")
785785

786786
print(f"\n🎯 Ready for production deployment!")
787-
```### 🔄 **
788-
Production Backtesting Engine**
787+
```
788+
🔄 **Production Backtesting Engine**
789789

790790
```python
791791
# === COMPREHENSIVE BACKTESTING EXAMPLE ===

meridianalgo/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
machine learning, institutional-grade portfolio management, and high-performance computing.
88
Built for quantitative analysts, portfolio managers, algorithmic traders, and financial researchers.
99
10-
Version: 4.0.4
10+
Version: 4.1.0
1111
"""
1212

13-
__version__ = '4.0.4'
13+
__version__ = '4.1.0'
1414

1515
import warnings
1616
import sys

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="meridianalgo",
8-
version="4.0.4",
8+
version="4.1.0",
99
author="Meridian Algorithmic Research Team",
1010
author_email="support@meridianalgo.com",
1111
description="Meridian Quant - The Ultimate Quantitative Development Platform",

0 commit comments

Comments
 (0)