Quote:
Originally Posted by Jawpip
Hey Guys,
I am looking for a horizontal line indicator that will work in any timeframe - what it needs to do is mark the high or low of a wave - does that make since?
It is just a visual for immediate support and resistance.
Thank you,
JAWPIP
|
Simple Line indicator, set the Price you want for the High /Low in the inputs
I have altered the code to include a line label in the inputs if required
List of inputs
extern double
PriceLevel =
1.6445; <
Price goes here
extern color
LineColor = Gold;
extern int
LineStyle = 0;
extern int
LineWidth = 0;
extern string
LineLabel = "
Label ";
< Label goes in here
extern color
LabelColor = Silver;
extern string
LabelFont = "Arial";
extern int
LabelSize = 10;
If you do not require a label leave the input blank
PriceLevelLine.mq4