Please ,can someone convert this amibroker afl indicator to metatrader 4 indicator for me,please

 
I can not remember where i found this,but it's a nice trend indicator to add to my current setup.

_SECTION_BEGIN("Higher Highs and Lower Lows");

//_________________________________________________________
// if Blue makes lowest low at prices on top - enter short
// if Red makes lowest low at price at the bottom - enter long
hh = High; 
ll = Low; 

period = Param("period", 12, 1, 100 ); 

hhh = IIf( hh > Ref( hh, -1 ), 
(hh - LLV( hh, period ))/( HHV( hh, 12 ) - LLV( hh, 12 ) ), 
0 ); 

hhs = 100 * EMA( hhh, 12 ); 

lll = IIf( ll < Ref( ll, -1 ), 
(HHV( ll, 12 ) - ll)/( HHV( ll, 12 ) - LLV( ll, 12 ) ), 
0 ); 

lls = 100 * EMA( lll, 12); 

Plot( hhs, "HHS" + period, colorRed ); 
Plot( lls, "LLS" + period, colorGreen); 

ShortRaw = lls < 10 AND Close < Open ;

Buy = Cross (hhs,lls);
Sell = Cross (lls,hhs);
Buy = ExRem( Buy, Sell);
Sell = ExRem( Sell,Buy);


PlotShapes( Buy * shapeUpArrow + Sell * shapeDownArrow, IIf( Buy,colorBlue, colorRed ) );
_SECTION_END();
 
Eds none: Please ,can someone convert  …
You haven't stated a problem, you stated a want. You have only four choices:
  1. Search for it.
  2. Beg at
  3. MT4: Learn to code it.
    MT5: Learn to code. If you don't learn MQL4/5, there is no common language for us to communicate. If we tell you what you need, you can't code it. If we give you the code, you don't know how to integrate it into yours.
  4. or pay (Freelance) someone to code it.
              Hiring to write script - General - MQL5 programming forum
We're not going to code it for you (although it could happen if you are lucky or the problem is interesting.) We are willing to help you when you post your attempt (using CODE button) and state the nature of your problem.
          No free help
          urgent help.
Reason: