You need to take the free maystry course (start with inputs BEFORE Variables) Check the code from the link https://www.tradingview.com/pine-script-reference/v5/#fun_ta.dmi //@version=5 strategy(title="SAR ADX", initial_capital=150000, currency= currency.USD, default_qty_type= strategy.percent_of_equ...
Hi everyone, I'm using one of the amazing lessons that Mathew create for this question (code below) I want to plot line (hline) whenever condition trigger (As a Stoploss): If the condition trigger "Long" , plot hline (or anything lable or arrow or value) on the low of the last bearish or (red) candl...
Well i cannot access the mastery course anymore to point to which lesson. I dont know why they have made it monthly subscription based as it should be one time charge only. I will create a custom indicator today and upload and put link here. To show multiple symbol crossover displayed in a table. A...
Hello, I want to use background color to chart when volume bigger that the last 3 bars. please check what's wrong with this formula thanks indicator("volume detector", overlay=true) VolDetector = volume > volume[1] and volume > volume[2] and volume > volume[3] bgcolor(VolDetector ? color = color.whi...
I have been searching for scripts to create alerts for many symbols at ones that fulfil a specific condition (RSI crossover level 30 on timeframe 1 day).
Any suggestion of how to write this kind of scripts (the easy way possible)