Hello traders can anyone give me indicator like attached one

How to program the std indicator to take to take price from other indicator windows 0 replies
Indicator of the indicator 11 replies
Adding an indicator to an indicator 10 replies
Indicator/Trendline Pips indicator 2 replies
add indicator to an Indicator 4 replies
DislikedHello everyone, before I start I apologize for my English level ... I hope you can understand me I attached some screenshots of a strategy that I find very interesting ... I do not know the indicator with the arrows in red and blue, to see if someone knows and can share it here the yellow arrows are from the fiddy -tma & cloud as seen in the top of the screenshots, I downloaded it but it asks for a .dll and I do not have it to work, if someone has it and it works it could share it with the. dll asking what I said would interest me the indicator...Ignored
Disliked{quote} if you want results please make your request in the thread "i will code your eas and indicators for no charge" where the coders hang around.Ignored
Disliked//@version=3 study("VWAP/MVWAP/EMA CROSSOVER", overlay = true) //created by @DerrickLaFlame // Get user input vwaplength= input(title="VWAP Length", type=integer, defval=1) emaSource1= input(title="EMA 1 Source", type=source, defval=close) emaLength1= input(title="EMA 1 Length", type=integer, defval=7) emaSource2= input(title="EMA 2 Source", type=source, defval=close) emaLength2= input(title="EMA 2 Length", type=integer, defval=25) rsilimit= input(title="RSI Limit (RISKY)", type=integer, defval=65) rsiminimum= input(title="RSI Minimum (WAIT FOR...Ignored