
reees
@t_reees
تریدر چه نمادی را توصیه به خرید کرده؟
سابقه خرید
تخمین بازدهی ماه به ماه تریدر
پیام های تریدر
فیلتر
نوع سیگنال

reees

در آوریل گذشته ، من یک شکست ساده از ساختار معکوس بازار BTC خرس را منتشر کردم: با توجه به این ساختار ، من انتظار دارم که یک محلی محلی در حدود 49-50 کیلو دلار تشکیل دهد که در آن فشار خرید حاشیه احتمالاً فروکش می کند ، و به دنبال آن یک فروپاشی شدید برای استفاده مجدد از پشتیبانی/مقاومت قبلی در محدوده کم تا میانه 30K دلار است. پس از آن ، گاوها برای اجرای یک major به مسابقات می روند. (1) من نمی چیزی را در اینجا بخرم (2) معامله گران نوسان عاقلانه کوتاه بود (3) یک تصادف فلش یا افت شدید برای BTC می تواند آخرین فرصت خرید را برای ALT فراهم کند.

reees

Since publishing the Harmonic Pattern Detection, Prediction, and Backtesting Tool, I'm constantly asked if it "repaints". For some reason, people have this deep fear of repainting, as if any indicator that repaints is some evil entity created by the devil himself, sent to earth to trick you into making bad trades. In fact I'm convinced that those most obsessed with repainting don't even actually know what repainting means. And I have news for you: the vast majority of scripts repaint, and there are only a handful of cases where non-repainting scripts are even remotely useful.After reading a comment describing my Harmonics indicator as a "fraud", I was offended deeply enough to waste my time creating this ancillary documentation describing how the indicator "repaints". Q: When are completed patterns drawn? Completed patterns are drawn as soon as they are valid/confirmed, according to your settings.If "Enter after point C" is selected, a pattern is drawn:(1) Only if the incomplete pattern score is above your defined "If score is above" setting.(2) As soon as price hits your defined "Enter at" PRZ levelIf "Enter after point D" is selected, a pattern is drawn:(1) As soon as the pattern is valid, as defined in your "Pattern validation length" setting. This is set to 1 by default, which means that the pattern will be drawn 1 bar after point D. This doesn't mean the script is being deceptive by drawing a pattern "in the past", it's simply drawing the pattern as soon as it's been validated. Any signal worth its weight in piss needs to be validated in some way or another, which usually takes some amount of time. It's not magic. (2) Only if the completed pattern score is above your defined "If score is above" setting(3) Only if price is within your defined "Enter at limit % away from D" AND on a bar within your defined "Entry window (time limit)" settings. Q: Are completed patterns RE-drawn?There are certain cases where we redraw a pattern when a new point D forms. The essence of a pattern is points XABC, and point D is fluid within the Potential Reversal Zone. By drawing a new point D, the script isn't being desceptive, but simply trying to give the most valuable/up-to-date information it has at the time. This repainting is done in good faith, as it respects any entries and targets that may have already been hit and doesn't affect the backtesting results in any way.Q: When are completed patterns redrawn?Basically, if a new point D forms for the same XABC of the same pattern type, we run some checks to determine if we should keep the old pattern, or draw a new pattern. - If a target has already been hit, we keep the old pattern AND draw the new pattern. - If no target has been hit, we will display the higher scoring of the two patterns. - If there was already an entry hit on the initial pattern, that entry will be inherited by the new pattern, so it upholds the integrity of backtesting. I'm pasting this logic below for anyone who wants to see exactly what it's doing but is too lazy to look at the open source code. A picture is worth a thousand words, so here's an example:Isn't it better to see the new pattern with a better point D instead of keeping the old/weaker pattern? Now we have updated information, and adjusted targets relative to a higher scoring point D. If you had missed the entry on the initial pattern, wouldn't you want to know that now we have an even stronger pattern? Point D redraw code:Pine Script®// Add pattern to completed pattern structures addValidPattern(t,h1,h2,h3,h4,h5,h6,xX,xY,aX,aY,bX,bY,cX,cY,dX,dY) => string[] s = na bool lasteH = na int lasteX = na float lasteY = na float lastScore = na tp = tp(h1,h2,h3,h4,h5,h6) m = typeToMatrix(t,tp) if matrix.rows(m) > 0 // check last pattern of same type last = matrix.row(m,matrix.rows(m)-1) [lt,lh1,lh2,lh3,lh4,lh5,lh6,lxX,lxY,laX,laY,lbX,lbY,lcX,lcY,ldX,ldY,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,lt1H,lt2H,leH,leX,leY,lscore] = unstringify(last) lastScore := lscore // if A, B or C is different = new pattern if aX!=laX or bX!=lbX or cX!=lcX s := stringify(t,h1,h2,h3,h4,h5,h6,xX,xY,aX,aY,bX,bY,cX,cY,dX,dY) addCompleted(t,h1,h2,h3,h4,h5,h6,s) // if ABC are same but D is beyond last pattern's D, replace it with this one. We want to draw the // new/updated pattern and calculate its updated score, but maintain any entry/targets that have // already been hit. else if (t and dY < ldY) or (t==false and dY > ldY) if leH and na(lt1H) lasteH := true // inherit entry from last pattern (trade is active) lasteX := leX lasteY := leY s := stringify(t,h1,h2,h3,h4,h5,h6,xX,xY,aX,aY,bX,bY,cX,cY,dX,dY,lt1H,lt2H,leH,leX,leY) else s := stringify(t,h1,h2,h3,h4,h5,h6,xX,xY,aX,aY,bX,bY,cX,cY,dX,dY) // if lastScore > getScore(s) // if lower score, keep last pattern s := na else if not na(lt1H) // if last pattern trade closed, just add the new pattern addCompleted(t,h1,h2,h3,h4,h5,h6,s) else // else, remove the last pattern in favor of the new one lpid = pid(tp,lxX,laX,lbX,lcX,ldX) removeCompleted(lpid,t,tp) addCompleted(t,h1,h2,h3,h4,h5,h6,s) else s := stringify(t,h1,h2,h3,h4,h5,h6,xX,xY,aX,aY,bX,bY,cX,cY,dX,dY) addCompleted(t,h1,h2,h3,h4,h5,h6,s) // Update newly added pattern if not na(s) // update entry, if necessary if lasteH draw.eHitLbl(lasteX,lasteY,dX,dY,t,true) else score = getScore(s) [eHit,eX,eY] = entryHit(t,tp,xX,cX,xY,aY,bY,cY,dX,dY,score) if eHit draw.eHitLbl(eX,eY,dX,dY,t) pid = pid(tp,xX,aX,bX,cX,dX) s := setEntry(s,eHit,eX,eY) l = updateCompleted(pid,t,tp,s)Expand 51 linesNote: Incomplete/Potential pattern repainting is a bit more complicated, and will be addressed after I iron out a few remaining issues.CORRECTION: Patterns after a valid point D will be drawn regardless of whether the score meets the "If score is above" entry requirement. That requirement only applies to entering a trade. If the score does not meet the entry requirement, we will show the "no entry" icon on the label to indicate that a trade has not/will not be entered for this pattern. The reason we still draw the pattern is so that you know it exists, and can use that information to refine your settings. e.g. maybe you decide that your "If entry is above" requirement is to restrictive, and want to include lower scoring patterns.A note on real-time bar repainting: Patterns can be repainted during real-time bars until the close of the last validation length bar (defined in the "Pattern validation length" setting). The default value is 1, meaning that a pattern may be redrawn on 1 real-time bar after Point D, until that bar closes. After that bar has closed, a completed pattern will not repaint (with the exception of the scenario described above).

