Iâm working on a fully automatic, adaptive system for trading NQ. However, I need to obtain more historical data to be sure it works in enough markets.
Here is the backtested performance on the 5 days of data I have, using NQM3:
The system operates on tick data and is fully symmetrical (no long/short preferences). Buy/Sell signals are generated at the extrema (slope = zero) of several competing simple moving averages (SMA), using a volatility-based deglitching algorithm to eliminate consecutive signals in a close range.
The SMA period is automatically determined as the day progresses, with the goal of choosing an SMA that works best with the dayâs price dynamics, matching the market's oscillation periods and avoiding false signals due to choppy price action. The system chooses from a large range of SMA periods, indicating to me it is not biased by a-priori choices.
This is the type of data I need. It must be tick-byâtick, and preferably in a single file per day.
Time,Last,Bid,Ask,Volume
...
09:32:59, 1027.000000, 1026.500000, 1027.000000, 8613
09:32:59, 1026.500000, 1026.500000, 1027.000000, 8614
09:33:00, 1026.500000, 1026.500000, 1027.000000, 8622
09:33:01, 1027.000000, 1026.500000, 1027.000000, 8623
â¦
Where might I find this data?
Here is the backtested performance on the 5 days of data I have, using NQM3:
Code:
Date positions total points per standard
points position deviation
3/13 15 34 2.3 6.9
3/14 33 15 0.45 3.5
3/17 40 29 0.73 5.49
3/19 30 5 0.17 3.11
3/20 18 15 0.83 3.01
The system operates on tick data and is fully symmetrical (no long/short preferences). Buy/Sell signals are generated at the extrema (slope = zero) of several competing simple moving averages (SMA), using a volatility-based deglitching algorithm to eliminate consecutive signals in a close range.
The SMA period is automatically determined as the day progresses, with the goal of choosing an SMA that works best with the dayâs price dynamics, matching the market's oscillation periods and avoiding false signals due to choppy price action. The system chooses from a large range of SMA periods, indicating to me it is not biased by a-priori choices.
This is the type of data I need. It must be tick-byâtick, and preferably in a single file per day.
Time,Last,Bid,Ask,Volume
...
09:32:59, 1027.000000, 1026.500000, 1027.000000, 8613
09:32:59, 1026.500000, 1026.500000, 1027.000000, 8614
09:33:00, 1026.500000, 1026.500000, 1027.000000, 8622
09:33:01, 1027.000000, 1026.500000, 1027.000000, 8623
â¦
Where might I find this data?