<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Stefano viana</title>
    <description>The latest articles on Forem by Stefano viana (@stefano_viana_dda882cfae5).</description>
    <link>https://forem.com/stefano_viana_dda882cfae5</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3867021%2F4ce2be1b-7eae-4c3f-abde-ff9771444aa8.jpg</url>
      <title>Forem: Stefano viana</title>
      <link>https://forem.com/stefano_viana_dda882cfae5</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/stefano_viana_dda882cfae5"/>
    <language>en</language>
    <item>
      <title>How I Built a Profitable FreqAI Plugin Using Institutional ML Techniques</title>
      <dc:creator>Stefano viana</dc:creator>
      <pubDate>Fri, 17 Apr 2026 11:08:29 +0000</pubDate>
      <link>https://forem.com/stefano_viana_dda882cfae5/how-i-built-a-profitable-freqai-plugin-using-institutional-ml-techniques-1l9k</link>
      <guid>https://forem.com/stefano_viana_dda882cfae5/how-i-built-a-profitable-freqai-plugin-using-institutional-ml-techniques-1l9k</guid>
      <description>&lt;h2&gt;
  
  
  The Problem with Default FreqAI
&lt;/h2&gt;

&lt;p&gt;Standard FreqAI trains a regressor on raw future returns. You predict "price goes up 0.5% in the next 4 hours" and threshold it into buy/sell signals.&lt;/p&gt;

&lt;p&gt;This approach has three fatal flaws:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Labels don't match real trades.&lt;/strong&gt; A fixed-horizon return of +0.3% might have hit -2% stop-loss before recovering. You're training on labels that would have liquidated you.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Features are never pruned.&lt;/strong&gt; You throw 200 indicators at LightGBM and hope for the best. Half of them are noise that causes overfitting.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. No signal quality filter.&lt;/strong&gt; Every prediction above threshold becomes a trade, even when the model is uncertain.&lt;/p&gt;




&lt;h2&gt;
  
  
  Fix #1: Triple Barrier Labeling (Regime-Aware)
&lt;/h2&gt;

&lt;p&gt;Instead of "where is the price in 4 hours?", Triple Barrier asks: &lt;strong&gt;"which barrier gets hit first — profit target, stop loss, or time expiry?"&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This directly aligns labels with actual trade outcomes.&lt;/p&gt;

&lt;p&gt;I added a regime twist: the barrier sizes adapt based on the market environment (EMA24 vs EMA96):&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Bull market&lt;/strong&gt;: profit barrier = 1.2σ, stop = 2.0σ (favor longs, tolerate pullbacks)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Bear market&lt;/strong&gt;: profit = 2.0σ, stop = 1.2σ (favor shorts, tolerate bounces)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Sideways&lt;/strong&gt;: symmetric (1.5σ / 1.5σ)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This fixed the structural SHORT bias that naive Triple Barrier produces in bull markets.&lt;/p&gt;




&lt;h2&gt;
  
  
  Fix #2: SHAP Feature Selection
&lt;/h2&gt;

&lt;p&gt;After the first training pass, I compute SHAP values for every feature and keep only those contributing more than 1% of total importance.&lt;/p&gt;

&lt;p&gt;Result: &lt;strong&gt;200+ features → 30 that actually predict.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The SHAP selection refreshes every N trainings, so it adapts to regime drift. Features that mattered in the 2022 bear market might not matter in the 2024 bull — and that's fine.&lt;/p&gt;




&lt;h2&gt;
  
  
  Fix #3: Meta-Labeling
&lt;/h2&gt;

&lt;p&gt;A second LightGBM model learns &lt;strong&gt;when the primary model is likely right.&lt;/strong&gt; It's trained on a binary target: did the primary model's prediction match the actual outcome?&lt;/p&gt;

&lt;p&gt;Trades only fire when meta-confidence exceeds a threshold. This dramatically improves precision at the cost of lower recall — exactly what live trading demands.&lt;/p&gt;




&lt;h2&gt;
  
  
  Fix #4: Purged Walk-Forward CV
&lt;/h2&gt;

&lt;p&gt;Standard k-fold CV for time series is broken. Data from the future leaks into training folds through temporal proximity.&lt;/p&gt;

&lt;p&gt;Purged walk-forward CV inserts a gap (purge window) between training and test sets, plus an embargo period. It kills the most insidious lookahead bias.&lt;/p&gt;

