دخول/تسجيل

تحليل التحليل الفني seydkamal123 حول PUMP في رمز في 10‏/8‏/2025

https://sahmeto.com/message/3696901
،التحليل الفني،seydkamal123

// إصدار = 5 استراتیجیة ("EMA Crossover + RSI Filter (Long/Sell) - Simple" ، Overlay = True ، default_qty_type = strategy.percent_of_equity ، default_qty_value = 10 ، initial_capital = 10000) // ===سف fastlen = input.int (9 ، "طول EMA السریع") Slowlen = input.int (21 ، "طول EMA البطیء") rsilen = input.int (14 ، "طول RSI") rsilongmin = input.int (45 ، "Min RSI لفترة طویلة (مرشح)") rsishortmax = input.int (55 ، "Max RSI for Short (filter)") useshorts = input.bool (false ، "السماح للسراویل القصیرة؟ (إذا تم إیقاف تشغیل: إغلاق فقط على البیع)") atrlen = input.int (14 ، "طول ATR (لـ SL)") Atrmult = input.float (2.0 ، "ATR Multiplier (for SL)") takeprofitr = input.float (1.5 ، "خذ الربح (X ATR)" ، الخطوة = 0.1) tradesizepct = input.float (10 ، "حجم الموضع (٪ حقوق الملکیة)" ، الخطوة = 0.1) // ======= مؤشرات ======= emafast = ta.ema (إغلاق ، fastlen) emaslow = ta.ema (إغلاق ، Slowlen) rsival = ta.rsi (إغلاق ، rsilen) Atrval = ta.atr (atrlen) // مؤامرة emas مؤامرة (emafast ، title = "ema fast" ، linewidth = 2) مؤامرة (emaslow ، title = "ema slow" ، linewidth = 2) // ======= SIGNALS ======== // إشارة طویلة: EMA Fast Cross Over Slow و RSI أعلاه مرشح longsignal = ta.crossover (emafast ، emaslow) و (rsival> = rsilongmin) // SELL/SERCE SIGNAN shortsignal = ta.crossunder (emafast ، emaslow) و (rsival <= rsishortmax) // ======= الدخول / الخروج ======= // تحدید الموقف strategy.risk.allow_entry_in (strategy.direction.long) strategy.risk.allow_entry_in (strategy.direction.short) strategy.order_info (صحیح) strategy.exit_on_close (صحیح) الإستراتیجیة. // حساب مستویات أسعار SL و TP (مطلقة) longstopPrice = Close - Atrval * Atrmult longtpprice = إغلاق + atrval * takeprofitr ShortStopPrice = Close + Atrval * Atrmult ShortTpprice = Close - Atrval * takeprofitr // إدارة تغییر حجم الموقف strategy.risk.allow_entry_in (strategy.direction.long) strategy.risk.allow_entry_in (strategy.direction.short) strategy.order_info (صحیح) strategy.entry ("long" ، strategy.long ، qty_percent = tradesizepct ، عندما = longsignal) إذا useshorts strategy.entry ("Short" ، strategy.short ، qty_percent = tradesizepct ، متى = شورتسیج) آخر // گر شort فudal nیast ، ساتنال آورت إذا شورت الاستراتیجیة. // یخرج من الإدخالات (فقط فی حالة وجود الموضع) // تطبیق TP/SL مع الإستراتیجیة. الإستراتیجیة. إذا useshorts الإستراتیجیة. // ======= visual ======== PlotShape (longsignal ، title = "long signal" ، location = location.belowbar ، color = color.new (color.green ، 0) ، style = lape.labelup ، text = "long") PlotShape (ShortSignal ، title = "Sell/Short Signal" ، location = location.abovebar ، color = color.new (color.red ، 0) ، style = labeldown ، text = "sell") // لوحة RSI rsiplot = قطعة أرض (rsival ، title = "rsi" ، display = display.none) // إخفاء فی جزء السعر H1 = Hline (50 ، "RSI 50" ، color = color.gray ، linestle = hline.style_dotted) // ======= ALERTS ======== alertcondition (longsignal ، title = "long signal" ، message = "ema crossover + rsi => long") alertcondition (shortsignal ، title = "sell signal" ، message = "ema crossover + rsi => sell/short") // ======= معلومات (طباعة تسمیة صغیرة) ======== معلومات جدول var = table.new (position.bottom_right ، 1 ، 1) إذا barstate.islast table.cell (info ، 0 ، 0 ، text = "ema:" + str.toString (fastlen) + "/" + str.toString (slowlen) + "RSI:" + Str.ToString (Rsilen) + "ATRX:" + Str.ToString (Atrmult) ، text_color = color.hite ، bgcolor = color.new (color.blue ، 60))

: English
إظهار الرسالة الأصلية
نوع الإشارة: محايد
الإطار الزمني:
1 ساعة
السعر لحظة النشر:
‏0.0030904 US$
شارك
إشارات
الأفضل
قائمة المراقبة