DEV Community

Cover image for Want to make a Custom TradingView Indicator ?
Yash Ingawale
Yash Ingawale

Posted on

Want to make a Custom TradingView Indicator ?

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)