PureBytes Links
Trading Reference Links
|
Hi
This should do the job :
Plot1(close[1], "open") ;
Plot2(IFF(close > close[1] , close ,close[1] ) , "high " );
Plot3(IFF(close > close[1] , close[1] , close ) , " low " );
Plot4(close , "close " );
Style:
Plot1 - left tic
Plot2 - bar high
Plot3 - bar Low
Plot4 - right tic
Regards Stuart
______________________________ Reply Separator _________________________________
Subject: EL Question
Author: <omega-list@xxxxxxxxxx> at internet
Date: 20/8/98 16:54
Has anyone written an .ela for connecting close from one day to the next in
a close-only chart?
I don't mean just a line-on-close chart, which is already available in TS.
E.g, I'd like to be able to create a bar chart with mutual fund data. The
close of one day would be the open for the next day & either the high or
low depending upon the close of the current day. It would then graph as a
bar chart.
I am NOT EL savvy, so I would need the actual code to enter into TS or an
.ela file.
Many TIA,
FPI
|