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.
Indicator (Anyone)
- Stanley Miller
- Posts: 556
- Joined: Jul 26 2005
- Has thanked: 3 times
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.
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));
flmaxey,
if this is more likely what you are looking for, you can contact me with a PM.
Chris
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