is there an indicator for this?

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?
 
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);
 
Quote from cashmoney69:

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?
====================
Or simply could use MA /close;
& candlesticks/ observation-open h/l/c.:cool:
 
Back
Top