RoboHedge.Fund
27 Nov 2020, 09:34
( Updated at: 27 Nov 2020, 09:35 )
SOLVED
Hi All, I found the issue - there was some code that sometimes failed before assigning the signals I have moved the assignment of the signals above that code and will add some error handling to prevent in the future.
RoboHedge.Fund
27 Nov 2020, 09:34 ( Updated at: 27 Nov 2020, 09:35 )
SOLVED
Hi All, I found the issue - there was some code that sometimes failed before assigning the signals I have moved the assignment of the signals above that code and will add some error handling to prevent in the future.
I also changed
double BuySignal = myZlag.BuySignalOutput.LastValue;
to
double BuySignal = myZlag.BuySignalOutput.Last(0);
I'll leave this post here incase this helps someone else in the future
@RoboHedge.Fund