<?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: Yash Ingawale</title>
    <description>The latest articles on DEV Community by Yash Ingawale (@signalweave).</description>
    <link>https://dev.to/signalweave</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%2F3535079%2F28f3d664-1833-4085-af5e-561672f6ff96.png</url>
      <title>DEV Community: Yash Ingawale</title>
      <link>https://dev.to/signalweave</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/signalweave"/>
    <language>en</language>
    <item>
      <title>Want to make a Custom TradingView Indicator ?</title>
      <dc:creator>Yash Ingawale</dc:creator>
      <pubDate>Sun, 28 Sep 2025 16:30:49 +0000</pubDate>
      <link>https://dev.to/signalweave/offering-custom-tradingview-indicator-development-2j67</link>
      <guid>https://dev.to/signalweave/offering-custom-tradingview-indicator-development-2j67</guid>
      <description>&lt;p&gt;Do you have a trading idea or strategy that you want to see as a TradingView indicator? I can build it for you using Pine Script, TradingView’s scripting language.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;🔹 How It Works&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Contact Me&lt;br&gt;
– Reach out to me at [ &lt;a href="mailto:yashingawaletrading@gmail.com"&gt;yashingawaletrading@gmail.com&lt;/a&gt; ] with your idea.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Share Your Signal Logic&lt;br&gt;
– Provide the rules/conditions of your strategy (e.g., crossover signals, RSI-based entries, alerts, etc.).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Negotiate Price&lt;br&gt;
– We’ll discuss the complexity of your idea and finalize a fair cost.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Development&lt;br&gt;
– I’ll create your custom TradingView indicator.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Proof of Work&lt;br&gt;
– You’ll receive screenshots and video recordings showing your indicator working on TradingView before any payment.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Payment&lt;br&gt;
– Payment can be made via UPI (for India) or USDT (for international clients).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Delivery&lt;br&gt;
– After payment, I’ll send you the full Pine Script file of your indicator.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;




&lt;p&gt;&lt;strong&gt;🔹 Example (Simple Moving Average Crossover)&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Here’s a very basic example of what a TradingView indicator looks like in Pine Script:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;//@version=6
indicator("Simple MA Crossover", overlay=true)

// Inputs
fastLength = input.int(9, "Fast MA")
slowLength = input.int(21, "Slow MA")

// MA calculations
fastMA = ta.sma(close, fastLength)
slowMA = ta.sma(close, slowLength)

// Plot
plot(fastMA, color=color.blue, title="Fast MA")
plot(slowMA, color=color.red, title="Slow MA")

// Buy/Sell signals
buySignal  = ta.crossover(fastMA, slowMA)
sellSignal = ta.crossunder(fastMA, slowMA)

plotshape(buySignal,  title="Buy",  location=location.belowbar, 
          shape=shape.triangleup,   color=color.green, size=size.small)
plotshape(sellSignal, title="Sell", location=location.abovebar, 
          shape=shape.triangledown, color=color.red,   size=size.small)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Your custom indicator can be much more advanced, depending on your logic.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;🔹 Why Work With Me?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;✅ Custom-built indicators (not just copy-paste templates)&lt;br&gt;
✅ Transparent process — proof before payment&lt;br&gt;
✅ Secure payments via UPI/USDT&lt;br&gt;
✅ Fast delivery &amp;amp; small revisions included&lt;/p&gt;




&lt;p&gt;📩 Contact Email: &lt;/p&gt;

&lt;p&gt;&lt;a href="mailto:yashingawaletrading@gmail.com"&gt;yashingawaletrading@gmail.com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>bitcoin</category>
      <category>freelance</category>
    </item>
    <item>
      <title>🚀 Offering Custom TradingView Indicator Development</title>
      <dc:creator>Yash Ingawale</dc:creator>
      <pubDate>Sun, 28 Sep 2025 11:13:39 +0000</pubDate>
      <link>https://dev.to/signalweave/offering-custom-tradingview-indicator-development-3m5f</link>
      <guid>https://dev.to/signalweave/offering-custom-tradingview-indicator-development-3m5f</guid>
      <description>&lt;p&gt;Do you have a trading idea or strategy that you want to see as a TradingView indicator? I can build it for you using Pine Script, TradingView’s scripting language.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;🔹 How It Works&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Contact Me&lt;br&gt;
– Reach out to me at [ &lt;a href="mailto:yashingawaletrading@gmail.com"&gt;yashingawaletrading@gmail.com&lt;/a&gt; ] with your idea.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Share Your Signal Logic&lt;br&gt;
– Provide the rules/conditions of your strategy (e.g., crossover signals, RSI-based entries, alerts, etc.).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Negotiate Price&lt;br&gt;
– We’ll discuss the complexity of your idea and finalize a fair cost.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Development&lt;br&gt;
– I’ll create your custom TradingView indicator.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Proof of Work&lt;br&gt;
– You’ll receive screenshots and video recordings showing your indicator working on TradingView before any payment.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Payment&lt;br&gt;
– Payment can be made via UPI (for India) or USDT (for international clients).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Delivery&lt;br&gt;
– After payment, I’ll send you the full Pine Script file of your indicator.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;




&lt;p&gt;&lt;strong&gt;🔹 Example (Simple Moving Average Crossover)&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Here’s a very basic example of what a TradingView indicator looks like in Pine Script:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;//@version=6
indicator("Simple MA Crossover", overlay=true)

// Inputs
fastLength = input.int(9, "Fast MA")
slowLength = input.int(21, "Slow MA")

// MA calculations
fastMA = ta.sma(close, fastLength)
slowMA = ta.sma(close, slowLength)

// Plot
plot(fastMA, color=color.blue, title="Fast MA")
plot(slowMA, color=color.red, title="Slow MA")

// Buy/Sell signals
buySignal  = ta.crossover(fastMA, slowMA)
sellSignal = ta.crossunder(fastMA, slowMA)

plotshape(buySignal,  title="Buy",  location=location.belowbar, 
          shape=shape.triangleup,   color=color.green, size=size.small)
plotshape(sellSignal, title="Sell", location=location.abovebar, 
          shape=shape.triangledown, color=color.red,   size=size.small)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Your custom indicator can be much more advanced, depending on your logic.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;🔹 Why Work With Me?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;✅ Custom-built indicators (not just copy-paste templates)&lt;br&gt;
✅ Transparent process — proof before payment&lt;br&gt;
✅ Secure payments via UPI/USDT&lt;br&gt;
✅ Fast delivery &amp;amp; small revisions included&lt;/p&gt;




&lt;p&gt;📩 Contact Email: &lt;/p&gt;

&lt;p&gt;&lt;a href="mailto:yashingawaletrading@gmail.com"&gt;yashingawaletrading@gmail.com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>pinescript</category>
      <category>tradingview</category>
      <category>trading</category>
      <category>freelance</category>
    </item>
  </channel>
</rss>
