Wednesday, November 5, 2025
No Result
View All Result
The Financial Observer
  • Home
  • Business
  • Economy
  • Stocks
  • Markets
  • Investing
  • Crypto
  • PF
  • Startups
  • Forex
  • Fintech
  • Real Estate
  • Analysis
  • Home
  • Business
  • Economy
  • Stocks
  • Markets
  • Investing
  • Crypto
  • PF
  • Startups
  • Forex
  • Fintech
  • Real Estate
  • Analysis
No Result
View All Result
The Financial Observer
No Result
View All Result
Home Forex

Create EA (iCustom) with SMART MONEY BREAKOUT CHANNELS Scanner Indicator – Analytics & Forecasts – 2 September 2025

Create EA (iCustom) with SMART MONEY BREAKOUT CHANNELS Scanner Indicator – Analytics & Forecasts – 2 September 2025
Share on FacebookShare on Twitter


To make use of the Good Cash Breakout Channels Scanner indicator (ver.1.20 – obtain hyperlink on the finish of the article) for EA, you’ll be able to see the directions beneath:

a. The buffers within the indicator and their indexes:

MT5 buffer indexes:

MT4 buffer indexes: 

b. Required enter parameters:

– To make use of iCustom, it’s good to fill in all of the parameters, as a result of the indicator makes use of a scanner, so the parameters should be entered appropriately to keep away from conflicts. Beneath are the required and necessary enter parameters, you’ll be able to change their default values ​​as you want:

enter int iMaxBarsBack = 5000;
enter bool overlap = false;
enter bool sturdy = true;
enter double body_ratio = –100;
enter int length_ = 100;
enter int length14 = 14;
enter int stdev_length = 14;
enter int ivol_type = 0;

enter int smoothedvol_length = 20;
enter int duration_length_min = 10;
enter ENUM_TIMEFRAMES tf = PERIOD_M1;
enter int iID_sc = 99;

c. iCustom:

MT4 Model 1.20:

double getValueBuffer(string fSymbol,          
                      ENUM_TIMEFRAMES fTimeframe,  
                      int fIndex,            
                      int fShift                
                     )
  {
   string indicatorCustomName = “MarketGood Breakout Channels MT4”;
   return iCustom(fSymbol, fTimeframe, indicatorCustomName, iMaxBarsBack, “”, overlap, sturdy, body_ratio, length_, length14, stdev_length, “”, false, 0, ivol_type, smoothedvol_length, duration_length_min, 1, tf, 0.5, false, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, “”, false, false, false, false, false, false, “”, “”, false, “”, 0, 0, “”, false, 0, 0, 0, false, 0, 0, 0, 0, 0, 0, 0, 0, “”, 0, iID_sc,
                  fIndex, fShift);
  }

MT5 Model 1.20:

double getValueBuffer(string fSymbol,          
                      ENUM_TIMEFRAMES fTimeframe,  
                      int Index,            
                      int Shift                
                     )
  {
   string indicatorCustomName = “MarketGood Breakout Channels MT5 Scanner”;
   int deal with = iCustom(fSymbol, fTimeframe, indicatorCustomName, iMaxBarsBack, “”, overlap, sturdy, body_ratio, length_, length14, stdev_length, “”, false, 0, ivol_type, smoothedvol_length, duration_length_min, 1, tf, 0.5, “”, false, 0, 0, 0, 0, 0, 0, 0, 0, 0, “”, false, false, false, false, false, false, “”, “”, false, “”, 0, 0, “”, false, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, “”, 0, iID_sc);
   if(deal with < 0)
      return(EMPTY_VALUE);
   else
     {
      double buf[];
      if(CopyBuffer(deal with, Index, Shift, 1, buf) > 0)
         return(buf[0]);
     }
   return EMPTY_VALUE;
  }

d. Use  getValueBuffer perform for EA

You employ the getValueBuffer perform to get the worth wanted to make use of for the EA.

To verify that the buffer has a worth, it’s good to examine it with EMPTY_VALUE.

Listed below are some examples to substantiate that the earlier bar buffers (shift = 1) have a worth:


   int shift  = 1;
   bool buySignal = getValueBuffer(_Symbol, PERIOD_CURRENT, 0, shift) != EMPTY_VALUE;
   bool sellSignal = getValueBuffer(_Symbol, PERIOD_CURRENT, 1, shift) != EMPTY_VALUE;


   int shift_channel = shift + 1;

   double upperLevelMT5 = getValueBuffer(_Symbol, PERIOD_CURRENT, 8, shift_channel);
   double middleLevelMT5 = getValueBuffer(_Symbol, PERIOD_CURRENT, 9, shift_channel);
   double lowerLevelMT5 = getValueBuffer(_Symbol, PERIOD_CURRENT, 10, shift_channel);
   double upVolumeMT5 = getValueBuffer(_Symbol, PERIOD_CURRENT, 11, shift_channel);
   double dnVolumeMT5 = getValueBuffer(_Symbol, PERIOD_CURRENT, 12, shift_channel);
   double deltaVolumeMT5 = getValueBuffer(_Symbol, PERIOD_CURRENT, 13, shift_channel);

   double upperLevelMT4 = getValueBuffer(_Symbol, PERIOD_CURRENT, 14, shift_channel);
   double middleLevelMT4 = getValueBuffer(_Symbol, PERIOD_CURRENT, 15, shift_channel);
   double lowerLevelMT4 = getValueBuffer(_Symbol, PERIOD_CURRENT, 16, shift_channel);
   double upVolumeMT4 = getValueBuffer(_Symbol, PERIOD_CURRENT, 17, shift_channel);
   double dnVolumeMT4 = getValueBuffer(_Symbol, PERIOD_CURRENT, 18, shift_channel);
   double deltaVolumeMT4 = getValueBuffer(_Symbol, PERIOD_CURRENT, 19, shift_channel);

