is there an indicator for this?

Discussion in 'Technical Analysis' started by cashmoney69, Apr 9, 2009.

  1. a moving average that takes the high, low, open, and close, and divides the data over a series of days?

    I want to take all four price levels and put them into one, and display it as a MA

    is there such an indicator?
     
  2. sure
    what skripting language ?

    easylanguage would be something like this

    inputs: period(10);

    value1 = (o+h+c+l)/4;
    value2 = average(value1,period);

    plot1(value2);
     
  3. ====================
    Or simply could use MA /close;
    & candlesticks/ observation-open h/l/c.:cool: