PureBytes Links
Trading Reference Links
|
I have daily data as data1 and weekly data as data2. The system below is
the simple stochastics crossover system that was supplied with the
program.
Input: Length(10);
IF CurrentBar > 1 and SlowK(Length) crosses above SlowD(Length) Then Buy
on Close;
IF CurrentBar > 1 and SlowK(Length) crosses below SlowD(Length) Then
Sell on Close;
If I wanted this system to reference data2 how would the above be
written. I believe I can bull my way through it from there.
|