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…
Newest discussions
AskI’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…
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 developing a trading strategy in Pine Script and want to highlight candles whenever my buy or sell conditions are met. Instead of only plotting signals, I’d like the candle colors to…
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’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 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…
I’m using the Strategy Order syntax in the JSON Bridge with TradingView, and I understand how it works. However, I also noticed there are other syntax generators available such as Limit…
I’m developing an Expert Advisor (EA) in MT5 and I need to know why my previous trade was closed. For example, if a Buy position gets closed, I want my EA to detect whether it was closed…
I’m currently using a Custom Bridge/JSON Bridge in AlgoDelta, but for a few days I don’t want any orders to be placed. I also don’t want to delete the bridge because it’s already connected…
I’m developing my own TradingView strategy and I’ve noticed that sometimes it keeps generating Buy or Sell entries repeatedly, even though I’m already in an open position. I only want my…
I’m using a TradingView strategy with AlgoDelta, but sometimes multiple alerts are triggered within a short period of time. Because of this, I’m worried that duplicate orders might get…
I’m creating an Expert Advisor in MT5 and I only want my strategy logic to run once whenever a new candle is formed. I know OnTick() executes on every incoming tick, but I don’t want my…
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…
SOLVED How can I draw Buy/Sell arrows or symbols on the MT5 chart when my strategy generates a signal?
I’m developing an MT5 strategy, and whenever my Buy or Sell condition is satisfied, I’d like to display an arrow or some symbol on the chart exactly at that candle. For example, if a…
I have noticed something strange while trading in MT5. Whenever I open a Sell position, sometimes the Stop Loss or Target gets hit even though the Bid price on the chart hasn’t reached that…
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…
Hi everyone, I have multiple broker accounts connected to AlgoDelta, and sometimes the session expires or the token needs to be refreshed. What is the correct way to re-login or refresh the…
Hi everyone, I’m learning Pine Script and I want to create alerts whenever my trading conditions are met, such as a buy or sell signal. Can someone explain how to create alerts in Pine…
Hi everyone, I’m learning Pine Script and recently came across the request.security() function. I understand that it’s used to get data from another timeframe or symbol, but I’m not sure…