PureBytes Links
Trading Reference Links
|
Insert symbol to add a second symbol to a chart. That is what your
code refers to. See where is says coose of data1/close of data2.
This only works if you have two symbols in one chart. The first
symbol is data1 and the second would be data2. Radarscreen has
nothing to do with it.
Good luck,
Jimmy
Thank you for replying but I know this is possible in a chart. My question
was regarding Radarsreeen.
Thanks again.
-----Original Message-----
From: Jimmy Snowden [mailto:jhsnowden@xxxxxxxxxxxxx]
Sent: Thursday, April 07, 2005 1:00 PM
To: Pierre Lapointe; Omega-List
Subject: Re: Radarscreen 2000i Multiple Data Streams
Start off with putting both symbols in one chart. Much easier and
easy on the computer.
Jimmy
Can anyone offer advice on using multiple data streams in Radarscreen for
2000i. I want to create an indicator that compares one symbol to another. I
have an example below that illustrates what I want to do - MACD RS.els
Will pushpop, global variables, or ADE dll's enable this functionality? I've
looked into these but it's all very confusing since I have limited
programming experience. Any help in pointing me in the right direction would
be appreciated.
Thanks.
MACD RS.els
Inputs:
R(12),
S(26),
Q(9),
Price(close of data1/close of data2);
Vars:
Mo(0),Avg(0);
Mo=MACD(Price,R,S);
Avg=Xaverage(MACD(Price,R,S),Q);
Plot1(Mo,"Momentum");
Plot2(Avg,"Avgerage");
Plot3(Mo-Avg,"Difference");
|