&lt;p&gt;My model went from "75% accuracy in CV, 52% live" to &lt;strong&gt;"63% in CV, 63% live."&lt;/strong&gt; Honest numbers that hold up.&lt;/p&gt;




&lt;h2&gt;
  
  
  Fix #5: Sequential Memory Features
&lt;/h2&gt;

&lt;p&gt;LightGBM sees each bar independently — it has no concept of "what happened in the last 24 hours." I added rolling statistics that give it temporal context:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Log-return mean/std/skew over 4/12/24/48 bars&lt;/li&gt;
&lt;li&gt;Return z-score (how extreme is this move vs recent history?)&lt;/li&gt;
&lt;li&gt;Volatility-of-volatility (regime change signal)&lt;/li&gt;
&lt;li&gt;Close and volume lags at 1/3/6/12 bars&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This captures ~70% of what an LSTM would learn, at 10% of the complexity.&lt;/p&gt;




&lt;h2&gt;
  
  
  Fix #6: Dynamic Position Sizing
&lt;/h2&gt;

&lt;p&gt;Not all signals are equal. A 78% confidence prediction should get more capital than a 55% one.&lt;/p&gt;

&lt;p&gt;I implemented &lt;code&gt;custom_stake_amount()&lt;/code&gt; that scales linearly with the winning-class probability:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;P=0.55 → 0.5x default stake&lt;/li&gt;
&lt;li&gt;P=0.80 → 1.5x default stake&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This concentrates risk on high-confidence signals.&lt;/p&gt;




&lt;h2&gt;
  
  
  Honest Backtest Results
&lt;/h2&gt;

&lt;p&gt;Tested on BTC/ETH/SOL/BNB/XRP, Binance Futures, 1h bars, 90-day rolling training windows:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Market Regime&lt;/th&gt;
&lt;th&gt;Period&lt;/th&gt;
&lt;th&gt;Market Change&lt;/th&gt;
&lt;th&gt;Bot Profit&lt;/th&gt;
&lt;th&gt;Win Rate&lt;/th&gt;
&lt;th&gt;Max DD&lt;/th&gt;
&lt;th&gt;Sharpe&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Bull&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Q1 2024&lt;/td&gt;
&lt;td&gt;+67.66%&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;+6.93%&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;62.5%&lt;/td&gt;
&lt;td&gt;2.37%&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;5.98&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;strong&gt;Bear&lt;/strong&gt; (LUNA)&lt;/td&gt;
&lt;td&gt;May-Aug 2022&lt;/td&gt;
&lt;td&gt;-33.60%&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;+0.41%&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;58.0%&lt;/td&gt;
&lt;td&gt;7.74%&lt;/td&gt;
&lt;td&gt;0.21&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;These are not cherry-picked. The bear market result is modest, but surviving a -34% crash with positive PnL is the whole point.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What these numbers do NOT guarantee:&lt;/strong&gt; future performance. Do your own backtesting.&lt;/p&gt;




&lt;h2&gt;
  
  
  How to Use It
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pip &lt;span class="nb"&gt;install &lt;/span&gt;deepalpha-freqai
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;In your Freqtrade config:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"timeframe"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"1h"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"freqai"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"enabled"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"model_type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"DeepAlphaModel"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"train_period_days"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mi"&gt;90&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"backtest_period_days"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mi"&gt;21&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Copy the example strategy from the repo and run:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;freqtrade backtesting &lt;span class="nt"&gt;--strategy&lt;/span&gt; DeepAlphaStrategy &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;--freqaimodel&lt;/span&gt; DeepAlphaModel &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;--timerange&lt;/span&gt; 20240125-20240325
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The plugin handles labels, feature engineering, meta-filtering, and position sizing for you.&lt;/p&gt;




&lt;h2&gt;
  
  
  What I Learned
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Labeling matters more than the model.&lt;/strong&gt; Switching from fixed-horizon to Triple Barrier was the single biggest improvement.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Fewer features = better features.&lt;/strong&gt; SHAP pruning from 200 to 30 features improved out-of-sample accuracy by 3%.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Honest CV is non-negotiable.&lt;/strong&gt; If your backtest accuracy is 20+ points above your live accuracy, your CV is lying.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;1h timeframe &amp;gt; 5m.&lt;/strong&gt; Intraday noise on 5m consistently triggered stops before signals played out. 1h gives Triple Barrier room to breathe.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;The edge is in risk management, not prediction.&lt;/strong&gt; A 63% model with proper sizing and meta-filtering beats a 70% model that trades everything.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;