reees

تقریباً 8 ماه از آن گذشته است که من در مورد مقاومت بحرانی در اینجا (1750-1800 دلار) ارسال کردم ، که از آن زمان تاکنون قیمت آن نتوانسته است از بین برود. احساس می کند که این زمان ممکن است متفاوت باشد. از نمایش لذت ببرید.

reees

تا به حال آن بازی را "چراغ قرمز ، چراغ سبز" انجام داده اید؟ بنابراین bitcoin Tether تسلط برای چند سال گذشته تا حدودی در یک کانال در حال افزایش نوسان کرده است. و مرزهای فوقانی و پایین این کانال می تواند حرکت ماکرو قیمت بیت کوین را پیش بینی کند. توجه کنید که وقتی تسلط به بالای کانال می رسد - چراغ سبز! BTC با یک ضربه صعودی بالاتر می رود. و ، به طور طبیعی ، وقتی USDT .d به پایین کانال می رسد ، چه می بینیم؟ چراغ قرمز! BTC گاوها یخ زده و قیمت آن پایین تر است. این مطمئناً یک سیگنال معاملاتی مستقل نیست ، فقط یکی از الگوهای جالب توجه برای توجه است.

reees

تجزیه و تحلیل ساده از سه چرخه آخر. نظریه پردازان چهار ساله چرخه به شما گفت که ما برای شروع یک گاو نر بزرگ در راه هستیم تا از ابتدای سال 2024 شروع کنیم. به دنبال یک دوره ادغام و آزمایش مجدد از پشتیبانی/مقاومت قبلی. این جایی است که اکنون در آن هستیم. اگر این الگوی وجود داشته باشد ، باید انتظار داشته باشیم که تا پایان سال 2023 مقاومت را به عقب برگردانیم و یک گاو نر جدید را در اوایل سال 2024 شروع کنید. اگر هنوز شرط بندی را در بازخوانی> 80 ٪ از بالا شرط می بندید ، شرط می بندم که شما از شانس خارج شده اید. Super گاو. من در 30 سالگی انتظار آزمایش مجدد S/R قبلی را داشتم ، اما در این مرحله بسیار بعید است. New Ath در Q1 از انتظارات جلوتر است. باید یک سال سرگرم کننده باشد.

