Positions.Modified event
Created at 10 Apr 2019, 02:17
AN
Positions.Modified event
10 Apr 2019, 02:17
Adding a Positions.Modified event handler, causes the robot to hang in backtester.
Replies
Anka Software
10 Apr 2019, 16:46
protected override void OnStart()
{
//Events
Positions.Modified += OnPositionModified;
//blah blah blah
}
private void OnPositionModified(PositionModifiedEventArgs args)
{
..
}
@Anka Software
firemyst
10 Apr 2019, 08:35
RE:
Anka Software said:
Just for clarification, would you be able to post the sample of your code that adds the handler so the rest of us can see how you're doing it?
Ex:
@firemyst