Free indication fo MT-4. (digital filter) and other.

Free MetaTrader 4 Indicator i-5MA

Installation:

1. Copy i-5MA.mq4 file to indicators folder (default path : C://Program Files/MetaTrade 4/experts/indicators)
2. Run MetaTrader and add indicator to chart.
Usage:
Than higher blue histogram, than strong buy signal.
Than higher red histogram, than strong sell signal.
Upper Histogramm:
Draws level 1 if MA1 > MA2
Draws level 2 if MA1 > MA2 and MA2 > MA3
Draws level 3 if MA1 > MA2 and MA2 > MA3 and MA3 > MA4
Draws level 4 if MA1 > MA2 and MA2 > MA3 and MA3 > MA4 and MA4 > MA5
Lower Histogramm:
Draws level 1 if MA1 < MA2
Draws level 2 if MA1 < MA2 and MA2 < MA3
Draws level 3 if MA1 < MA2 and MA2 < MA3 and MA3 < MA4
Draws level 4 if MA1 < MA2 and MA2 < MA3 and MA3 < MA4 and MA4 < MA5


MQL4:
#property copyright "© 2009 BJF Trading Group inc."
#property link      "www.iticsoftware.com"
 
#define major   1
#define minor   0
 
#property indicator_separate_window
#property  indicator_buffers 2
#property  indicator_color1  DodgerBlue
#property  indicator_color2  Red
#property  indicator_style1  DRAW_HISTOGRAM
#property  indicator_style2  DRAW_HISTOGRAM
#property  indicator_width1  2
#property  indicator_width2  2
 
#property  indicator_maximum 5.0
#property  indicator_minimum -5.0
 
 
extern int MA1.period = 5;
extern int MA1.shift = 0;
extern int MA1.method = MODE_EMA;
extern int MA1.applied_price = PRICE_CLOSE;
 
extern int MA2.period = 10;
extern int MA2.shift = 0;
extern int MA2.method = MODE_EMA;
extern int MA2.applied_price = PRICE_CLOSE;
 
extern int MA3.period = 20;
extern int MA3.shift = 0;
extern int MA3.method = MODE_EMA;
extern int MA3.applied_price = PRICE_CLOSE;
 
extern int MA4.period = 50;
extern int MA4.shift = 0;
extern int MA4.method = MODE_EMA;
extern int MA4.applied_price = PRICE_CLOSE;
 
extern int MA5.period = 100;
extern int MA5.shift = 0;
extern int MA5.method = MODE_EMA;
extern int MA5.applied_price = PRICE_CLOSE;
 
 
double MAUpperBuf[];
double MALowerBuf[];
 
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
void init() 
{
  SetIndexBuffer(0, MAUpperBuf);
  SetIndexBuffer(1, MALowerBuf);
 
  SetIndexStyle(0, DRAW_HISTOGRAM);
  SetIndexStyle(1, DRAW_HISTOGRAM);
 
  SetIndexEmptyValue(0, 0.0);
  SetIndexEmptyValue(1, 0.0);
 
/*  
  SetLevelValue(1, 1.0);
  SetLevelValue(2, 2.0);
  SetLevelValue(3, 3.0);
  SetLevelValue(4, -1.0);
  SetLevelValue(5, -2.0);
  SetLevelValue(6, -3.0);
*/
 
  IndicatorShortName("i-5MA");
}
 
void deinit() 
{
}
 
void start() 
{  
  int counted_bars = IndicatorCounted();
  if (counted_bars < 0) return;
  if (counted_bars > 0) counted_bars--;
 
  int limit = Bars-counted_bars;
  for (int i=limit-1; i >= 0; i--) 
  {
    double MA1 = iMA(NULL, 0, MA1.period, MA1.shift, MA1.method, MA1.applied_price, i);
    double MA2 = iMA(NULL, 0, MA2.period, MA2.shift, MA2.method, MA2.applied_price, i);
    double MA3 = iMA(NULL, 0, MA3.period, MA3.shift, MA3.method, MA3.applied_price, i);
    double MA4 = iMA(NULL, 0, MA4.period, MA4.shift, MA4.method, MA4.applied_price, i);
    double MA5 = iMA(NULL, 0, MA5.period, MA5.shift, MA5.method, MA5.applied_price, i);
 
    MAUpperBuf[i] = 0.0;
    MALowerBuf[i] = 0.0;
 
    if (MA1 > MA2) MAUpperBuf[i] = 1.0;
    if (MA1 > MA2 && MA2 > MA3) MAUpperBuf[i] = 2.0;
    if (MA1 > MA2 && MA2 > MA3 && MA3 > MA4) MAUpperBuf[i] = 3.0;
    if (MA1 > MA2 && MA2 > MA3 && MA3 > MA4 && MA4 > MA5) MAUpperBuf[i] = 4.0;
 
    if (MA1 < MA2) MALowerBuf[i] = -1.0;
    if (MA1 < MA2 && MA2 < MA3) MALowerBuf[i] = -2.0;
    if (MA1 < MA2 && MA2 < MA3 && MA3 < MA4) MALowerBuf[i] = -3.0;
    if (MA1 < MA2 && MA2 < MA3 && MA3 < MA4 && MA4 < MA5) MALowerBuf[i] = -4.0;
 
  }
}



2009-Dec-19_5MA.zip
 
Last edited by a moderator:
Free Forex MetaTrader Indicator i-PSMA.mq4

Checks signals from two indicators: Moving Averages and PSAR

When two indicators grow down – red bars (sell signal)
When two indicators grow – white bars (buy signal)

Download Indicator for FREE



extern int MA.ma_method = MODE_EMA;
It can be any of the following values:
Constant Value Description
MODE_SMA 0 Simple moving average,
MODE_EMA 1 Exponential moving average,
MODE_SMMA 2 Smoothed moving average,
MODE_LWMA 3 Linear weighted moving average.


extern int MA.applied_price = PRICE_CLOSE;

It can be any of the following values:
Constant Value Description
PRICE_CLOSE 0 Close price.
PRICE_OPEN 1 Open price.
PRICE_HIGH 2 High price.
PRICE_LOW 3 Low price.
PRICE_MEDIAN 4 Median price, (high+low)/2.
PRICE_TYPICAL 5 Typical price, (high+low+close)/3.
PRICE_WEIGHTED 6 Weighted close price, (high+low+close+close)/4.
 
Metatrader Indicators Testing

I would like to explain how to test metatrader indicator on historical data. For example, we
can test our new CCI-divergence metatrader indicator on gbpusd curency, time frame H1.

1. Open GBPUSD chart time frame H1
2. On the left hand side, look for the "Navigator" window
3. Under the "Common" tab, look into the "Expert Advisors" directory
4. Drag (Click and drag) the expert advisor (we recommend to use standard build-in expert
advisor MACD) onto the chart
5. Run metatrader strategy tester for expert advisor in "visual mode"
6. Strategy tester should open new GBPUSD H1 window
7. Press || (pause) button (Strategy tester)
8. Under the "Common" tab, look into the "Custom Indicators" directory
9. Drag (Click and drag) the indicator onto the chart (visual)
10. Press Run button (Strategy tester)
2010-Aug-13103518.PNG

Learn more about our metatrader indicators.

BJF Trading Group inc.
 

Attachments

Forex Divergence Options

We have added divergence indicators parameters explanation.
=>>> Look attached file.
and two new articles:
Bollinger Bands Divergence Indicator generation III
=>>> Look attached file.
Metatrader Indicator OBV Divergence Generation 3
=>>> Look attached file.

Best regards,
BJF Trading Group inc.
 

Attachments

For your attention new Elliott Wave Indicator for metatrader 4 platform.

Elliott Indicator determines in fully automated mode and real-time Elliot waves. Indicators works under Metatrader 4 terminal control and contains two parts:
Metatrader 4 Indicator
Elliott Wave Application

Elliott Wave Application is calculating about two thousand possible waves (patterns) and wave combinations, taking into account every old and modern Elliott Wave rule, every Fibonacci ratio and the fractal nature of the chart.

After calculations, the preferred (combinations with highest probability) Elliott Wave count automatically is displayed in your chart and all patterns descriptions, probabilities and rules for this patterns will be displayed in Elliott Wave Application .
Also on the chart Indicator will show the rays indicating the most probable direction of the waves.
More information =>>> elliottindicator.com

10Nov241834.PNG


Best regards,
BJF Trading Group inc. =>>> iticsoftware.com
 

Attachments

Last edited:
Expert Advisors - The Benefits

* Our Expert Advisors (Forex Expert Advisors) can be easily installed, do not require any
special knowledge, and are widely used by beginner and skilled traders. You can start to trade
bymeans of our MetaTrader Expert Advisors in an hour after purchase.
* All Mechanical Trading Systems (MetaTrader Expert Advisors) work under control of a
trading terminal - MetaTrader 4, which is free of charge.
* You can start to work with our MetaTrader Expert Advisors opening a real account for $100-
$3000 or you can begin to work on demo account.
* Our MetaTrader Expert Advisors are tested with the greatest possible quality by modeling
them on 90% of long sites of historical data as well as real accounts.
* Buying our MetaTrader Expert Advisors means you are receiving free of charge and 24/7
support.
* We do not take additional money for the updated versions of our MetaTrader Expert
Advisors. All updates are sent for free. We work under a flexible system of discounts and
bonuses. =>>>iticsoftware.com/expert-advisors

10dec171303.png

=>>>img827.imageshack.us/img827/2505/10dec171319.pdf<<<=
 
*We appreciate your business!As a reward for staying a BJF Trading Group
_inc. customer, please download for free new metatrader expert advisor "3 EMA".
*We have received a lot of question about free expert advisor
_3EMA.Download link:
*=>>>iticsoftware.com/free-expert-advisor-3EMA.zip
*The main request is about optimization parameters: start - step - end.
*Optimization parameters for free expert advisor 3EMA:

*StopLoss = 250; //from 40 to 250 step 10
*TakeProfit = 100; //from 40 to 350 step 10
*FastMA.Period = 20; //from 1 to 50 step 5
*FastMA.ma_shift = 0; //from 1 to 50 step 5
*SlowMA.Period = 50; //from 1 to 100 step 5
*SlowMA.ma_shift = 0; //from 1 to 100 step 5
*SlowMA2.Period = 100; //from 1 to 200 step 5
*SlowMA2.ma_shift = 0; //from 1 to 200 step 5

*Best regards,
*BJF Trading Group inc..
 

Attachments

Forex software: These are the software basically for brokerage companies and forex traders. The forex software being provided by us shall surely make the process of trading for forex simplified. The requirements for forex trading online are similar to that of forex trading required for any other security. The tools that are being provided by us include DukasCopy platform, Metatrader 4 platform, MBTrading Navigator etc. The best tool that makes it convenient for you to club with third party is application program interface that is also being provided to you.
With us you can get comprehensive source of all required forex tools available over web.

Learn more...
MQL5:
https://docs.google.com/document/pub?id=1CFkrrO3TtmVjtNzAajm_vNv4Ph4UiCp2gPKFvHJ05OE
     ^^^ OR vvv
http://img651.imageshack.us/img651/7696/11m091.pdf
     ^^^ OR vvv
A t t a c h m e n t
11m09.png
 

Attachments

Last edited by a moderator:
PowerTradeCopier version 1.1.0.483
mane11apr17.png

1) Account Copier Software now records IP address of computer from which it was started and from which order was copied (this can be used to check possible collisions in Provider mode).
2) Added Slippage TimeOut setting. If order copying failed due to slippage, Account Copier program will later try to open this order again during TimeOut minutes. After that it will record the log entry and remove the order.

