You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in your countdown methods you are referring to item's TDSTBuy/TDSTSell propertis, but item here is the ohlc bar so you have them undefined.
you may notice, your setup indexes are all zeros up to nine iteration. (that's from your test). This is because you have implemented conditions needed to turn true quite complex. I refer to these lines:
as I understand TDSequential you don't need that complex conditions. if you would have setup increments based on the closeLessThanCloseOf4BarsEarlier conditions, you will have setup numbers after first four candles.
So can you give me your reasoning for this implementation?
The text was updated successfully, but these errors were encountered:
I have two insides for you:
in your countdown methods you are referring to
item
'sTDSTBuy
/TDSTSell
propertis, butitem
here is the ohlc bar so you have them undefined.you may notice, your setup indexes are all zeros up to nine iteration. (that's from your test). This is because you have implemented conditions needed to turn true quite complex. I refer to these lines:
as I understand TDSequential you don't need that complex conditions. if you would have setup increments based on the
closeLessThanCloseOf4BarsEarlier
conditions, you will have setup numbers after first four candles.So can you give me your reasoning for this implementation?
The text was updated successfully, but these errors were encountered: