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…
Questions tagged #indicators
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 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…
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 am receiving live tick data from Zerodha WebSocket, but indicators like Supertrend and others require candle data.How can I correctly convert live ticks into 1-minute candles in…
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…
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 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 calculating MACD in my algo using my 1-minute candles. I implemented EMA (12, 26) and signal line (9), but when I compare with chart values, they don’t match exactly. Candle data looks…
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…