I do not want to call this per tick or per price changer and I need a new order for OnOrderUpdate
This list close to what I want to do but I have had times where the stop was not low enough and does not exist. I do want to check perhaps on a timer sine I
I am thinking I could run if (IsFirstTickOfBar )
OnOrderUpdate(null,null.....)
I would like to also list what my current position risk is
Print ("Risk ="+ (Position.AveragePrice - stopOrder.StopPrice) ); in this case I have a risk of 1.5 points in MNQ this is s 2:1 reward to risk I would like to have a second strategy monitoring my order entry strategy.

Comment