PureBytes Links
Trading Reference Links
|
Hi
Try this :
value1 = highd(0) ;
value2 = lowd(0) ;
value3 = (value1 + value2)/2 ;
plot1(value1,"HIGH");
plot2(value2,"LOW") ;
plot3(value3,"MID") ;
ensure plot type set to point
Cheers Stuart
From: kjh129@xxxxxxxxxx
To: omega-list@xxxxxxxxxx
Subject: EL help please.
Date: Tue, 24 Apr 2001 21:08:29 GMT
Good day all..
I am trying to create this indicator in TS4 for the currentsession only.
For some reason, my code is not working. I have written it as follows.
plot1(TrueHigh, "HighofToday");
Plot2(((High+low) /2), "Mid");
Plot3(TrueLow, "LowofToday");
I am simply looking to Plot the HighOfToday, the LowofToday, and the
midpoint between the high and the low of today. Would appreciate someone's
advice as i have gone through the manual already to no avail.. thankyou.
KJH
|