I’m creating my own TradingView indicator in Pine Script, but currently all the values like EMA length, RSI period, colors, and other settings are hardcoded. I want users to be able to…
Questions tagged #indicators
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…
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…
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 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 new to MetaTrader 5 and often hear people talking about Indicators and Expert Advisors (EAs). I’m a bit confused because both seem to be related to trading. Can someone…
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’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 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 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…