
Zach9468950
@t_Zach9468950
What symbols does the trader recommend buying?
Purchase History
پیام های تریدر
Filter
Signal Type

Zach9468950

I analyze the pattern through the VuManChur signals to figure out when a break is going to happen when the lines come closer together that means the signal will reverse I also confirm this with the MACD lines but the buy signal kinda tells you at the point it says buy its kinda too late or sell is a little late maybe 1 day or 2 if your using it in hours its probably 1-2 hours late

Zach9468950

// version =4 study("ADX and DI Improved", shorttitle="ADX and DI Improved", overlay=false) len = input(title="Length", type=input.integer, defval=14) th = input(title="threshold", type=input.integer, defval=20) TrueRange = max(max(high-low, abs(high-nz(close [1]))), abs(low-nz(close [1]))) DirectionalMovementPlus = high-nz(high [1]) > nz(low [1])-low ? max(high-nz(high [1]), 0): 0 DirectionalMovementMinus = nz(low [1])-low > high-nz(high [1]) ? max(nz(low [1])-low, 0): 0 float SmoothedTrueRange = na float SmoothedDirectionalMovementPlus = na float SmoothedDirectionalMovementMinus = na SmoothedTrueRange := nz(SmoothedTrueRange [1]) - (nz(SmoothedTrueRange [1])/len) + TrueRange SmoothedDirectionalMovementPlus := nz(SmoothedDirectionalMovementPlus [1]) - (nz(SmoothedDirectionalMovementPlus [1])/len) + DirectionalMovementPlus SmoothedDirectionalMovementMinus := nz(SmoothedDirectionalMovementMinus [1]) - (nz(SmoothedDirectionalMovementMinus [1])/len) + DirectionalMovementMinus DIPlus = SmoothedDirectionalMovementPlus / SmoothedTrueRange * 100 DIMinus = SmoothedDirectionalMovementMinus / SmoothedTrueRange * 100 DX = abs(DIPlus-DIMinus) / (DIPlus+DIMinus)*100 ADX = sma(DX, len) plot(DIPlus, color=color.green, title="DI+") plot(DIMinus, color=color.red, title="DI-") plot(ADX, color=color.black, title="ADX") hline(th, color=color.black, linestyle=hline.style_dashed) crossUpDiplusDiminus = crossover(DIPlus, DIMinus) crossDownDiplusDiminus = crossunder(DIPlus, DIMinus) bgcolor(color=crossUpDiplusDiminus ? color.green : na, title="Tenkan Sen cross over Kijun Sen", transp=90, offset=-1) bgcolor(color=crossDownDiplusDiminus ? color.red : na, title="Tenkan Sen cross under Kijun Sen", transp=90, offset=-1)
Disclaimer
Any content and materials included in Sahmeto's website and official communication channels are a compilation of personal opinions and analyses and are not binding. They do not constitute any recommendation for buying, selling, entering or exiting the stock market and cryptocurrency market. Also, all news and analyses included in the website and channels are merely republished information from official and unofficial domestic and foreign sources, and it is obvious that users of the said content are responsible for following up and ensuring the authenticity and accuracy of the materials. Therefore, while disclaiming responsibility, it is declared that the responsibility for any decision-making, action, and potential profit and loss in the capital market and cryptocurrency market lies with the trader.