&lt;p&gt;The package is MIT licensed and free forever. If you find bugs or want to contribute, the Discord is open.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;PyPI&lt;/strong&gt;: &lt;a href="https://pypi.org/project/deepalpha-freqai/" rel="noopener noreferrer"&gt;https://pypi.org/project/deepalpha-freqai/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Website&lt;/strong&gt;: &lt;a href="https://deepalphabot.com" rel="noopener noreferrer"&gt;https://deepalphabot.com&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Discord&lt;/strong&gt;: &lt;a href="https://discord.gg/P4yX686m" rel="noopener noreferrer"&gt;https://discord.gg/P4yX686m&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;em&gt;Disclaimer: past performance is not future performance. This is not financial advice. Only trade with money you can afford to lose.&lt;/em&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;If you found this useful, a star on the repo or a pip install helps more than you think.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>machinelearning</category>
      <category>trading</category>
      <category>cryptocurrency</category>
    </item>
    <item>
      <title>DeepAlpha v6.0 — AI Trading Report (2026-04-10)</title>
      <dc:creator>Stefano viana</dc:creator>
      <pubDate>Fri, 10 Apr 2026 08:30:18 +0000</pubDate>
      <link>https://forem.com/stefano_viana_dda882cfae5/deepalpha-v60-ai-trading-report-2026-04-10-41e1</link>
      <guid>https://forem.com/stefano_viana_dda882cfae5/deepalpha-v60-ai-trading-report-2026-04-10-41e1</guid>
      <description>&lt;h1&gt;
  
  
  DeepAlpha v6.0 — AI Trading Report (2026-04-10)
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Market
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;BTC&lt;/strong&gt;: $71,482 (-0.4%)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;ETH&lt;/strong&gt;: $2,178 (-0.5%)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SOL&lt;/strong&gt;: $83 (-0.5%)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Performance
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Return since launch: &lt;strong&gt;+4.3%&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Open positions: 3&lt;/li&gt;
&lt;li&gt;AI model accuracy: 80.5% (walk-forward validated)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How it works
&lt;/h2&gt;

&lt;p&gt;DeepAlpha is an AI-powered trading system running on Hyperliquid L1 perpetuals. It uses:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;LightGBM + XGBoost ensemble trained on 7M+ samples (5 years of data)&lt;/li&gt;
&lt;li&gt;38 features including RSI, ATR, OBI proxy, CVD, BTC correlation&lt;/li&gt;
&lt;li&gt;Walk-forward validation (no overfitting)&lt;/li&gt;
&lt;li&gt;BTC SMA20 regime filter&lt;/li&gt;
&lt;li&gt;Conservative risk: 5x leverage, 3% equity per trade, ATR-based trailing stops&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All trades are verifiable on-chain.&lt;/p&gt;

&lt;p&gt;Stats: &lt;a href="https://deepalpha.duckdns.org" rel="noopener noreferrer"&gt;https://deepalpha.duckdns.org&lt;/a&gt;&lt;br&gt;
Telegram: &lt;a href="https://t.me/DeepAlphaVault" rel="noopener noreferrer"&gt;https://t.me/DeepAlphaVault&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Not financial advice. Trading involves risk.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>crypto</category>
      <category>trading</category>
      <category>ai</category>
      <category>machinelearning</category>
    </item>
    <item>
      <title>DeepAlpha v6.0 — AI Trading Report (2026-04-09)</title>
      <dc:creator>Stefano viana</dc:creator>
      <pubDate>Thu, 09 Apr 2026 20:30:35 +0000</pubDate>
      <link>https://forem.com/stefano_viana_dda882cfae5/deepalpha-v60-ai-trading-report-2026-04-09-24cl</link>
      <guid>https://forem.com/stefano_viana_dda882cfae5/deepalpha-v60-ai-trading-report-2026-04-09-24cl</guid>
      <description>&lt;h1&gt;
  
  
  DeepAlpha v6.0 — AI Trading Report (2026-04-09)
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Market
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;BTC&lt;/strong&gt;: $72,090 (+1.5%)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;ETH&lt;/strong&gt;: $2,217 (+1.3%)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SOL&lt;/strong&gt;: $84 (+1.9%)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Performance
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Return since launch: &lt;strong&gt;+4.9%&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Open positions: 0&lt;/li&gt;
&lt;li&gt;AI model accuracy: 80.5% (walk-forward validated)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How it works
&lt;/h2&gt;

