PureBytes Links
Trading Reference Links
|
Dans un courrier daté du 23/04/98 01:42:51 , vous avez écrit :
<<
I'm trying to set up a 3-line moving average cross, with each line offset a
different amount into the future. Here's what I did:
Input: Price(close),Length1(21),Length2(15),Length3(9);
plot1(Average(Price,Length1)[-15],"Avg1");
plot2(Average(Price,Length2)[-9],"Avg2");
plot3(Average(Price,Length3)[-5],"Avg3");
I used negative values in the offset brackets. I figured it would look
forward instead of backward with the offset set to a negative value, since
it looks backwards when the offset value is positive. However, I can't
figure out if I'm correct in this respect, since TS doesn't seem to allow me
to look forward past the last bar. How can I get around this? Is there any
way to offset into the future, or am I limited to the past? Please help!
BJ >>
Yes, this is possible.
I have a DLL that reads O,H,L,C, OI, upticks, downticks, date an time any
number of bars in advance.
You need to call it from any EL indicator or system
The price is $100.
Of course, it will be unable to read bars in avance from now (if now=today)
(g).
Sincerely,
Pierre Orphelin
www.sirtrade.com
|