Hello,
I would like to look at Symbol Tick ( the internals) and build a back test around the value and buy 1 contract on ES once a set of parameters were meet.
Pseudo Code
Synbol Es
IF(TICK >= 0) and (1min CL <= IBL)
Buy 1 contract
IF (TICK >= 0) AND (POS_STATE =1) AND 1min (HIGH >= IBH)
Exit All
How do I access the symbol TICK in IRL while executing off of the ES?
You should be able to grab that TICK data with the MPD indicator. See below...
but it's always wise to just add an "AND SHOW(MPD)" statement to one of your rules temporarily, to confirm you're getting the values you expect on each bar while backtesting.