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 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 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…
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 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 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 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 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…