http://img16.imageshack.us/img16/2397/11apr15.pdf
^^^ OR vvv
https://docs.google.com/document/pub?id=1w-PDSegps-PhuT8fC4xXNTYdwOL0NH3avx3mPvkWpm0
^^^ OR vvv
A t t a c h m e n t
 

Attachments

Attachments

Enjoy Father's Day 20% discount (6 days only) for all our products. Visit our website: iticsoftware for more information
===========================
11jun181.png

For your attention new Trade Assisting Expert Advisor "TrailingStop-Toolkit".
This EA will help to improve performance of your expert advisor or manual trading system.
It can be used for trade by expert advisers and for manual trading as well.
Expert advisor contains 6 different TrailingStops (Standard, High/Low, ATR, Fractals, PSAR, ProfitPcnt), work days settings and work time settings.
Learn more……

http://iticsoftware.com/postimages2//11Jun17.html
^^^ OR vvv
http://img688.imageshack.us/img688/4132/11jun17.pdf
^^^ OR vvv
https://docs.google.com/document/pub?id=1DLeiJ7n7V4p1OjLGK6TW-zAFx-AjBcFFKFrrpMBN9BE
^^^ OR vvv
A t t a c h m e n t
 

Attachments

MT4 Copier Software:

Copy trades from several Metatrader 4 accounts to several Metatrader 4 accounts simultaneously.
ut11jul051.png

