- Is there a way to enable testing the order automatically between different indicators through variable backtesting such as the example below?
st1 = stochastic[5,3](close)
st2 = stochastic[14,3](close)
st3 = stochastic[45,15](close)
st4 = stochastic[75,20](close)
stpmt = ( 4.1*st1 + 2.5*st2 + st3 + 4*st4 ) /11.6
pmbhausse=(st[a]/st[b])>(st[c]/st[d])
It is obviously not with Parentheses nor brackets 🙁
Thanks in advance!