Skip to main content

XNO API Library for Financial Data

Project description

XNO API Library

XNO API is a Python package for retrieving financial data and performing quantitative analysis, specifically optimized for the Vietnamese financial market. It provides a clean, modular interface to access data on stocks, derivatives, and backtesting tools for PnL and performance metrics.


📌 Key Features

  • 🔎 Simple interface to retrieve real-time and historical data for Vietnamese stocks and derivatives
  • 📈 Built-in support for performance metrics: Sharpe, Sortino, Max Drawdown, and more
  • 📊 Optimized PnL backtesting tools for derivatives with Vietnam-specific fee structures
  • 🧪 Compatible with pandas, NumPy for custom strategies and analysis
  • 🖼️ Easily extensible for visual output of strategies and metrics

📦 Installation

Install via pip:

pip install xnoapi

Or clone this repo:

git clone https://github.com/xnoproject/xnoapi.git
pip install ./xnoapi

After installation:

from xnoapi import client
from xnoapi.vn.data import stocks, derivatives
from xnoapi.vn.metrics import Metrics, Backtest_Derivates

client(apikey="your_api_key")

📚 Documentation


🚀 Usage Example

Retrieve and analyze Vietnamese stock & derivative data:

from xnoapi import client
from xnoapi.vn.data import stocks, derivatives

client(apikey="your_api_key")

# List of liquid stocks
stocks.list_liquid_asset()

# Historical data for VIC (Vingroup)
vic = stocks.get_hist("VIC")

# Historical data for VN30F1M derivative
vn30f1m = derivatives.get_hist("VN30F1M", "1m")

🧠 Available Modules

📊 Financial Data

  • xnoapi.vn.data.stocks

    • list_liquid_asset(): List of high-liquidity Vietnamese stocks.
    • get_hist(asset): Historical OHLCV data.
  • xnoapi.vn.data.derivatives

    • get_hist(asset, frequency): Derivative market data (e.g., VN30F1M).

📈 Metrics & Analytics

  • xnoapi.vn.metrics.Metrics:
    • Includes: Sharpe Ratio, Sortino Ratio, Max Drawdown, Avg Gain/Loss, Hit Ratio...
  • xnoapi.vn.metrics.Backtest_Derivates:
    • Backtesting logic for trading strategies with support for fee modeling.
  • xnoapi.metrics.single_asset.TradingBacktest:
    • Lightweight backtesting class for trading strategies on derivatives (supports raw and after-fee PnL calculation).
    • Metrics included: Sharpe, Sortino, Calmar, Max Drawdown, Win Rate, Profit Factor, Risk of Ruin, etc.

🧪 Examples

Strategy Evaluation with Metrics

from xnoapi.vn.metrics import Metrics, Backtest_Derivates
from xnoapi.vn.data import derivatives
import numpy as np

# Generate signal: simple strategy based on 20-period median
def gen_position(df):
    return df.assign(
        position=np.sign(df["Close"] - df["Close"].rolling(20).median())
    )

# Fetch 1-minute historical data
df = derivatives.get_hist("VN30F1M", "1m")
df_pos = gen_position(df)

# Backtest the strategy
backtest = Backtest_Derivates(df_pos, pnl_type="raw")

# Initialize metrics
metrics = Metrics(backtest)

# === Backtest_Derivates Methods ===

# Cumulative PNL
cumulative_pnl = backtest.PNL()

# Daily cumulative PNL
daily_cumulative_pnl = backtest.daily_PNL()

# Estimate Minimum Capital Required
min_capital = backtest.estimate_minimum_capital()

# PNL Percentage
pnl_percentage = backtest.PNL_percentage()

# === Metrics Methods ===

# Average Loss
metrics.avg_loss()

# Average Return
metrics.avg_return()

# Average Win
metrics.avg_win()

# Max Drawdown
metrics.max_drawdown()

# Win Rate
metrics.win_rate()

# Volatility
metrics.volatility()

# Sharpe Ratio
metrics.sharpe()

# Sortino Ratio
metrics.sortino()

# Calmar Ratio
metrics.calmar()

# Profit Factor
metrics.profit_factor()

# Risk of Ruin
metrics.risk_of_ruin()

# Value at Risk
metrics.value_at_risk()

🤝 Credits

Maintained by the XNO Team.
Special thanks to contributors and financial data providers supporting the Vietnamese retail quant community.


📄 License

This project is licensed under the MIT License.
See LICENSE for full details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

xnoapi-0.1.18.tar.gz (12.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

xnoapi-0.1.18-py3-none-any.whl (13.0 kB view details)

Uploaded Python 3

File details

Details for the file xnoapi-0.1.18.tar.gz.

File metadata

  • Download URL: xnoapi-0.1.18.tar.gz
  • Upload date:
  • Size: 12.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.4

File hashes

Hashes for xnoapi-0.1.18.tar.gz
Algorithm Hash digest
SHA256 52d7769e3b656a4d7e62e32075783726d79b9251ed21509daaf8f0d9e9bd63b8
MD5 a67b5b000bc6c78e62ade7093324b545
BLAKE2b-256 fc1856cdf3c0a85d577487d7342f12310d2631804a4910000d7ad26f3b8dc194

See more details on using hashes here.

File details

Details for the file xnoapi-0.1.18-py3-none-any.whl.

File metadata

  • Download URL: xnoapi-0.1.18-py3-none-any.whl
  • Upload date:
  • Size: 13.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.4

File hashes

Hashes for xnoapi-0.1.18-py3-none-any.whl
Algorithm Hash digest
SHA256 88d49d7a769e23551f066e29fe45c6014d1d4065c5f1c55e66af4caaa28ca707
MD5 69ef09415b326c7107bbc1316a8de580
BLAKE2b-256 4612addd36301b76f763632de3a8d3461f9fc307321778d27225519a78b6460d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page