Jump to content

Recommended Posts

Posted

[HELP]To Find this Indicators

 

Need your help to find & share what this indicator, anybody have an idea or allready have ?

 

http://i393.photobucket.com/albums/pp11/ayip21/new-masig.jpg

 

http://www.masaesignal.com/index.php?option=com_content&task=blogcategory&id=20&Itemid=28

 

Anybody, Please ?

 

 

:peace:

" I ' LL BE BACK "
Posted

Re: [HELP]To Find this Indicators

 

bro bamik :peace:

 

Buy :

 

cross above 0

come back down

cannot go lower

when start to turn up again

buy at High

 

Target ?? Fibo ?

 

:peace: :peace:

Posted

Re: Thank You

 

Looks like PFE

 

http://www.4shared.com/file/82310906/48c64d4d/PFE.html

 

When cross 0 look for retrace and enter

:peace:

 

Can you give more detail instruction how to use this Indicators ? Which the Best Timeframe should we use ?

 

Could you re-upload this indicators via megaupload or rapidshare, because seems i've gotted trouble to Download from 4shared.

 

Many2 thanks before :shand:

" I ' LL BE BACK "
Posted

Re: [HELP]To Find this Indicators

 

Dear Sonny;

 

I found this Indicators Polarized Fractal Effieiciency from neighbour forum, can you help me are this indicator in this attachement right ? Please let me know, Thank you.

" I ' LL BE BACK "
Posted

Re: [HELP]To Find this Indicators

 

Looks like PFE

 

http://www.4shared.com/file/82310906/48c64d4d/PFE.html

 

When cross 0 look for retrace and enter

:peace:

 

 

Seems Sonny Download Link is the real & Correct Indicator.

 

How about the setting parameter like this bellow screenshoot, is it right ? Any other setting ? Please let me know. Thanks before :shand:

 

http://i393.photobucket.com/albums/pp11/ayip21/PFE.jpg

" I ' LL BE BACK "
  • 8 months later...
  • 2 weeks later...
Posted

Re: [HELP]To Find this Indicators

 

I guess this is what u need

 

 

//+------------------------------------------------------------------+
//|                                                          PFE.mq4 |
//|                             ©2008, [email][email protected][/email] |
//|                                            [url]http://www.fxtrade.it[/url] |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2008, Gimapiero Raschetti"
#property link      "http://www.fxtrade.it/"

#property indicator_separate_window
#property indicator_buffers 1
#property indicator_color1 DodgerBlue

//#property indicator_minimum -1
//#property indicator_maximum 1
#property indicator_level1 0

//---- input parameters
extern int PfePeriod=7;
extern bool UseAvarage=true;
extern int MaPeriod=7;

//---- buffers
double Pfe[];
double PfeBuffer[];

//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
 {
  string short_name;
  IndicatorBuffers(2);
//---- indicator line
  SetIndexStyle(0,DRAW_LINE);
  SetIndexBuffer(0,Pfe);
//---- name for DataWindow and indicator subwindow label
  short_name="PFE("+PfePeriod+")";
  IndicatorShortName(short_name);
  SetIndexLabel(0,short_name);
//----
  SetIndexDrawBegin(0,PfePeriod);
  SetIndexBuffer(1,PfeBuffer);
//----
  return(0);
 }
//+------------------------------------------------------------------+
//| Momentum                                                         |
//+------------------------------------------------------------------+
int start()
 {
  int i,k,counted_bars=IndicatorCounted();
  double noise=0;
//----
  if(Bars<=PfePeriod) return(0);

  i=Bars-PfePeriod-1;
  if(counted_bars>=PfePeriod) i=Bars-counted_bars-1;

  while(i>=0)
  {
     noise=0.000000001;
     for(k=0;k<PfePeriod;k++)
      {
       noise=noise+MathAbs(Close[i+k]-Close[i+k+1]);
      }
     PfeBuffer[i]=(Close[i]-Close[i+PfePeriod])/noise;
     i--;
  }

  i=Bars-PfePeriod-1;
  if(counted_bars>=PfePeriod) i=Bars-counted_bars-1;

  while(i>=0)     
  {
     if(UseAvarage)
       Pfe[i]=iMAOnArray(PfeBuffer,Bars,MaPeriod,0,MODE_EMA,i);
     else
       Pfe[i]=PfeBuffer[i];
     i--;
  }
 
  return(0);
 }
//+------------------------------------------------------------------+

One obvious truth.FOREX IS ANYTHING BUT EASY
Posted

Re: [HELP]To Find this Indicators

 

bro bamik :peace:

 

Buy :

 

cross above 0

come back down

cannot go lower

when start to turn up again

buy at High

 

Target ?? Fibo ?

 

:peace: :peace:

please upload again, becuse i had alert

The file link that you requested is not valid.

thanks sir

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...