• bitcoinBitcoin(BTC)$80,780.00-0.26%
  • ethereumEthereum(ETH)$2,291.87-1.89%
  • tetherTether(USDT)$1.00-0.01%
  • rippleXRP(XRP)$1.450.15%
  • binancecoinBNB(BNB)$661.351.24%
  • usd-coinUSDC(USDC)$1.00-0.01%
  • solanaSolana(SOL)$95.760.44%
  • tronTRON(TRX)$0.349319-0.46%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.032.40%
  • dogecoinDogecoin(DOGE)$0.109597-0.10%
  • whitebitWhiteBIT Coin(WBT)$59.25-0.70%
  • USDSUSDS(USDS)$1.000.01%
  • cardanoCardano(ADA)$0.275534-1.16%
  • HyperliquidHyperliquid(HYPE)$41.06-2.08%
  • leo-tokenLEO Token(LEO)$10.18-0.38%
  • zcashZcash(ZEC)$550.87-3.58%
  • bitcoin-cashBitcoin Cash(BCH)$444.76-1.30%
  • chainlinkChainlink(LINK)$10.33-2.48%
  • moneroMonero(XMR)$401.40-2.40%
  • the-open-networkToncoin(TON)$2.443.97%
  • CantonCanton(CC)$0.1596263.35%
  • stellarStellar(XLM)$0.165335-1.27%
  • suiSui(SUI)$1.26-0.39%
  • litecoinLitecoin(LTC)$58.22-0.86%
  • USD1USD1(USD1)$1.00-0.05%
  • daiDai(DAI)$1.000.01%
  • avalanche-2Avalanche(AVAX)$9.92-2.28%
  • MemeCoreMemeCore(M)$3.25-0.72%
  • hedera-hashgraphHedera(HBAR)$0.095199-1.36%
  • Ethena USDeEthena USDe(USDE)$1.00-0.01%
  • shiba-inuShiba Inu(SHIB)$0.000007-0.90%
  • RainRain(RAIN)$0.007531-0.03%
  • Global DollarGlobal Dollar(USDG)$1.00-0.01%
  • crypto-com-chainCronos(CRO)$0.0801816.45%
  • paypal-usdPayPal USD(PYUSD)$1.000.05%
  • BittensorBittensor(TAO)$313.41-3.85%
  • Circle USYCCircle USYC(USYC)$1.120.00%
  • tether-goldTether Gold(XAUT)$4,694.410.83%
  • uniswapUniswap(UNI)$3.80-3.45%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • polkadotPolkadot(DOT)$1.35-1.04%
  • mantleMantle(MNT)$0.68-3.65%
  • pax-goldPAX Gold(PAXG)$4,694.230.85%
  • World Liberty FinancialWorld Liberty Financial(WLFI)$0.067122-0.63%
  • nearNEAR Protocol(NEAR)$1.602.61%
  • OndoOndo(ONDO)$0.418384-1.06%
  • Ondo US Dollar YieldOndo US Dollar Yield(USDY)$1.130.09%
  • internet-computerInternet Computer(ICP)$3.32-3.63%
  • okbOKB(OKB)$86.36-0.98%
  • Pi NetworkPi Network(PI)$0.171719-0.68%
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

Lotus Will Return To Combustion Engines For Its Cars

Tilde Research Introduces Aurora: A Leverage-Aware Optimizer That Fixes a Hidden Neuron Death Problem in Muon

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

Lotus Will Return To Combustion Engines For Its Cars
AI & Technology

Lotus Will Return To Combustion Engines For Its Cars

May 12, 2026
Tilde Research Introduces Aurora: A Leverage-Aware Optimizer That Fixes a Hidden Neuron Death Problem in Muon
AI & Technology

Tilde Research Introduces Aurora: A Leverage-Aware Optimizer That Fixes a Hidden Neuron Death Problem in Muon

May 12, 2026
Digg Is Back Again, This Time To Aggregate AI News
AI & Technology

Digg Is Back Again, This Time To Aggregate AI News

May 12, 2026
Daybreak Is OpenAI’s Response To Anthropic’s Claude Mythos
AI & Technology

Daybreak Is OpenAI’s Response To Anthropic’s Claude Mythos

May 12, 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
He Borrowed 8,000 to Start a Business and It Isn’t Working Out

He Borrowed $178,000 to Start a Business and It Isn’t Working Out

May 9, 2026
Ken Griffin says Mamdani’s attacks against him are ‘creepy weird’

Ken Griffin says Mamdani’s attacks against him are ‘creepy weird’

May 5, 2026
Anthropic introduces “dreaming,” a system that lets AI agents learn from their own mistakes

Anthropic introduces “dreaming,” a system that lets AI agents learn from their own mistakes

May 8, 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!