I’m creating my own indicator in TradingView using Pine Script. The indicator is already generating Buy and Sell signals on the chart, but now I want TradingView to create alerts…
Questions tagged #indicators
So while working on dynamic strike selection (ATM/ITM/OTM) in my sma cross over algo, but I am stuck on strike gap. Right now I am hardcoding values like 50 for NIFTY and 100 for BANKNIFTY…
I’m creating a custom TradingView indicator and want to mark important levels and signals directly on the chart using Pine Script. I want to draw things like trend lines, rectangular zones…
I’m building an supertrend algo where I need to fetch historical data for multiple stocks at startup. Right now I’m looping over all symbols and calling the historical API, but after a few…
I’m creating my own technical indicators in Pine Script and want to build an ATR indicator from scratch instead of using the built-in ATR. I want to understand how ATR measures market…
EMA/SMA values not matching chart in my algo (using 1-min candles) I’m calculating EMA and SMA in my algo using 1-minute candles built from ticks. But when I compare it with broker/chart…
I’m trying to create a Keltner Channel indicator in Pine Script, but I’m not sure how to build it from scratch. I want to create the indicator and plot it properly on the chart. Can anyone…
I understand how to connect a TradingView strategy with AlgoDelta’s Custom Bridge. But if I am using an indicator instead of a strategy, then I believe I need to create two separate alerts…
Hi everyone, I’m learning Pine Script and I want to create a Supertrend indicator from scratch instead of using the built-in function. Can someone explain how the Supertrend indicator works…
I am using a Indicator which is generating Buy and Sell signals, I am using this indicator on Nifty chart, when a buy signal generates then I want to Buy a CE ATM of Nifty, when sell signal…
I connected my custom bridge and configured the upside/downside execution properly. But now I want to connect a TradingView indicator instead of a strategy. I’m getting confused about: What…
Hi everyone, I’m creating a custom indicator in Pine Script, and I want most of the indicator to appear in a separate pane below the chart. However, I also want to plot a few things, such…
I’m running a Supertrend based algo, but at market open (9:15), the signals are completely wrong for the first few minutes. After that, everything becomes normal. I’m generating my own…
I’m creating my own technical indicators in Pine Script and want to build a MACD indicator from scratch instead of using a built-in indicator. I want to understand how the MACD Line, Signal…
I’m trying to use Bollinger Bands (BB) in my algo using my 1-minute candle data. I implemented the formula using SMA and standard deviation, but when I compare it with chart values, it…
I’m creating alerts for my TradingView indicator and I noticed that Pine Script provides both alert() and alertcondition() . I’m a little confused about why there are two different…
I have an SMA indicator on TradingView. When the fast SMA crosses above the slow SMA, it gives a LONG signal. When it crosses below, it gives a SHORT signal. Now I want to use those signals…
I already understand how VWAP works, but I want to create my own VWAP indicator in Pine Script. I’m not sure which built-in Pine Script functions I should use to calculate and plot it…
I’m trying to create a Fibonacci indicator in Pine Script where I can select a specific candle by entering its hour and minute. For example, if I enter 09:20 on a 5-minute chart, I want the…
I’m creating a TradingView indicator and currently I have to manually identify and draw support and resistance levels on the chart. I want my Pine Script to detect important price levels…