<?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>DEV Community: Irfan Zuyrel</title>
    <description>The latest articles on DEV Community by Irfan Zuyrel (@irfanzuyrel).</description>
    <link>https://dev.to/irfanzuyrel</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%2F3671440%2F7f987d58-f92b-4233-b105-5399e49fdb2a.png</url>
      <title>DEV Community: Irfan Zuyrel</title>
      <link>https://dev.to/irfanzuyrel</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/irfanzuyrel"/>
    <language>en</language>
    <item>
      <title>From AI Signals to Decisions: Build Risk Rules (Not Predictions)</title>
      <dc:creator>Irfan Zuyrel</dc:creator>
      <pubDate>Tue, 23 Dec 2025 07:30:50 +0000</pubDate>
      <link>https://dev.to/irfanzuyrel/from-ai-signals-to-decisions-build-risk-rules-not-predictions-1nno</link>
      <guid>https://dev.to/irfanzuyrel/from-ai-signals-to-decisions-build-risk-rules-not-predictions-1nno</guid>
      <description>&lt;p&gt;In practice, AI is rarely the hard part. The hard part is decision-making under uncertainty.&lt;/p&gt;

&lt;p&gt;Many people treat model outputs as “answers.” But a prediction without constraints is just a number that invites impulse. A usable workflow turns outputs into rules—explicit limits that prevent a single bad assumption from dominating your portfolio.&lt;/p&gt;

&lt;p&gt;Here’s a simple, implementation-friendly framework you can adapt:&lt;/p&gt;

&lt;p&gt;Step 1 — Specify the risk budget&lt;br&gt;
Before you consume any signal, define your allowable downside (portfolio max drawdown, per-position loss cap, or volatility cap). If the risk budget is undefined, the model can’t help you, because you haven’t defined what “safe” means.&lt;/p&gt;

&lt;p&gt;Step 2 — Convert signal strength into position size&lt;br&gt;
Instead of “buy/sell,” treat signals as sizing suggestions. Stronger confidence can scale exposure up, but only within strict bounds.&lt;/p&gt;

&lt;p&gt;Step 3 — Add a rebalance rule&lt;br&gt;
Rebalancing is a “boring algorithm” that often beats emotional discretion. Use time-based or threshold-based triggers.&lt;/p&gt;

&lt;p&gt;Below is a toy example to illustrate the mindset (educational only):&lt;/p&gt;

&lt;p&gt;def size_position(signal, max_weight=0.10):&lt;br&gt;
    # signal expected in [-1, 1]&lt;br&gt;
    base = 0.02  # 2% minimum meaningful size&lt;br&gt;
    weight = base + abs(signal) * (max_weight - base)&lt;br&gt;
    return min(weight, max_weight)&lt;/p&gt;

&lt;p&gt;def rebalance(current_weight, target_weight, band=0.02):&lt;br&gt;
    return abs(current_weight - target_weight) &amp;gt; band&lt;/p&gt;

&lt;p&gt;Step 4 — Log decisions for feedback&lt;br&gt;
A model improves when your process produces clean feedback. Record: signal, size, risk rule, and outcome. Over time, you’ll learn whether the model is useful—or whether your rules need refinement.&lt;br&gt;
&lt;a href="https://www.rimbamindaai.com/" rel="noopener noreferrer"&gt;https://www.rimbamindaai.com/&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzfmvamntengi10dyvvsd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzfmvamntengi10dyvvsd.png" alt=" " width="800" height="474"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>machinelearning</category>
      <category>riskmanagement</category>
      <category>quantfinance</category>
      <category>portfolio</category>
    </item>
  </channel>
</rss>