&lt;p&gt;DeepAlpha is an AI-powered trading system running on Hyperliquid L1 perpetuals. It uses:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;LightGBM + XGBoost ensemble trained on 7M+ samples (5 years of data)&lt;/li&gt;
&lt;li&gt;38 features including RSI, ATR, OBI proxy, CVD, BTC correlation&lt;/li&gt;
&lt;li&gt;Walk-forward validation (no overfitting)&lt;/li&gt;
&lt;li&gt;BTC SMA20 regime filter&lt;/li&gt;
&lt;li&gt;Conservative risk: 5x leverage, 3% equity per trade, ATR-based trailing stops&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All trades are verifiable on-chain.&lt;/p&gt;

&lt;p&gt;Stats: &lt;a href="https://deepalpha.duckdns.org" rel="noopener noreferrer"&gt;https://deepalpha.duckdns.org&lt;/a&gt;&lt;br&gt;
Telegram: &lt;a href="https://t.me/DeepAlphaVault" rel="noopener noreferrer"&gt;https://t.me/DeepAlphaVault&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Not financial advice. Trading involves risk.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>crypto</category>
      <category>trading</category>
      <category>ai</category>
      <category>machinelearning</category>
    </item>
    <item>
      <title>DeepAlpha v6.0 — AI Trading Report (2026-04-09)</title>
      <dc:creator>Stefano viana</dc:creator>
      <pubDate>Thu, 09 Apr 2026 08:30:29 +0000</pubDate>
      <link>https://forem.com/stefano_viana_dda882cfae5/deepalpha-v60-ai-trading-report-2026-04-09-2jcn</link>
      <guid>https://forem.com/stefano_viana_dda882cfae5/deepalpha-v60-ai-trading-report-2026-04-09-2jcn</guid>
      <description>&lt;h1&gt;
  
  
  DeepAlpha v6.0 — AI Trading Report (2026-04-09)
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Market
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;BTC&lt;/strong&gt;: $70,942 (-0.1%)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;ETH&lt;/strong&gt;: $2,180 (-0.4%)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SOL&lt;/strong&gt;: $82 (-0.3%)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Performance
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Return since launch: &lt;strong&gt;-7.5%&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Open positions: 3&lt;/li&gt;
&lt;li&gt;AI model accuracy: 0.0% (walk-forward validated)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How it works
&lt;/h2&gt;

&lt;p&gt;DeepAlpha is an AI-powered trading system running on Hyperliquid L1 perpetuals. It uses:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;LightGBM + XGBoost ensemble trained on 7M+ samples (5 years of data)&lt;/li&gt;
&lt;li&gt;38 features including RSI, ATR, OBI proxy, CVD, BTC correlation&lt;/li&gt;
&lt;li&gt;Walk-forward validation (no overfitting)&lt;/li&gt;
&lt;li&gt;BTC SMA20 regime filter&lt;/li&gt;
&lt;li&gt;Conservative risk: 5x leverage, 3% equity per trade, ATR-based trailing stops&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All trades are verifiable on-chain.&lt;/p&gt;

&lt;p&gt;Stats: &lt;a href="https://deepalpha.duckdns.org" rel="noopener noreferrer"&gt;https://deepalpha.duckdns.org&lt;/a&gt;&lt;br&gt;
Telegram: &lt;a href="https://t.me/DeepAlphaVault" rel="noopener noreferrer"&gt;https://t.me/DeepAlphaVault&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Not financial advice. Trading involves risk.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>crypto</category>
      <category>trading</category>
      <category>ai</category>
      <category>machinelearning</category>
    </item>
    <item>
      <title>DeepAlpha v6.0 — AI Trading Report (2026-04-08)</title>
      <dc:creator>Stefano viana</dc:creator>
      <pubDate>Wed, 08 Apr 2026 20:30:15 +0000</pubDate>
      <link>https://forem.com/stefano_viana_dda882cfae5/deepalpha-v60-ai-trading-report-2026-04-08-1hmn</link>
      <guid>https://forem.com/stefano_viana_dda882cfae5/deepalpha-v60-ai-trading-report-2026-04-08-1hmn</guid>
      <description>&lt;h1&gt;
  
  
  DeepAlpha v6.0 — AI Trading Report (2026-04-08)
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Market
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;BTC&lt;/strong&gt;: $71,336 (-0.8%)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;ETH&lt;/strong&gt;: $2,213 (-1.2%)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SOL&lt;/strong&gt;: $83 (-2.7%)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Performance
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Return since launch: &lt;strong&gt;-1.9%&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Open positions: 2&lt;/li&gt;
&lt;li&gt;AI model accuracy: 0.0% (walk-forward validated)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How it works
&lt;/h2&gt;