1. Forex Account Copier based on mt4 api - do not need to run mt4 terminals, delay =0
You can also copy trades to currenex
http://multiterminal.net

2. Forex Account Copier based on mt4 scripts, delay about 0.3 sec
http://iticsoftware.com/CopyToolPro

Feel free to contact me: support@multiterminal.net and I'll provide you with free demo for testing purposes.
 

Attachments

*We get a lot of questions what is your best adviser, or what is your best indicator. I'll try to clarify some points.
*Expert Advisors
*We have a lot of Expert Advisors based on different algorithms. What could be the starting point when choosing a EA. I think best way is start choosing from information about account.
If your broker support minimal lot =0.1 and you account size $1000 or more; or your broker support 0.01 and your account size 100 or more, you can use scalping systems. I can recommend you Expert Advisor "SC-Market".
*If your broker support minimal lot =0.1 and you account size $2000 or more; or your broker support 0.01 and your account size 200 or more, your can use scalping systems and also you can use hybrid (Scalping + Trend Following) systems. I can recommend you: Expert Advisor "SC-Market", Expert Advisor "TFOT"
*If your broker supports minimal lot = 0.01 and your account $5000 or more, you can use Scalping, Hybrid and also grid systems and systems with increasing lot (non martingale!).
I can recommend you: Expert Advisor "SC-Market", Expert Advisor "TFOT", Expert Advisor "SecureProfit", Expert Advisor "Eldorado".
u11jul24.png

