- Removed v10 TradingView indicator (moneyline_v10_momentum_dots.pinescript) - Removed v10 penalty system from signal-quality.ts (-30/-25 point penalties) - Removed backtest result files (sweep_*.csv) - Updated copilot-instructions.md to remove v10 references - Simplified direction-specific quality thresholds (LONG 90+, SHORT 80+) Rationale: - 1,944 parameter combinations tested in backtest - All top results IDENTICAL (568 trades, $498 P&L, 61.09% WR) - Momentum parameters had ZERO impact on trade selection - Profit factor 1.027 too low (barely profitable after fees) - Max drawdown -$1,270 vs +$498 profit = terrible risk-reward - v10 penalties were blocking good trades (bug: applied to wrong positions) Keeping v9 as production system - simpler, proven, effective.
38 lines
1.2 KiB
Tcsh
38 lines
1.2 KiB
Tcsh
# This file must be used with "source bin/activate.csh" *from csh*.
|
|
# You cannot run it directly.
|
|
# Created by Davide Di Blasi <davidedb@gmail.com>.
|
|
# Ported to Python 3.3 venv by Andrew Svetlov <andrew.svetlov@gmail.com>
|
|
|
|
alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; test "\!:*" != "nondestructive" && unalias deactivate'
|
|
|
|
# Unset irrelevant variables.
|
|
deactivate nondestructive
|
|
|
|
setenv VIRTUAL_ENV "/home/icke/traderv4/.venv"
|
|
|
|
set _OLD_VIRTUAL_PATH="$PATH"
|
|
setenv PATH "$VIRTUAL_ENV/bin:$PATH"
|
|
|
|
|
|
set _OLD_VIRTUAL_PROMPT="$prompt"
|
|
|
|
if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then
|
|
if (".venv" != "") then
|
|
set env_name = ".venv"
|
|
else
|
|
if (`basename "VIRTUAL_ENV"` == "__") then
|
|
# special case for Aspen magic directories
|
|
# see http://www.zetadev.com/software/aspen/
|
|
set env_name = `basename \`dirname "$VIRTUAL_ENV"\``
|
|
else
|
|
set env_name = `basename "$VIRTUAL_ENV"`
|
|
endif
|
|
endif
|
|
set prompt = "[$env_name] $prompt"
|
|
unset env_name
|
|
endif
|
|
|
|
alias pydoc python -m pydoc
|
|
|
|
rehash
|