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
Contact Me
– Reach out to me at [ yashingawaletrading@gmail.com ] with your idea.Share Your Signal Logic
– Provide the rules/conditions of your strategy (e.g., crossover signals, RSI-based entries, alerts, etc.).Negotiate Price
– We’ll discuss the complexity of your idea and finalize a fair cost.Development
– I’ll create your custom TradingView indicator.Proof of Work
– You’ll receive screenshots and video recordings showing your indicator working on TradingView before any payment.Payment
– Payment can be made via UPI (for India) or USDT (for international clients).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)
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:
Top comments (0)