reees

دیدن علائم بیشتر از پایین آمدن از آنجا که قیمت به طور پیوسته خطوط نزولی را می شکند و تصمیم گسترده ای قریب الوقوع است. RSI هفتگی به 36 فرو رفت و در آنجا دیدیم که پایین ترین سال 2018 ، 2019 و 2020 را دیدیم و واگرایی به نظر می رسد صعودی است. برای سرمایه گذار بلند مدت ، فکر می کنم ریسک/پاداش حتی در یک سناریوی بازار خرس نیز به نفع خود باشد. برای معامله گر کوتاه مدت نوسان ، من فکر می کنم خطر استراحت در روند نزولی خیلی زیاد است ، مگر اینکه بتوانید از بین رفتن زیر 0.90 دلار معده کنید.

reees

برای معامله گران باتجربه ، این آشکار بود. اما برای سرمایه گذار گاه به گاه ، این ساده ترین روش برای تعیین زمان خرید bitcoin است. در واقع ، من می گویم که نزدیک به "چیز مطمئن" است که در بازار رمزنگاری یافت. می بینید که دو پایین چرخه آخر هنگامی رخ داده است که RSI هفتگی زیر 30 فروخته می شود. در حالی که هیچ تضمینی وجود ندارد که RSI به زودی به 30 بار برسد ، اگر این کار را انجام دهد ، می توانید شرط بندی کنید که احتمال بسیار بالایی وجود دارد که قیمت آن در پایین یا نزدیک است. با این حال ، من هنوز هم فکر می کنم یک فرصت معقول وجود دارد که این چرخه گاو نر به پایان نرسد: بنابراین من در هر شیب از اینجا به پایین می توانم به طور متوسط استفاده کنم. یک نکته شفاف در مورد bitcoin و RSI: برای اکثر دارایی ها ، RSI> 70 نشان می دهد که بیش از حد آن ، و RSI <30 به معنای Oversold. نمودارهای بسیاری را مشاهده کرد که RSI قبل از پایین آمدن قیمت به زیر 30 می رود. این فقط یک قاعده کلی از انگشت شست است و لزوماً برای bitcoin اینگونه نیست. برای من ، bitcoin تا RSI> 80 بیش از حد مورد استفاده قرار نمی گیرد ، و در هر جایی زیر 40 قرار نمی گیرد ، بنابراین من استدلال می کنم که bitcoin همانطور که ما صحبت می کنیم در قلمرو فراز و نشیب می شود:

