PureBytes Links
Trading Reference Links
|
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");
|