&lt;p&gt;DeepAlpha is an AI-powered trading system running on Hyperliquid L1 perpetuals. It uses:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;LightGBM + XGBoost ensemble trained on 7M+ samples (5 years of data)&lt;/li&gt;
&lt;li&gt;38 features including RSI, ATR, OBI proxy, CVD, BTC correlation&lt;/li&gt;
&lt;li&gt;Walk-forward validation (no overfitting)&lt;/li&gt;
&lt;li&gt;BTC SMA20 regime filter&lt;/li&gt;
&lt;li&gt;Conservative risk: 5x leverage, 3% equity per trade, ATR-based trailing stops&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All trades are verifiable on-chain.&lt;/p&gt;

&lt;p&gt;Stats: &lt;a href="https://deepalpha.duckdns.org" rel="noopener noreferrer"&gt;https://deepalpha.duckdns.org&lt;/a&gt;&lt;br&gt;
Telegram: &lt;a href="https://t.me/DeepAlphaVault" rel="noopener noreferrer"&gt;https://t.me/DeepAlphaVault&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Not financial advice. Trading involves risk.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>crypto</category>
      <category>trading</category>
      <category>ai</category>
      <category>machinelearning</category>
    </item>
    <item>
      <title>DeepAlpha v6.0 — AI Trading Report (2026-04-08)</title>
      <dc:creator>Stefano viana</dc:creator>
      <pubDate>Wed, 08 Apr 2026 08:40:32 +0000</pubDate>
      <link>https://forem.com/stefano_viana_dda882cfae5/deepalpha-v60-ai-trading-report-2026-04-08-4ml1</link>
      <guid>https://forem.com/stefano_viana_dda882cfae5/deepalpha-v60-ai-trading-report-2026-04-08-4ml1</guid>
      <description>&lt;h1&gt;
  
  
  DeepAlpha v6.0 — AI Trading Report (2026-04-08)
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Market
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;BTC&lt;/strong&gt;: $71,650 (-0.4%)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;ETH&lt;/strong&gt;: $2,253 (+0.6%)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SOL&lt;/strong&gt;: $84 (-1.2%)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Performance
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Return since launch: &lt;strong&gt;-0.0%&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Open positions: 3&lt;/li&gt;
&lt;li&gt;AI model accuracy: 0.0% (walk-forward validated)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How it works
&lt;/h2&gt;

&lt;p&gt;DeepAlpha is an AI-powered trading system running on Hyperliquid L1 perpetuals. It uses:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;LightGBM + XGBoost ensemble trained on 7M+ samples (5 years of data)&lt;/li&gt;
&lt;li&gt;38 features including RSI, ATR, OBI proxy, CVD, BTC correlation&lt;/li&gt;
&lt;li&gt;Walk-forward validation (no overfitting)&lt;/li&gt;
&lt;li&gt;BTC SMA20 regime filter&lt;/li&gt;
&lt;li&gt;Conservative risk: 5x leverage, 3% equity per trade, ATR-based trailing stops&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All trades are verifiable on-chain.&lt;/p&gt;

&lt;p&gt;Stats: &lt;a href="https://deepalpha.duckdns.org" rel="noopener noreferrer"&gt;https://deepalpha.duckdns.org&lt;/a&gt;&lt;br&gt;
Telegram: &lt;a href="https://t.me/DeepAlphaVault" rel="noopener noreferrer"&gt;https://t.me/DeepAlphaVault&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Not financial advice. Trading involves risk.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>crypto</category>
      <category>trading</category>
      <category>ai</category>
      <category>machinelearning</category>
    </item>
    <item>
      <title>DeepAlpha v6.0 — AI Trading Report (2026-04-08)</title>
      <dc:creator>Stefano viana</dc:creator>
      <pubDate>Wed, 08 Apr 2026 08:30:13 +0000</pubDate>
      <link>https://forem.com/stefano_viana_dda882cfae5/deepalpha-v60-ai-trading-report-2026-04-08-57o</link>
      <guid>https://forem.com/stefano_viana_dda882cfae5/deepalpha-v60-ai-trading-report-2026-04-08-57o</guid>
      <description>&lt;h1&gt;
  
  
  DeepAlpha v6.0 — AI Trading Report (2026-04-08)
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Market
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;BTC&lt;/strong&gt;: $71,650 (-0.4%)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;ETH&lt;/strong&gt;: $2,253 (+0.6%)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SOL&lt;/strong&gt;: $84 (-1.2%)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Performance
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Return since launch: &lt;strong&gt;-0.0%&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Open positions: 3&lt;/li&gt;
&lt;li&gt;AI model accuracy: 0.0% (walk-forward validated)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How it works
&lt;/h2&gt;

