{"id":168,"date":"2026-04-23T08:06:16","date_gmt":"2026-04-23T06:06:16","guid":{"rendered":"https:\/\/strony.info\/AdaptiveHybridSystem\/?p=168"},"modified":"2026-04-26T11:28:09","modified_gmt":"2026-04-26T09:28:09","slug":"institutional-impulse-muzzle-mode-2","status":"publish","type":"post","link":"https:\/\/strony.info\/AdaptiveHybridSystem\/2026\/04\/23\/institutional-impulse-muzzle-mode-2\/","title":{"rendered":"Institutional Impulse + Muzzle Mode"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\" id=\"impulse\">5. Institutional Impulse + Muzzle Mode<\/h2>\n\n\n\n<p>One of the defining mechanisms of the system. It detects institutional impulses (sudden, violent moves generated by large capital) and&nbsp;<strong>immediately changes the system\u2019s behaviour<\/strong>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Impulse Detection<\/h3>\n\n\n\n<p>On every new bar on&nbsp;<code>Inp_Impulse_TF<\/code>&nbsp;(default M1):<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Calculates average range and average volume over the last\u00a0<code>Inp_Impulse_AvgPeriod<\/code>\u00a0(20) candles<\/li>\n\n\n\n<li>Fetches ATR<\/li>\n\n\n\n<li>Calculates\u00a0<code>velocity = |current_close - prev_close| \/ prev_close<\/code><\/li>\n\n\n\n<li><strong>Impulse detected if<\/strong>\u00a0candle range >\u00a0<code>Inp_Impulse_Min_Range_Points<\/code>\u00a0(50 pts) AND at least ONE of the following is true:<\/li>\n<\/ol>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>velocity > Inp_Impulse_Velocity<\/code>\u00a0(0.5% price change)<\/li>\n\n\n\n<li><code>current_range > RangeMult \u00d7 avg_range<\/code>\u00a0(2\u00d7 average)<\/li>\n\n\n\n<li><code>current_range > ATRMult \u00d7 ATR<\/code>\u00a0(2\u00d7 ATR)<\/li>\n\n\n\n<li><code>current_volume > VolMult \u00d7 avg_volume<\/code>\u00a0(1.5\u00d7 average volume)<\/li>\n<\/ul>\n\n\n\n<p><strong>Log:<\/strong>&nbsp;<code>\"Institutional Impulse Detected! Activating MUZZLE MODE for 15 mins.\"<\/code><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Muzzle Mode \u2014 How the System\u2019s Characteristics Change<\/h3>\n\n\n\n<p>After an impulse is detected, the system enters&nbsp;<strong>Muzzle Mode<\/strong>:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th class=\"has-text-align-left\" data-align=\"left\">Parameter<\/th><th class=\"has-text-align-left\" data-align=\"left\">Normal Mode<\/th><th class=\"has-text-align-left\" data-align=\"left\">During Impulse (Muzzle Mode)<\/th><\/tr><\/thead><tbody><tr><td class=\"has-text-align-left\" data-align=\"left\">Min. Smart DI candle body<\/td><td class=\"has-text-align-left\" data-align=\"left\">2 pts<\/td><td class=\"has-text-align-left\" data-align=\"left\"><strong>150 pts<\/strong><\/td><\/tr><tr><td class=\"has-text-align-left\" data-align=\"left\">CCI block level<\/td><td class=\"has-text-align-left\" data-align=\"left\">Inp_Block_CCI_Level (350)<\/td><td class=\"has-text-align-left\" data-align=\"left\"><strong>Inp_Muzzle_CCI_Block_Level (130)<\/strong><\/td><\/tr><tr><td class=\"has-text-align-left\" data-align=\"left\">SELL signals<\/td><td class=\"has-text-align-left\" data-align=\"left\">Allowed<\/td><td class=\"has-text-align-left\" data-align=\"left\"><strong>Blocked if Channel_Down = 0<\/strong><\/td><\/tr><tr><td class=\"has-text-align-left\" data-align=\"left\">Price channel<\/td><td class=\"has-text-align-left\" data-align=\"left\">Standard Dynamic Channel<\/td><td class=\"has-text-align-left\" data-align=\"left\"><strong>Muzzle Box<\/strong>&nbsp;(anchored at impulse price)<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Key point:<\/strong>&nbsp;When&nbsp;<code>Inp_Muzzle_Channel_Points_Down = 0<\/code>, the system operates exclusively as&nbsp;<strong>BUY ONLY<\/strong>&nbsp;during an impulse \u2014 selling is completely blocked. This allows the system to ride the momentum after a breakout move.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Dynamic Muzzle Channel<\/h3>\n\n\n\n<p>At the moment an impulse is detected, the system saves the current BID price (<code>g_Muzzle_BasePrice<\/code>). All subsequent signals must fall within:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Upper:\u00a0<code>base_price + Muzzle_Channel_Points_Up<\/code><\/li>\n\n\n\n<li>Lower:\u00a0<code>base_price - Muzzle_Channel_Points_Down<\/code>\u00a0(or\u00a0<code>-DBL_MAX<\/code>\u00a0when Down = 0)<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Muzzle Mode Deactivation<\/h3>\n\n\n\n<p>Muzzle Mode expires only when ALL of the following conditions are met:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Cooldown elapsed:\u00a0<code>(current_time - impulse_time) > Impulse_Cooldown_Mins \u00d7 60<\/code><\/li>\n\n\n\n<li>Market has calmed:\u00a0<code>current_range \u2264 1.5 \u00d7 avg_range<\/code>\u00a0AND\u00a0<code>current_volume \u2264 1.5 \u00d7 avg_vol<\/code><\/li>\n\n\n\n<li>A local peak or trough has formed: the previous candle has a higher high (peak) or lower low (trough) than its neighbours<\/li>\n<\/ol>\n\n\n\n<p><strong>Log:<\/strong>&nbsp;<code>\"Market calmed down. MUZZLE MODE deactivated.\"<\/code><\/p>\n","protected":false},"excerpt":{"rendered":"<p>5. Institutional Impulse + Muzzle Mode One of the defining mechanisms of the system. It detects institutional impulses (sudden, violent moves generated by large capital) and&nbsp;immediately changes the system\u2019s behaviour. Impulse Detection On every new bar on&nbsp;Inp_Impulse_TF&nbsp;(default M1): Log:&nbsp;&#8220;Institutional Impulse Detected! Activating MUZZLE MODE for 15 mins.&#8221; Muzzle Mode \u2014 How the System\u2019s Characteristics Change &hellip; <a href=\"https:\/\/strony.info\/AdaptiveHybridSystem\/2026\/04\/23\/institutional-impulse-muzzle-mode-2\/\" class=\"more-link\">Continue reading <span class=\"screen-reader-text\">Institutional Impulse + Muzzle Mode<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[7,292,79,324,321,314,318,316,275,313,29,326,310,322,12,319,92,311,320,323,325,23,315,312,317],"class_list":["post-168","post","type-post","status-publish","format-standard","hentry","category-en","tag-adaptivehybridsystem","tag-algorithmictrading","tag-atr","tag-breakoutdetection","tag-buyonlymode","tag-ccifilter","tag-channeltrading","tag-dynamicbehaviourswitching","tag-en","tag-impulsedetection","tag-institutionalimpulse","tag-marketcalmdetection","tag-marketvolatility","tag-momentumriding","tag-mql5","tag-muzzlechannel","tag-muzzlemode","tag-pricevelocity","tag-rangeanalysis","tag-regimedetection","tag-riskcontrol","tag-smartdi","tag-tradingregimechange","tag-volatilitybreakout","tag-volumeanalysis"],"_links":{"self":[{"href":"https:\/\/strony.info\/AdaptiveHybridSystem\/wp-json\/wp\/v2\/posts\/168","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/strony.info\/AdaptiveHybridSystem\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/strony.info\/AdaptiveHybridSystem\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/strony.info\/AdaptiveHybridSystem\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/strony.info\/AdaptiveHybridSystem\/wp-json\/wp\/v2\/comments?post=168"}],"version-history":[{"count":1,"href":"https:\/\/strony.info\/AdaptiveHybridSystem\/wp-json\/wp\/v2\/posts\/168\/revisions"}],"predecessor-version":[{"id":288,"href":"https:\/\/strony.info\/AdaptiveHybridSystem\/wp-json\/wp\/v2\/posts\/168\/revisions\/288"}],"wp:attachment":[{"href":"https:\/\/strony.info\/AdaptiveHybridSystem\/wp-json\/wp\/v2\/media?parent=168"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/strony.info\/AdaptiveHybridSystem\/wp-json\/wp\/v2\/categories?post=168"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/strony.info\/AdaptiveHybridSystem\/wp-json\/wp\/v2\/tags?post=168"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}