I’m developing an Expert Advisor in MT5 and I currently use the Print() function to check values like Trend, Entry Price, Stop Loss, Target, Current Profit, ATR, EMA, RSI, and other…
Questions tagged #indicators
I’m trying to create a Stochastic Oscillator in Pine Script to understand how the %K and %D lines are calculated instead of simply using the built-in indicator. I want to plot both lines…
I’m creating my own technical indicators in Pine Script and want to build an RSI indicator from scratch instead of using the built-in RSI. I want to understand how to calculate the RSI…
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 developing my own TradingView indicator and I’ve seen many indicators display a dashboard on the chart showing values like Trend, EMA, RSI, ATR, Buy/Sell signals, and other useful…
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 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…
I’m creating my own technical indicators in Pine Script and want to build a Donchian Channel from scratch instead of using a built-in indicator. I want to understand how the upper and lower…
I’m creating a TradingView indicator and I have some logic that should execute only on the first candle of a new trading day. I don’t want to run that logic on every candle. I want to…
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…