DEV Community

Cover image for ๐Ÿš€ Offering Custom TradingView Indicator Development
Yash Ingawale
Yash Ingawale

Posted on

๐Ÿš€ Offering Custom TradingView Indicator Development

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.


๐Ÿ”น How It Works

  1. Contact Me
    โ€“ Reach out to me at [ yashingawaletrading@gmail.com ] with your idea.

  2. Share Your Signal Logic
    โ€“ Provide the rules/conditions of your strategy (e.g., crossover signals, RSI-based entries, alerts, etc.).

  3. Negotiate Price
    โ€“ Weโ€™ll discuss the complexity of your idea and finalize a fair cost.

  4. Development
    โ€“ Iโ€™ll create your custom TradingView indicator.

  5. Proof of Work
    โ€“ Youโ€™ll receive screenshots and video recordings showing your indicator working on TradingView before any payment.

  6. Payment
    โ€“ Payment can be made via UPI (for India) or USDT (for international clients).

  7. Delivery
    โ€“ After payment, Iโ€™ll send you the full Pine Script file of your indicator.


๐Ÿ”น Example (Simple Moving Average Crossover)

Hereโ€™s a very basic example of what a TradingView indicator looks like in Pine Script:

//@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)
Enter fullscreen mode Exit fullscreen mode

Your custom indicator can be much more advanced, depending on your logic.


๐Ÿ”น Why Work With Me?

โœ… Custom-built indicators (not just copy-paste templates)
โœ… Transparent process โ€” proof before payment
โœ… Secure payments via UPI/USDT
โœ… Fast delivery & small revisions included


๐Ÿ“ฉ Contact Email:

yashingawaletrading@gmail.com

Top comments (0)