Hopefully this text can assist you extra simply automate alerts from the Good Cash Breakout Channels Scanner indicator into EA.

You possibly can obtain the indicator at:



Source link

Tags: AnalyticsBreakoutChannelsCreateForecastsiCustomIndicatorMoneyScannerSeptemberSmartSMART MONEY BREAKOUT CHANNELS
Previous Post

Episode 224. “I took on debt to help my family. Now she won’t marry me.”

Next Post

Key metrics from Signet Jewelers’ (SIG) Q2 2026 earnings results

Related Posts

How I Built a Hybrid, ML-Powered EA for MT5 (And Why a “Black Box” Isn’t Enough) – Neural Networks – 4 November 2025
Forex

How I Built a Hybrid, ML-Powered EA for MT5 (And Why a “Black Box” Isn’t Enough) – Neural Networks – 4 November 2025

November 4, 2025
Doda Trend MT4 Indicator – ForexMT4Indicators.com
Forex

Doda Trend MT4 Indicator – ForexMT4Indicators.com

November 4, 2025
China, Russia agree to deepen all-round cooperation under strategic partnership
Forex

China, Russia agree to deepen all-round cooperation under strategic partnership

November 4, 2025
Major Update: Introducing 3 New Optimized Set Files for FTMO Smart Trader EA – My Trading – 1 November 2025
Forex

Major Update: Introducing 3 New Optimized Set Files for FTMO Smart Trader EA – My Trading – 1 November 2025

November 2, 2025
Doo Group’s Restructuring; Why Bank of England Is Wary of AI Valuations
Forex

Doo Group’s Restructuring; Why Bank of England Is Wary of AI Valuations

November 3, 2025
3 Stochastics in One MT4 Indicator
Forex

3 Stochastics in One MT4 Indicator

November 1, 2025
Next Post
Key metrics from Signet Jewelers’ (SIG) Q2 2026 earnings results

Key metrics from Signet Jewelers’ (SIG) Q2 2026 earnings results

eToro Sees Assets Rise to .7B in July–August as Funded Accounts Hit 3.7M

eToro Sees Assets Rise to $19.7B in July–August as Funded Accounts Hit 3.7M

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

  • Trending
  • Comments
  • Latest
10 High Dividend Stocks Trading Near 52 Week Lows

10 High Dividend Stocks Trading Near 52 Week Lows

October 22, 2025
Robinhood Moves Into Mortgage Lending in Partnership With Sage Home Loans

Robinhood Moves Into Mortgage Lending in Partnership With Sage Home Loans

November 4, 2025
JetBlue Adds Perks for Families, Cuts for Entry-Level Elites

JetBlue Adds Perks for Families, Cuts for Entry-Level Elites

October 18, 2025
Landmark ruling in India treats XRP as property, not speculation

Landmark ruling in India treats XRP as property, not speculation

October 28, 2025
How is Farm ERP Market Transforming the Future of Digital Agriculture?

How is Farm ERP Market Transforming the Future of Digital Agriculture?

November 3, 2025
CyberRidge raises m to thwart post quantum threat

CyberRidge raises $26m to thwart post quantum threat

October 28, 2025
Politics And The Markets 11/05/25

Politics And The Markets 11/05/25

November 5, 2025
HeyMax Debuts in Hong Kong, Partnering with Cathay to Drive Regional Growth

HeyMax Debuts in Hong Kong, Partnering with Cathay to Drive Regional Growth

November 5, 2025
InnovAge Holding Corp. (INNV) Q1 2026 Earnings Call Transcript

InnovAge Holding Corp. (INNV) Q1 2026 Earnings Call Transcript

November 5, 2025
How Ripple built a blockchain bank without a banking license

How Ripple built a blockchain bank without a banking license

November 5, 2025
How I Built a Hybrid, ML-Powered EA for MT5 (And Why a “Black Box” Isn’t Enough) – Neural Networks – 4 November 2025

How I Built a Hybrid, ML-Powered EA for MT5 (And Why a “Black Box” Isn’t Enough) – Neural Networks – 4 November 2025

November 4, 2025
BulkEdit.Tools Review: Simplify Batch Image Editing with Speed and Precision

BulkEdit.Tools Review: Simplify Batch Image Editing with Speed and Precision

November 4, 2025
The Financial Observer

Get the latest financial news, expert analysis, and in-depth reports from The Financial Observer. Stay ahead in the world of finance with up-to-date trends, market insights, and more.

Categories

  • Business
  • Cryptocurrency
  • Economy
  • Fintech
  • Forex
  • Investing
  • Market Analysis
  • Markets
  • Personal Finance
  • Real Estate
  • Startups
  • Stock Market
  • Uncategorized

Latest Posts

  • Politics And The Markets 11/05/25
  • HeyMax Debuts in Hong Kong, Partnering with Cathay to Drive Regional Growth
  • InnovAge Holding Corp. (INNV) Q1 2026 Earnings Call Transcript
  • About Us
  • Advertise with Us
  • Disclaimer
  • Privacy Policy
  • DMCA
  • Cookie Privacy Policy
  • Terms and Conditions
  • Contact us

Copyright © 2025 The Financial Observer.
The Financial Observer is not responsible for the content of external sites.

No Result
View All Result
  • Home
  • Business
  • Economy
  • Stocks
  • Markets
  • Investing
  • Crypto
  • PF
  • Startups
  • Forex
  • Fintech
  • Real Estate
  • Analysis

Copyright © 2025 The Financial Observer.
The Financial Observer is not responsible for the content of external sites.