2 Answers
<p id="isPasted">You can create your own indicators and strategies on TradingView using Pine Script, which is TradingView's proprietary scripting language. Here’s a brief overview of how to do it:</p><p><br></p><p>Creating Custom Indicators</p><p><br></p><p>Open Pine Script Editor: In TradingView, click on the "Pine Editor" tab at the bottom of the platform.</p><p>Write Your Script: You can write your own script using Pine Script. You can define custom calculations, plot indicators, and set conditions.</p><p>Add to Chart: Once your script is ready, click on the "Add to Chart" button to see your custom indicator applied to the chart.</p><p>Save and Share: You can …</p>
2 Views
<p id="isPasted">If a project is in early stages, especially if you are designing core features, I would try to keep it as clean as possible and refactor whenever you see a chance. Since with rotting code in the core you will have hard time working around it.</p><p>Lastly, there is an exception to all this. If a project is short lived or if you are about to finish supporting it, you can (but I wouldn't recommend) go for some shortcuts and make quick and dirty solutions.</p>