Forex Forum - EarnForex
Serving Traders Since 2005
 

Go Back   Forex Forum - EarnForex > Advertisements > Advertisements

Advertisements Post your Forex related advertisements here. Only 1 post per member per day.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 3rd June 2009, 21:35
Default Avatar
Senior Member
 
Join Date: Jun 2009
Posts: 258
Thanks: 0
Thanked 0 Times in 0 Posts
Default Free indication fo MT-4. (digital filter) and other.

Digital filters.
Here is the link for your file, which will be available for 7 Days or 100 downloads.
https://www.yousendit.com/download/M...TkFuSlIzZUE9PQ
Stats indicators.
Attached Files
File Type: zip i-MagicStat_mq4.zip (3.5 KB, 70 views)
File Type: zip i-StateX_mq4.zip (2.8 KB, 61 views)
__________________
BJF Trading Group||FOREX MetaTrader Expert Advisors
Reply With Quote
  #2 (permalink)  
Old 4th June 2009, 23:00
Default Avatar
Senior Member
 
Join Date: Dec 2008
Posts: 507
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Are these free indicators ?? How about after the first 7 days ??
__________________
Please, read the Forum Rules and the Signature Rules to avoid termination of your account.
Reply With Quote
  #3 (permalink)  
Old 5th June 2009, 17:42
Default Avatar
Member
 
Join Date: May 2009
Posts: 64
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Mmm it doesn’t say anything about being free, just the trial…
Reply With Quote
  #4 (permalink)  
Old 7th June 2009, 18:44
Default Avatar
Senior Member
 
Join Date: Jun 2009
Posts: 258
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Quote:
Originally Posted by FXexpert View Post
Are these free indicators ?? How about after the first 7 days ??
That is how long will be stored.
http://docs.google.com/View?id=dgm8rr7q_149f864gkdq
Attached Files
File Type: zip i_Digital_filters_mq4.zip (5.4 KB, 56 views)
__________________
BJF Trading Group||FOREX MetaTrader Expert Advisors
Reply With Quote
  #5 (permalink)  
Old 19th December 2009, 16:16
Default Avatar
Senior Member
 
Join Date: Jun 2009
Posts: 258
Thanks: 0
Thanked 0 Times in 0 Posts
Default

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 Code:
#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
__________________
BJF Trading Group||FOREX MetaTrader Expert Advisors
Reply With Quote
  #6 (permalink)  
Old 28th January 2010, 20:19
Default Avatar
Senior Member
 
Join Date: Jun 2009
Posts: 258
Thanks: 0
Thanked 0 Times in 0 Posts
Default

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.
__________________
BJF Trading Group||FOREX MetaTrader Expert Advisors
Reply With Quote
  #7 (permalink)  
Old 13th August 2010, 13:52
Default Avatar
Senior Member
 
Join Date: Jun 2009
Posts: 258
Thanks: 0
Thanked 0 Times in 0 Posts
Default

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)

Learn more about our metatrader indicators.

BJF Trading Group inc.
Attached Files
File Type: zip 2010-Aug-13_103728.zip (167.3 KB, 20 views)
__________________
BJF Trading Group||FOREX MetaTrader Expert Advisors
Reply With Quote
  #8 (permalink)  
Old 22nd October 2010, 10:20
Default Avatar
Senior Member
 
Join Date: Jun 2009
Posts: 258
Thanks: 0
Thanked 0 Times in 0 Posts
Default

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.
Attached Files
File Type: zip 10Oct211244.zip (45.9 KB, 12 views)
__________________
BJF Trading Group||FOREX MetaTrader Expert Advisors
Reply With Quote
  #9 (permalink)  
Old 25th November 2010, 13:09
Default Avatar
Senior Member
 
Join Date: Jun 2009
Posts: 258
Thanks: 0
Thanked 0 Times in 0 Posts
Default

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



Best regards,
BJF Trading Group inc. =>>> iticsoftware.com
Attached Files
File Type: zip 10Nov241829.zip (112.9 KB, 8 views)
__________________
BJF Trading Group||FOREX MetaTrader Expert Advisors

Last edited by MDunleavy; 25th November 2010 at 13:13.
Reply With Quote
  #10 (permalink)  
Old 17th December 2010, 19:47
Default Avatar
Senior Member
 
Join Date: Jun 2009
Posts: 258
Thanks: 0
Thanked 0 Times in 0 Posts
Default

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


=>>>img827.imageshack.us/img827/2505/10dec171319.pdf<<<=
__________________
BJF Trading Group||FOREX MetaTrader Expert Advisors
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 05:55.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
Inactive Reminders By Icora Web Design

SEO by vBSEO 3.3.2