DEV LOG: PHASE 1
SIDEWAYS BOT V1.02
THE FAST RSI ERA
Welcome to Phase 1. This is Version 1.02. We are testing the Fast RSI (period 7) to solve the late entry problem observed in V1.01.
Target Asset: BTCUSDm | Indicator: RSI 7 | TP/SL: 300 Pts | Recovery: OFF
UNIT: V1.02 (FAST RSI)
LIVE TESTING
FINAL P/L
IN PROGRESS
NET GROWTH
–%
WIN RATE
–%
TOTAL TRADES
—
CURRENT ACTIVE LOGIC: V1.02
ENTRY SIGNAL
Fast RSI (7) on M15 timeframe.
BUY < 30 | SELL > 70
BUY < 30 | SELL > 70
EXIT STRATEGY
Fixed 300 Points Take Profit (TP) & Stop Loss (SL). Risk/Reward is exactly 1:1.
POSITION SIZING
Fixed Volume 0.01 Lot. Single order execution only.
GRID / RECOVERY
DISABLED.
No averaging, no martingale. Pure baseline testing.
No averaging, no martingale. Pure baseline testing.
DEV LOG: WEEK 2 (V1.02)
V1.02: SPEEDING UP THE RSI
The conclusion from V1.01 was that RSI 14 was too slow, often causing the bot to miss narrow sideways swings. In V1.02, we are speeding up the indicator by changing the period from 14 to 7 to force earlier entries.
V1.02 Hypothesis & Expectations
We are deploying the bot with Fast RSI 7 and fixed 300 points TP/SL.
- The Hypothesis: A faster RSI will allow the bot to enter positions much closer to the actual reversal points, solving the late entry issue.
- Potential Risk: An increased sensitivity to price movements will likely result in a higher number of false signals (whipsaws).
core_logic_v102.py
def check_rsi_signal(rates_frame):
# Calculate fast RSI 7 to solve late entry problem
rsi = ta.momentum.rsi(rates_frame['close'], length=7)
current_rsi = rsi.iloc[-1]
if current_rsi < 30:
return "BUY" # Oversold condition
elif current_rsi > 70:
return "SELL" # Overbought condition
return "WAIT"
RAW EXECUTION LOGS
FETCHING V1.02 RECORDS…
ABOUT VERSION 1.02
What changed from V1.01?
We replaced the standard RSI 14 with a faster RSI 7. The goal is to trigger trade signals earlier in the sideways cycle.
Did you change the Stop Loss?
No. Take Profit and Stop Loss remain strictly fixed at 300 points to isolate the variable we are testing (the entry speed).
Is there a recovery system?
No. V1.02 is still testing pure, single-order entries. Grid and recovery systems will be introduced in a later phase.
Educational & Research Purposes Only (Dev Log):
This archive displays raw data from an algorithmic trading experiment. It is NOT a solicitation to invest, financial advice, or a guarantee of future profits. Trading involves high risk. Past performance is not indicative of future results.