CLICK HERE for detail information...

http://mdunleavy.byethost7.com/11Jul23.html
^^^ OR vvv
http://img27.imageshack.us/img27/9393/11jul24.pdf
^^^ OR vvv
https://docs.google.com/document/pub?id=1DLeiJ7n7V4p1OjLGK6TW-zAFx-AjBcFFKFrrpMBN9BE#id.d7t3sxftozy3
^^^ OR vvv
A t t a c h m e n t
 

Attachments

*View our Expert Advisor Review and Select best Forex EA for your needs, which Forex Expert Advisor will earning you the most money!
*Forex trading is so difficult and we will help you will be able to choose the best forex EA or Forex EA according your needs and helps you earn money with automated trading.
*A lot of forex traders spend years trading forex with minimal success, but we provide a proven track record and ensure that our Expert Advisor Reviews will help to greatly improve your success.
11aug101.png

~~~>http://iticsoftware.com/postimages2//11Aug08.html
^^^ OR vvv
~~~>http://mdunleavy.byethost7.com/11Aug08.html
^^^ OR vvv
~~~>https://docs.google.com/document/pub?id=1DLeiJ7n7V4p1OjLGK6TW-zAFx-AjBcFFKFrrpMBN9BE#id.6jd3dez4sbca
^^^ OR vvv
A t t a c h m e n t
 

Attachments

*Forex Course - Free Manual and Fully Automated Forex Strategies
*You an Aspiring Forex Trader and you don't know how to start ? Forex Courses Website designed to work with you to develop the skills to handle any problematic Forex situations.
*Are you a Professional Trader and are you looking for Professional Forex Software? Forex Courses Website will help you to find sest forex software according your needs.
11aug302.png

CLICK HERE for detail information...
~~~>http://mdunleavy.byethost7.com/11Aug31.html
^^^ OR vvv
~~~>http://iticsoftware.com/postimages2//11Aug31.html
^^^ OR vvv
~~~>http://img577.imageshack.us/img577/8232/11sep01.pdf
^^^ OR vvv
A t t a c h m e n t
 

Attachments