View Single Post
  #43 (permalink)  
Old 07-04-2009, 11:56 AM
cja's Avatar
cja cja is offline
Senior Member
 
Join Date: Apr 2006
Posts: 676
cja is on a distinguished road
PriceLevelLine

Quote:
Originally Posted by Jawpip View Post
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
__________________
My Disadvantage is that I am not a Trained Programmer - My Advantage is that I am not a Trained Programmer.
http://cjatradingtools.com/

Last edited by cja; 07-04-2009 at 01:14 PM. Reason: Changed code
Reply With Quote