PureBytes Links
Trading Reference Links
|
If I wanted to plot 4 horizontal lines, how would I write the code?
This doesn't seem to work
Input: Value1(0), Value2(0)), Value3(0), Value4(0) ;
Plot1(Value,"r2");
Plot2(Value,"r1");
Plot3(Value,"s1");
Plot4(Value,"s2");
Any assistance for the deedy welcome,
Thxs
jim
----- Original Message -----
From: "aiiishot" <aiiishot@xxxxxxxxx>
To: "Mark J. Krisburg" <krisburg@xxxxxxxxxx>
Cc: "Omega list" <omega-list@xxxxxxxxxx>
Sent: Tuesday, December 11, 2001 10:31 PM
Subject: Re: Horizontal line?
> Thanks to all for responding.
> I'll use the simple Plot1(Value), it works great! =]
> Since I like to have certain numbers (support/resistance) on my intraday
> chart, that are based off of yesterday's numbers, this will save me some
> time every morning, one less step I have to do =]
>
> Michael
>
> ----- Original Message -----
> From: Mark J. Krisburg <krisburg@xxxxxxxxxx>
> To: 'aiiishot' <aiiishot@xxxxxxxxx>
> Sent: Tuesday, December 11, 2001 3:39 PM
> Subject: RE: Horizontal line?
>
>
> > If you are attempting to draw a horizontal line manually using the
> > drawing tool (which is generally the easiest), make sure you have the
> > "Snap To" option disabled so you can position a horizontal line
> > precisely with your mouse.
> >
> > If you prefer not to draw the line, you can create an Indicator
> > containing the following code:
> >
> >
> > Inputs: Value(0);
> >
> > Plot1(Value);
> >
> >
> > Before saving this indicator, go to the "properties" and set the
> > indicator to use "same scale as price". So it will be superimposed over
> > the price action on your chart.
> >
> > Then insert this indicator on your chart, and specify a value to be
> > plotted.
> >
> >
> >
> > Mark Krisburg
> >
> >
> >
> >
> >
> >
> >
> >
> > -----Original Message-----
> > From: aiiishot [mailto:aiiishot@xxxxxxxxx]
> > Sent: Tuesday, December 11, 2001 10:57 AM
> > To: Omega list
> > Subject: Horizontal line?
> >
> >
> > Hi all!
> > I'm looking to be able to plot a horizontal line at a certain price
> > level. Similar to the TL_New command, but instead of specifying a start
> > and end point, just specify one price. Once a horizontal line comes up,
> > I usually adjust it up/down manually, and it is hard to do with the
> > Trendline. Is there a command in Easylanguage for Horizontal Lines?
> >
> > TIA,
> > Michael
> >
>
>
|