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

saiedrasol412

//version=5strategy("Precision Scalp Pro Mobile Light", overlay=true)// تنظیمات کاربرallowedTF = input.timeframe("5", title="تایمفریم مجاز")useTimeFilter = input.bool(false, title="فعالسازی فیلتر سشن؟")sessionStartHour = input.int(0, title="ساعت شروع سشن (GMT+3)", minval=0, maxval=23)sessionEndHour = input.int(23, title="ساعت پایان سشن (GMT+3)", minval=0, maxval=23)isAllowedTF = (timeframe.period == allowedTF)currentHour = hour(time, "GMT+3")inSession = (currentHour >= sessionStartHour and currentHour <= sessionEndHour)sessionFilter = useTimeFilter ? inSession : true// اندیکاتورهاemaFast = ta.ema(close, 9)emaSlow = ta.ema(close, 21)rsi = ta.rsi(close, 14)// کندلهاbullEngulf = close > open and open < open[1] and close[1] < open[1]bearEngulf = close < open and open > open[1] and close[1] > open[1]isPinBarBull = (high - close) > 2 * (close - low) and close > openisPinBarBear = (close - low) > 2 * (high - close) and close < open// سیگنالهاlongEntry = ta.crossover(emaFast, emaSlow) and rsi > 55 and (bullEngulf or isPinBarBull) and isAllowedTF and sessionFiltershortEntry = ta.crossunder(emaFast, emaSlow) and rsi < 45 and (bearEngulf or isPinBarBear) and isAllowedTF and sessionFilter// ورود خروج استراتژیif (longEntry) strategy.entry("Long", strategy.long)if (shortEntry) strategy.entry("Short", strategy.short)// نمایش EMA و سیگنالهاplot(emaFast, color=color.orange, title="EMA 9")plot(emaSlow, color=color.blue, title="EMA 21")plotshape(longEntry, title="Buy", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")plotshape(shortEntry, title="Sell", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")// هشدارهاalertcondition(longEntry, title="BUY Alert", message="Precision BUY Signal Triggered!")alertcondition(shortEntry, title="SELL Alert", message="Precision SELL Signal Triggered!")
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.