Indicator (Anyone)

Questions about MultiCharts and user contributed studies.
flmaxey
Posts: 13
Joined: Oct 10 2005
Location: US

Apr 11 2006

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.

User avatar
Stanley Miller
Posts: 556
Joined: Jul 26 2005
Has thanked: 3 times

Apr 12 2006

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));

Chris
Posts: 150
Joined: Nov 17 2005

Apr 12 2006

flmaxey,

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

Chris
Attachments
High-Low.PNG
(86.8 KiB) Downloaded 869 times