institutional-trader/backend/src/backtest/config.js

17 lines
412 B
JavaScript

export const LANES = {
swing: {
maxHoldDays: 10,
targetAtr: 2.0,
stopAtr: 1.0,
entry: 'next_open',
burnIn: 200,
},
overnight: {
maxHoldDays: 1, // exit at close of day 1 (the entry day)
targetAtr: 1.0, // +1 ATR (reachable intraday)
stopAtr: 1.0, // -1 ATR
entry: 'next_open', // signal at close[t], enter open[t+1]
burnIn: 200,
}
};