reees

هنوز در مسیر ایده ALGO قبلی من درست است، اما در حال تجدید نظر در اهداف آینده بر اساس آخرین data. به طور خاص با اشاره به حمایت قوی جدید در 1.52 دلار و آن فیتیله دیوانه تا 2.99 دلار، که 3.00 دلار را به یک هدف عالی تبدیل می کند. در ایده قبلی، من اشاره کردم که ALGO ممکن است یک نامزد خوب CBDC باشد. حدس بزنید چه کسی اکنون از ALGO برای زیرساخت بلاک چین خود استفاده می کند؟ السالوادور nasdaq.com/articles/السالوادور-عمیقتر-به-بلاکچین-الگووراند-نگاه-بیشتر-۲۰۲۱-۱۱-۰۲

reees

MANA و SAND اخیراً همه سرگرم کننده بوده اند و AXS صبورانه تثبیت شده اند. به نظر می رسد تجمیع انجام شده است. صعودی محتمل است من به دنبال استراحت بالای 145 دلار هستم. تصویر بزرگ من هنوز فکر می کنم این یکی فضای زیادی برای اجرا دارد. به یاد می آورید آخرین بار چه اتفاقی افتاد؟

reees

جهش کامل در خط روند حدود 100 دلار و به دنبال شلیک بالاتر. اهداف بر اساس مقاومت مورد انتظار که در آن فشار خرید 2 برابر کاهش می یابد. من خرید در این مرحله پایانی بازار صعودی را دوست ندارم، اما قطعاً میتوانید موقعیت خود را از طریق تجارت ایجاد کنید، یعنی فروش در این سطوح و خرید بیشتر در نزول بعدی. 155 دلار و 200 دلار قویترین نامزدهای مقاومت به نظر میرسند، بنابراین در اینجاست که احتمالاً بیشترین سود را برای دلار خود داشت (از نظر تخفیف برای ورود مجدد در اصلاح). اگر قیمت به 200 دلار برسد، قطعاً به فکر گرفتن سود قابل توجه و کاهش قابل توجه موقعیت AVAX خود هستم (شاید 50-75٪).
سلب مسئولیت
هر محتوا و مطالب مندرج در سایت و کانالهای رسمی ارتباطی سهمتو، جمعبندی نظرات و تحلیلهای شخصی و غیر تعهد آور بوده و هیچگونه توصیهای مبنی بر خرید، فروش، ورود و یا خروج از بازار بورس و ارز دیجیتال نمی باشد. همچنین کلیه اخبار و تحلیلهای مندرج در سایت و کانالها، صرفا بازنشر اطلاعات از منابع رسمی و غیر رسمی داخلی و خارجی است و بدیهی است استفاده کنندگان محتوای مذکور، مسئول پیگیری و حصول اطمینان از اصالت و درستی مطالب هستند. از این رو ضمن سلب مسئولیت اعلام میدارد مسئولیت هرنوع تصمیم گیری و اقدام و سود و زیان احتمالی در بازار سرمایه و ارز دیجیتال، با شخص معامله گر است.