• bitcoinBitcoin(BTC)$61,186.00-3.49%
  • ethereumEthereum(ETH)$1,586.04-9.95%
  • tetherTether(USDT)$1.000.07%
  • binancecoinBNB(BNB)$574.30-4.33%
  • usd-coinUSDC(USDC)$1.00-0.01%
  • rippleXRP(XRP)$1.10-5.51%
  • solanaSolana(SOL)$63.95-6.33%
  • tronTRON(TRX)$0.320918-3.23%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.030.96%
  • HyperliquidHyperliquid(HYPE)$59.69-7.30%
  • dogecoinDogecoin(DOGE)$0.082023-6.68%
  • USDSUSDS(USDS)$1.000.03%
  • leo-tokenLEO Token(LEO)$9.58-3.55%
  • RainRain(RAIN)$0.013125-7.06%
  • stellarStellar(XLM)$0.201876-0.32%
  • zcashZcash(ZEC)$368.66-20.34%
  • cardanoCardano(ADA)$0.158147-12.78%
  • moneroMonero(XMR)$310.96-15.59%
  • CantonCanton(CC)$0.148889-0.68%
  • chainlinkChainlink(LINK)$7.41-6.79%
  • whitebitWhiteBIT Coin(WBT)$44.04-4.18%
  • USD1USD1(USD1)$1.000.04%
  • Ethena USDeEthena USDe(USDE)$1.000.10%
  • daiDai(DAI)$1.000.00%
  • bitcoin-cashBitcoin Cash(BCH)$213.06-12.66%
  • the-open-networkToncoin(TON)$1.51-9.45%
  • MemeCoreMemeCore(M)$2.89-12.61%
  • hedera-hashgraphHedera(HBAR)$0.080536-4.10%
  • litecoinLitecoin(LTC)$43.35-5.14%
  • LABLAB(LAB)$9.76-18.29%
  • avalanche-2Avalanche(AVAX)$6.76-11.93%
  • paypal-usdPayPal USD(PYUSD)$1.00-0.01%
  • suiSui(SUI)$0.70-8.69%
  • Circle USYCCircle USYC(USYC)$1.130.00%
  • shiba-inuShiba Inu(SHIB)$0.000005-7.52%
  • tether-goldTether Gold(XAUT)$4,304.59-3.12%
  • crypto-com-chainCronos(CRO)$0.057584-5.13%
  • nearNEAR Protocol(NEAR)$1.98-10.76%
  • Global DollarGlobal Dollar(USDG)$1.000.00%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • Ondo US Dollar YieldOndo US Dollar Yield(USDY)$1.13-0.63%
  • pax-goldPAX Gold(PAXG)$4,323.63-3.05%
  • BittensorBittensor(TAO)$195.82-6.82%
  • worldcoin-wldWorldcoin(WLD)$0.530.19%
  • World Liberty FinancialWorld Liberty Financial(WLFI)$0.056877-4.86%
  • mantleMantle(MNT)$0.52-6.65%
  • Ripple USDRipple USD(RLUSD)$1.00-0.01%
  • OndoOndo(ONDO)$0.346006-6.50%
  • polkadotPolkadot(DOT)$0.95-8.09%
  • AsterAster(ASTER)$0.61-6.60%
TradePoint.io
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop
No Result
View All Result
TradePoint.io
No Result
View All Result

A Coding Implementation to Portfolio Optimization with skfolio for Building Testing, Tuning, and Comparing Modern Investment Strategies

May 12, 2026
in AI & Technology
Reading Time: 2 mins read
A A
A Coding Implementation to Portfolio Optimization with skfolio for Building Testing, Tuning, and Comparing Modern Investment Strategies
ShareShareShareShareShare

YOU MAY ALSO LIKE

Alien Isolation 2’s First Trailer Takes The Horror To A Colony Planet

Google DeepMind Releases Gemma 4 QAT Checkpoints: Q4_0 and a New Mobile Format Cut On-Device Memory

factor_prices = load_factors_dataset()
X_full, F_full = prices_to_returns(prices, factor_prices)


X_tr, X_te, F_tr, F_te = train_test_split(
   X_full, F_full, test_size=0.33, shuffle=False
)


fm = MeanRisk(
   objective_function=ObjectiveFunction.MAXIMIZE_RATIO,
   risk_measure=RiskMeasure.VARIANCE,
   prior_estimator=FactorModel(),
)
fm.fit(X_tr, F_tr)
ptf_fm = fm.predict(X_te); ptf_fm.name = "Factor Model"
print(f"\nFactor-model Sharpe: {ptf_fm.annualized_sharpe_ratio:.3f}")


pipe = Pipeline([
   ("preselect",   SelectKExtremes(k=8, highest=True)),
   ("optimize",    MeanRisk(
       objective_function=ObjectiveFunction.MAXIMIZE_RATIO,
       risk_measure=RiskMeasure.VARIANCE)),
])
pipe.fit(X_train)
ptf_pipe = pipe.predict(X_test); ptf_pipe.name = "Top-8 + Max Sharpe"


wf_model = MeanRisk(
   objective_function=ObjectiveFunction.MAXIMIZE_RATIO,
   risk_measure=RiskMeasure.VARIANCE,
)
mp_portfolio = cross_val_predict(
   wf_model, X,
   cv=WalkForward(train_size=252*2, test_size=63),
   n_jobs=-1,
)
mp_portfolio.name = "Walk-Forward Max Sharpe"
print(f"\nWalk-forward portfolio  Sharpe={mp_portfolio.annualized_sharpe_ratio:.3f}  "
     f"CalmarRatio={mp_portfolio.calmar_ratio:.3f}")
mp_portfolio.plot_cumulative_returns().show()


tuned = MeanRisk(
   objective_function=ObjectiveFunction.MAXIMIZE_RATIO,
   risk_measure=RiskMeasure.VARIANCE,
   prior_estimator=EmpiricalPrior(mu_estimator=EWMu(alpha=0.1)),
)
grid = GridSearchCV(
   estimator=tuned,
   cv=WalkForward(train_size=252*2, test_size=63),
   n_jobs=-1,
   param_grid={
       "l2_coef": [0.0, 0.01, 0.1],
       "prior_estimator__mu_estimator__alpha": [0.05, 0.1, 0.2, 0.5],
   },
)
grid.fit(X_train)
print("\nBest params:", grid.best_params_)
print(f"Best CV score (Sharpe): {grid.best_score_:.3f}")


ptf_tuned = grid.best_estimator_.predict(X_test); ptf_tuned.name = "Tuned Max Sharpe"


final = Population([
   *baseline_population,
   ptf_min_var, ptf_max_sharpe,
   ptf_rb_var, ptf_rb_cvar,
   ptf_hrp, ptf_nco,
   ptf_robust, ptf_gerber,
   ptf_constr, ptf_bl, ptf_fm,
   ptf_pipe, ptf_tuned,
])


_full = final.summary()
_wanted_final = [
   "Annualized Mean", "Annualized Standard Deviation",
   "Annualized Sharpe Ratio", "Annualized Sortino Ratio",
   "CVaR at 95%", "Maximum Drawdown", "Max Drawdown",
]
_have_final = [r for r in _wanted_final if r in _full.index]
summary = _full.loc[_have_final].T.sort_values(
   "Annualized Sharpe Ratio", ascending=False
)


print("\n" + "=" * 80)
print("FINAL HORSE RACE — sorted by Sharpe (out-of-sample test set)")
print("=" * 80)
print(summary.to_string())


final.plot_cumulative_returns().show()


final.plot_composition().show()


ptf_rb_var.plot_contribution(measure=RiskMeasure.VARIANCE).show()


print("\nDone. Try swapping risk measures, adding constraints, or wiring in")
print("your own returns DataFrame — every estimator follows the sklearn API.")

Credit: Source link

ShareTweetSendSharePin

Related Posts

Alien Isolation 2’s First Trailer Takes The Horror To A Colony Planet
AI & Technology

Alien Isolation 2’s First Trailer Takes The Horror To A Colony Planet

June 5, 2026
Google DeepMind Releases Gemma 4 QAT Checkpoints: Q4_0 and a New Mobile Format Cut On-Device Memory
AI & Technology

Google DeepMind Releases Gemma 4 QAT Checkpoints: Q4_0 and a New Mobile Format Cut On-Device Memory

June 5, 2026
AI agents are learning on the job — just not for your whole team
AI & Technology

AI agents are learning on the job — just not for your whole team

June 5, 2026
Google Shuts Down The AI Image App Pixel Studio
AI & Technology

Google Shuts Down The AI Image App Pixel Studio

June 5, 2026
Next Post
Stay Tuned NOW Streaming Behind The Scenes! – April 29

Stay Tuned NOW Streaming Behind The Scenes! - April 29

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Search

No Result
View All Result
Video shows a forest fire raging as firefighting planes battle the blaze

Video shows a forest fire raging as firefighting planes battle the blaze

June 5, 2026
China Expands Travel Curbs to Top AI Talent | Bloomberg Tech 5/26/2026

China Expands Travel Curbs to Top AI Talent | Bloomberg Tech 5/26/2026

May 30, 2026
Meet Memory OS: A 6-Layer Open-Source Memory Stack Built on Top of Hermes Agent

Meet Memory OS: A 6-Layer Open-Source Memory Stack Built on Top of Hermes Agent

June 1, 2026

About

Learn more

Our Services

Legal

Privacy Policy

Terms of Use

Bloggers

Learn more

Article Links

Contact

Advertise

Ask us anything

©2020- TradePoint.io - All rights reserved!

Tradepoint.io, being just a publishing and technology platform, is not a registered broker-dealer or investment adviser. So we do not provide investment advice. Rather, brokerage services are provided to clients of Tradepoint.io by independent SEC-registered broker-dealers and members of FINRA/SIPC. Every form of investing carries some risk and past performance is not a guarantee of future results. “Tradepoint.io“, “Instant Investing” and “My Trading Tools” are registered trademarks of Apperbuild, LLC.

This website is operated by Apperbuild, LLC. We have no link to any brokerage firm and we do not provide investment advice. Every information and resource we provide is solely for the education of our readers. © 2020 Apperbuild, LLC. All rights reserved.

No Result
View All Result
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop

© 2023 - TradePoint.io - All Rights Reserved!