Page 1 of 1

Indicator (Anyone)

Posted: Apr 11 2006
by flmaxey
Does anyone have an indicator that will;

- Track a high or low, according to a specified time interval?

For example, in a day chart - The indicator would draw lines (preferrably with a price), for the high (and / or) low for the last 30 days.
So,, this indicator would show the high and low, according to a specified number of bars or a time interval. (Hopefully, the time interval or number of bars will be a variable that I can specify.)

I'm a trend trader and since MC doesn't seem to have this, with a good deal of effort, I've been doing this by hand. Anything would be appreciated.

Posted: Apr 12 2006
by Stanley Miller
Dear Flmaxey,

Most probably MultiCharts has something ready to use but you can also use the following simple code for your needs. Please let me know how it works.

Code: Select all

inputs: Length(10);

plot1(highest(high,length));
plot2(lowest(low,length));

Posted: Apr 12 2006
by Chris
flmaxey,

if this is more likely what you are looking for, you can contact me with a PM.

Chris