Have taken a trial for this. So far so good. I do have a question though on one trial run:
result = ((GSB_Norm2(Momentum(Close, i1length) of Data(i1Data), 10, 100) of Data(i1Data) * i1Weight) * ((GSB_Norm2(GSB_KeltnerChannel(Close, i2length,
i2numAtrs) of Data(i1Data), 10, 100) of Data(i1Data) * i2Weight) * (GSB_Norm2(GSB_ForwardReverseEMA(i3aa) of Data(i1Data), 10, 100) of Data(i1Data) *
i3Weight)));
When I plot this in TS... the range is like -600,000 to +600,000
The decision involves:
decision = GSB_Decision(result, 1, entryParams);
where entryParams = 2000
the thing here is that 2000 seems low for the total range?
Is this normal? essentially its just looking for any time its positive + filter is true.
for reference:
norm method =10
Inputs:
i1Data(1),
i1length(38),
i2Data(1),
i2length(29),
i2numAtrs(-1.5),
i3Data(2),
i3aa(0.375),
i1Weight(-1),
i2Weight(1),
i3Weight(1),
entryParams(2000),
iSFData(3),
iSFWeight(1),
sfEntryLevel(19); |