I just try to implement very simple strategy using moving averages.
I do check for entry sygnal on every bar close. Open buy/sell position only on break.
For this I use property OnBarClose = true;
Buty when I start to implement part of logic with orders I found that I need to react every incoming tick.
For example:
1) when order filled , after first tick I have to create reverse order to save my position (stoploss)
2) when the price break specific level I have in first tick modify my stop order to breakeven
3) when I am in the position I have to modify orders to follow the price
When bar close its too late to do smth.
What should i do ?

Comment