PureBytes Links
Trading Reference Links
|
Now that bonds have 2 different symbols I an trying to rewrite the
indicators I have used for years that I applied to the US symbol that use
to include the project A trades.
I am trying to get the code to start calculating this osc on data1 (US)
after 8:19am stop at 3:00pm and to start calculating the osc on data2 (ZB)
at 3:00pm and stop at 8:19am the next morning. No joy it does not
plot either osc I plot the two datas on the same subgraph (1) , the
indicator name is in subgraph 2 but no plot
Input: time1S(0819), time1E(1500),time2S(1500), time2E(0819);
VALUE1 = (average(c,2) - average(c,10));
VALUE2 = (average(c of data2,2) - average(c of data2,10));
if currentTime > time1S and currentTime < time1E then
plot1(value1,"")
if currentTime > time2S and currentTime < time2E then
plot2(value2,"");
Attachment Converted: "c:\eudora\attach\Study.ela"
|