I just want my charts to look more modified for my particular system that revolves around 2 moving averages the 21 ema and the 50 ema? Is it possible to code such type of indicator?

1 View
Yuriy Makarov
Answered 3 months, 4 weeks ago
<p id="isPasted">Here's how you can approach creating a custom indicator:</p><p>1. Choose a platform:</p><p>Platforms like TradingView allow you to write custom indicators using Pine Script. Other platforms like MetaTrader might have their own scripting languages.&nbsp;</p><p>2. Learn the scripting language:</p><p>Familiarize yourself with the language used by your chosen platform. Pine Script is relatively user-friendly, but it still requires some learning.&nbsp;</p><p>3. Define the EMAs:</p><p>Use the platform's functions to calculate the 21-day and 50-day EMAs.&nbsp;</p><p>4. Modify the plot:</p><p>Change the color of the EMAs, their width, and their transparency.&nbsp;</p><p>Create a shaded area between the EMAs to visually …</p>