I see a pattern in dax.
When dax moves more than 20 points in a cadel(5 min timeframe), it usually continues in the same direction for a while.
Can you make an algo that takes position on that movement?
long20= close-open>=20*pipsize
IF NOT ONMARKET AND long20 THEN
BUY 1 CONTRACT AT MARKET
ENDIF
Hi Stefanb,
This it could be a basic approach. Of course, a strategy has to bring with it other aspects (profit, stop loss, cumulate orders, etc)
I hope you can use it as a starting point.