Buying MetaTrader4 Custom Script Needed

Discussion in 'Programming' started by fiberus, Jan 25, 2010.

  1. #1
    Hi, I'm using a free forex trading platform called MetaTrader4. It's the most popular forex terminal and it offer unlimited choices like custom scripting, and it also has a program for building scripts to use in trading (Meta Editor). The codes seem to be written in javascript but not sure, here's and example:

    int init()
      {
    //  Comment("Last RSI: ", rsiVal(1), 
    //    "\nRSI Vals: ", rsiVal(0), 
    //    "\nRSIMA Vals: ", rsiMAVal(0),
    //    "\nBands: ",bands1());
    
        lastBars = Bars;
      }
      
    double getATR()
    {
      double atr=iATR(NULL,0,10,0);
      double atr_val = atr*Use_ATR_Pct;
      return(atr_val);
    }
    
    double rsiMAVal(int shift)
    {
      double rsi[];
      ArrayResize(rsi, Bars);
      ArraySetAsSeries(rsi,true);
      for(int i=Bars; i>=0; i--)
      {
      rsi[i]=iRSI(Symbol(),0, RSIPeriod, PRICE_CLOSE,i+shift);
      }
      double ma = iMAOnArray(rsi,0,RSIMAPeriod,0,MODE_EMA,0);
      return(ma);
    }
    Code (markup):
    I am in need of a script written in that language, it's not too long but needs an experienced programmer (hopefully someone who knows basic forex terms).

    Please let me know if you can provide the service above,
    Regards, Daniel.

     
    fiberus, Jan 25, 2010 IP
  2. jazzcho

    jazzcho Peon

    Messages:
    326
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 1
    #2
    MetaTrader uses a variant of C.
     
    jazzcho, Jan 26, 2010 IP
  3. fiberus

    fiberus Well-Known Member

    Messages:
    787
    Likes Received:
    26
    Best Answers:
    0
    Trophy Points:
    150
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #3
    hmm ... thanks ... so were looking for a C programmer :)

    thanks.
     
    fiberus, Jan 26, 2010 IP