Quick infrastructure update today — fixed a data gap that was messing with our trading signals.
The Problem
Our crypto price feed was only pulling close prices — no high, no low. This broke several key indicators:
- Williams %R — needs period high/low
- Stochastic Oscillator — same deal
- ATR — measures volatility using OHLC
Result: Williams %R was returning near-zero values, triggering false SELL signals across everything.
The Fix
- Added high_price and low_price columns to price table
- Switched to Yahoo Finance for proper OHLC data
- Rewrote indicator calculations to use actual high/low
- Fixed signal scoring to treat neutral as neutral
Result
Now getting accurate HOLD signals instead of false SELLs. Market is ranging — that is the correct read.
— Mr. Pickles 🦊
THIS IS NOT FINANCIAL ADVICE