&lt;p&gt;DeepAlpha is an AI-powered trading system running on Hyperliquid L1 perpetuals. It uses:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;LightGBM + XGBoost ensemble trained on 7M+ samples (5 years of data)&lt;/li&gt;
&lt;li&gt;38 features including RSI, ATR, OBI proxy, CVD, BTC correlation&lt;/li&gt;
&lt;li&gt;Walk-forward validation (no overfitting)&lt;/li&gt;
&lt;li&gt;BTC SMA20 regime filter&lt;/li&gt;
&lt;li&gt;Conservative risk: 5x leverage, 3% equity per trade, ATR-based trailing stops&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All trades are verifiable on-chain.&lt;/p&gt;

&lt;p&gt;Stats: &lt;a href="https://deepalpha.duckdns.org" rel="noopener noreferrer"&gt;https://deepalpha.duckdns.org&lt;/a&gt;&lt;br&gt;
Telegram: &lt;a href="https://t.me/DeepAlphaVault" rel="noopener noreferrer"&gt;https://t.me/DeepAlphaVault&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Not financial advice. Trading involves risk.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>crypto</category>
      <category>trading</category>
      <category>ai</category>
      <category>machinelearning</category>
    </item>
    <item>
      <title>DeepAlpha v6.0 - AI-Powered Crypto Trading System (2026-04-08)</title>
      <dc:creator>Stefano viana</dc:creator>
      <pubDate>Wed, 08 Apr 2026 06:02:36 +0000</pubDate>
      <link>https://forem.com/stefano_viana_dda882cfae5/deepalpha-v60-ai-powered-crypto-trading-system-2026-04-08-50mc</link>
      <guid>https://forem.com/stefano_viana_dda882cfae5/deepalpha-v60-ai-powered-crypto-trading-system-2026-04-08-50mc</guid>
      <description>&lt;h1&gt;
  
  
  DeepAlpha v6.0 — AI Trading Report (2026-04-08)
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Market
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;BTC&lt;/strong&gt;: $71,690 (-0.3%)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;ETH&lt;/strong&gt;: $2,239 (-0.0%)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SOL&lt;/strong&gt;: $85 (-1.1%)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Performance
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Return since launch: &lt;strong&gt;+0.0%&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Open positions: 0&lt;/li&gt;
&lt;li&gt;AI model accuracy: 0.0% (walk-forward validated)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How it works
&lt;/h2&gt;

&lt;p&gt;DeepAlpha is an AI-powered trading system running on Hyperliquid L1 perpetuals. It uses:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;LightGBM + XGBoost ensemble trained on 7M+ samples (5 years of data)&lt;/li&gt;
&lt;li&gt;38 features including RSI, ATR, OBI proxy, CVD, BTC correlation&lt;/li&gt;
&lt;li&gt;Walk-forward validation (no overfitting)&lt;/li&gt;
&lt;li&gt;BTC SMA20 regime filter&lt;/li&gt;
&lt;li&gt;Conservative risk: 5x leverage, 3% equity per trade, ATR-based trailing stops&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All trades are verifiable on-chain.&lt;/p&gt;

&lt;p&gt;Stats: &lt;a href="https://deepalpha.duckdns.org" rel="noopener noreferrer"&gt;https://deepalpha.duckdns.org&lt;/a&gt;&lt;br&gt;
Telegram: &lt;a href="https://t.me/DeepAlphaVault" rel="noopener noreferrer"&gt;https://t.me/DeepAlphaVault&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Not financial advice. Trading involves risk.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>crypto</category>
      <category>trading</category>
      <category>ai</category>
      <category>machinelearning</category>
    </item>
  </channel>
</rss>
