How to develop a lower timeframe indicator?

7 Views
Marsha Burns
Answered 1 year ago
<p>Have you tested out adding the plots on lower timeframes? If so, were the values/results as expected or different? I suggest testing it out first to get a baseline of the behavior from your script and to see if it is acting how you'd like it to or not. If not, please provide an example of the desired behavior or desired values for the plot vs. what you are actually seeing on your chart when the indicator is applied. Then, we can guide you through the debugging process to help you correct the indicator to get the desired behavior.</p>
6 Views
Tamara Nikolaeva
Answered 1 week, 3 days ago
<p id="isPasted">To develop a lower timeframe (LTF) indicator, you write a script that analyzes granular price data (like 1-minute or 5-minute charts) while filtering out higher timeframe (HTF) market noise.</p><p>The process requires defining the logic, selecting a platform, and scripting the mathematical boundaries.</p><p><strong>1. Select Your Development Platform</strong></p><p>Choose a platform based on your coding language preference and execution speed needs:</p><ul><li>Pine Script (TradingView): Best for rapid prototyping and quick visualization. Uses efficient, built-in functions.</li><li>MQL4 / MQL5 (MetaTrader): Best for ultra-low latency execution and automated execution via Experts Advisors (EAs).</li><li>Python (Pandas + Ta-Lib): Best for algorithmic trading backtesting, …</li></ul>
1 View