Spaces:
Running
Running
File size: 15,603 Bytes
ce3c7ff 9f4114c ce3c7ff 9f4114c ce3c7ff bf9d545 ce3c7ff fb28a79 ce3c7ff 9f4114c ce3c7ff 9f4114c ce3c7ff fb28a79 ce3c7ff 9f4114c fb28a79 9f4114c ce3c7ff 59a134d ce3c7ff bf9d545 ce3c7ff 21ac82a ce3c7ff bf9d545 ce3c7ff bf9d545 ce3c7ff bf9d545 ce3c7ff bf9d545 ce3c7ff 4435002 ce3c7ff bf9d545 ce3c7ff 4435002 ce3c7ff d7948b9 ce3c7ff | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 |
import YahooFinance from 'yahoo-finance2';
import { MungerStock, TradePlan } from './types';
import Alpaca from '@alpacahq/alpaca-trade-api';
// Suppress excessive logging from specific modules if needed
// Suppress excessive logging from specific modules if needed
const yahooFinance = new (YahooFinance as any)({
suppressNotices: ['yahooSurvey']
});
// Constants
const BATCH_SIZE = 5; // Reduced from 50 to avoid 429 errors
// Config for Advanced Engine
const RISK_CONFIG = {
atrPeriod: 14,
kAtr: 2.0,
rr: 3.0,
riskPct: 0.005, // 0.5%
maxPositionPct: 0.10, // 10%
entryLimitBufferBps: 75.0
};
// Retry helper
async function withRetry<T>(fn: () => Promise<T>, retries = 3, delay = 2000): Promise<T> {
try {
return await fn();
} catch (e: any) {
if (retries > 0 && (e.message?.includes('429') || e.message?.includes('Too Many Requests'))) {
console.warn(`Hit 429, retrying in ${delay}ms... (${retries} left)`);
await new Promise(r => setTimeout(r, delay));
return withRetry(fn, retries - 1, delay * 2);
}
throw e;
}
}
export class MungerEngine {
/**
* Calculates the date of the last Sunday
*/
private static getLastSunday(): Date {
const d = new Date();
const day = d.getDay();
const diff = d.getDate() - day;
const sunday = new Date(d.setDate(diff));
sunday.setHours(23, 59, 59, 999);
return sunday;
}
/**
* Core analysis logic for a single stock
*/
private static async analyzeStock(symbol: string, refDate: Date, portfolioSymbols: string[] = []): Promise<MungerStock | null> {
try {
const queryOptions = { period1: '2019-01-01', period2: refDate, interval: '1wk' as const };
// Fetch chart data
let history: any;
try {
history = await withRetry(() => yahooFinance.chart(symbol, queryOptions));
} catch (e) {
console.warn(`Failed to fetch chart for ${symbol}: ${(e as Error).message}`);
return null;
}
const quotes = history.quotes.filter((q: any) => q.close && q.open);
if (quotes.length < 205) return null;
const latestIndex = quotes.length - 1;
const currentPrice = quotes[latestIndex].close as number;
// Simple MA 200 Calculation
const calculateMA200 = (endIndex: number) => {
if (endIndex < 199) return 0;
const slice = quotes.slice(endIndex - 199, endIndex + 1).map((q: any) => q.close as number);
return slice.reduce((a: number, b: number) => a + b, 0) / slice.length;
};
const MA200 = calculateMA200(latestIndex);
// Fetch fundamental data
let summary: any;
try {
summary = await withRetry(() => yahooFinance.quoteSummary(symbol, {
modules: ['financialData', 'price', 'summaryProfile']
}));
} catch (e) {
console.warn(`Failed to fetch summary for ${symbol}: ${(e as Error).message}`);
return null;
}
const roe = summary.financialData?.returnOnEquity || 0;
const debtToEquity = summary.financialData?.debtToEquity || 999;
const marketCap = summary.price?.marketCap || 0;
const sector = summary.summaryProfile?.sector || 'Unknown';
// Quality Check (Refined from requirements)
// Note: Requirements say ROE > 15% (0.15) and Debt/Equity < 50
const isQuality = roe > 0.15 && debtToEquity < 50;
// Strategy Logic
let touchedWMA = false;
for (let i = 0; i < 4; i++) {
const idx = latestIndex - i;
if (idx < 0) continue;
const candle = quotes[idx];
const ma = calculateMA200(idx);
if (candle.low <= ma) touchedWMA = true;
}
const lastCandle = quotes[latestIndex];
const isGreen = lastCandle.close > lastCandle.open;
let signal: 'BUY_TRIGGER' | 'WATCHLIST' | 'IGNORE' | 'WAIT' | 'PORTFOLIO' = 'WATCHLIST';
if (!isQuality) {
signal = 'IGNORE';
} else if (touchedWMA) {
if (isGreen) {
if (lastCandle.close > MA200) signal = 'BUY_TRIGGER';
else signal = 'WATCHLIST'; // Green and touched, but closed below WMA
} else {
signal = 'WAIT';
}
} else {
const dist = (currentPrice - MA200) / MA200;
if (dist > 0 && dist < 0.05) signal = 'WATCHLIST'; // Within 5%
else if (dist < 0) signal = 'WAIT';
else signal = 'IGNORE';
}
// Mark symbols in portfolio - PORTFOLIO has priority over all signals
const isInPortfolio = portfolioSymbols.includes(symbol);
if (isInPortfolio) {
signal = 'PORTFOLIO';
}
// Details string
let details = '';
if (signal === 'PORTFOLIO') {
details = 'In Portfolio';
} else if (!isQuality) {
details = 'Low Quality';
} else if (touchedWMA) {
details = isGreen ? 'Rebound Confirm' : 'Testing Support';
} else {
details = `Dist: ${(((currentPrice - MA200) / MA200) * 100).toFixed(1)}%`;
}
return {
symbol,
price: currentPrice,
wma200: MA200,
roe,
debtToEquity,
isQuality,
lastCandleColor: isGreen ? 'GREEN' : 'RED',
touchedWMA,
signal,
details,
sector,
marketCap,
lastUpdated: new Date().toISOString(),
tradePlan: (signal === 'BUY_TRIGGER' || isInPortfolio) ? await this.buildTradePlan(symbol, currentPrice, lastCandle.high) : undefined
};
} catch (error: any) {
console.error(`Error analyzing ${symbol}:`, error.message);
return null;
}
}
/**
* Wilder's ATR Calculation
*/
private static calculateWilderATR(quotes: any[], period: number): number {
if (quotes.length < period + 1) return 0;
// 1. Calculate TRs
const trs = [];
for (let i = 1; i < quotes.length; i++) {
const high = quotes[i].high;
const low = quotes[i].low;
const prevClose = quotes[i - 1].close;
trs.push(Math.max(high - low, Math.abs(high - prevClose), Math.abs(low - prevClose)));
}
if (trs.length < period) return 0;
// 2. Initial SMA
let atr = trs.slice(0, period).reduce((a, b) => a + b, 0) / period;
// 3. Wilder Smoothing
for (let i = period; i < trs.length; i++) {
atr = (atr * (period - 1) + trs[i]) / period;
}
return atr;
}
/**
* Get Alpaca Portfolio State
*/
private static async getAlpacaState(): Promise<{ equity: number; buyingPower: number; positions: any[] }> {
const alpaca = new Alpaca({
keyId: process.env.ALPACA_KEY,
secretKey: process.env.ALPACA_SECRET,
paper: true,
});
const account = await alpaca.getAccount();
const positions = await alpaca.getPositions();
return {
equity: Number(account.equity),
buyingPower: Number(account.buying_power),
positions
};
}
/**
* Constructs a deterministic trade plan based on the "Rebound Confirm" playbook
*/
private static async buildTradePlan(symbol: string, currentPrice: number, triggerHigh: number): Promise<TradePlan> {
// Fetch Daily Bars for ATR (Yahoo currently used for simplicity and consistency)
// User requested Daily bars. analyzeStock used weekly.
const dailyHistory = await yahooFinance.chart(symbol, {
period1: '2023-01-01', // Enough for 14 ATR
interval: '1d'
});
const dailyQuotes = dailyHistory.quotes.filter((q: any) => q.close && q.open);
const atr = this.calculateWilderATR(dailyQuotes, RISK_CONFIG.atrPeriod);
// Fetch Alpaca State
let alpacaState = { equity: 100000, buyingPower: 100000, positions: [] as any[] };
try {
if (process.env.ALPACA_KEY) {
alpacaState = await this.getAlpacaState();
}
} catch (e) {
console.warn('Failed to fetch Alpaca state, using defaults:', e);
}
// Logic
const tick = 0.01;
const triggerLevel = triggerHigh;
const entryStop = Number((triggerLevel + tick).toFixed(2));
const entryLimit = Number((entryStop * (1 + RISK_CONFIG.entryLimitBufferBps / 10000)).toFixed(2));
const R = RISK_CONFIG.kAtr * atr;
const stopLoss = Number((entryStop - R).toFixed(2));
const takeProfit = Number((entryStop + RISK_CONFIG.rr * R).toFixed(2));
// Sizing
const riskBudget = alpacaState.equity * RISK_CONFIG.riskPct;
const riskPerShare = entryStop - stopLoss;
let qty = 0;
let qtyByRisk = 0;
let qtyByNotional = 0;
let qtyByBuyingPower = 0;
if (riskPerShare > 0) {
qtyByRisk = Math.floor(riskBudget / riskPerShare);
qtyByNotional = Math.floor((alpacaState.equity * RISK_CONFIG.maxPositionPct) / entryStop);
qtyByBuyingPower = Math.floor(alpacaState.buyingPower / entryStop);
qty = Math.max(0, Math.min(qtyByRisk, qtyByNotional, qtyByBuyingPower));
}
const recommendation = qty >= 1 ? 'BUY' : 'NO_TRADE';
return {
symbol,
recommendation,
playbook: 'BUY_TRIGGER_REBOUND_CONFIRM',
riskModel: {
atrPeriod: RISK_CONFIG.atrPeriod,
atr: Number(atr.toFixed(2)),
kAtr: RISK_CONFIG.kAtr,
rr: RISK_CONFIG.rr
},
levels: {
entry: entryStop,
entryLimit,
stopLoss,
takeProfit
},
sizing: {
equity: alpacaState.equity,
buyingPower: alpacaState.buyingPower,
riskPct: RISK_CONFIG.riskPct,
riskBudget: Number(riskBudget.toFixed(2)),
riskPerShare: Number(riskPerShare.toFixed(2)),
qty,
caps: {
maxPositionPct: RISK_CONFIG.maxPositionPct,
qtyByRisk,
qtyByNotional,
qtyByBuyingPower
}
},
orders: [
{
role: 'ENTRY',
type: 'STOP_LIMIT',
side: 'BUY',
stopPrice: entryStop,
limitPrice: entryLimit,
timeInForce: 'DAY',
qty,
expireAfterDays: 5
},
{
role: 'EXIT_AFTER_FILL',
type: 'OCO',
side: 'SELL',
takeProfitLimit: takeProfit,
stopLossStop: stopLoss,
qty
}
],
reasons: [
`signal=BUY_TRIGGER`,
`playbook=REBOUND_CONFIRM`,
`ATR_Risk_Model=1:${RISK_CONFIG.rr}`
],
followUp: [
"Submit stop-limit entry.",
"When filled, submit OCO exits (TP + SL).",
"Cancel entry if not filled after 5 trading days."
]
};
}
/**
* Processes a list of symbols in batches
*/
static async processBatch(symbols: string[], portfolioSymbols: string[] = [], onProgress?: (analyzed: number, total: number) => void): Promise<MungerStock[]> {
const lastSunday = this.getLastSunday();
const results: MungerStock[] = [];
let processedCount = 0;
// Chunking
for (let i = 0; i < symbols.length; i += BATCH_SIZE) {
const chunk = symbols.slice(i, i + BATCH_SIZE);
console.log(`Processing batch ${i / BATCH_SIZE + 1} / ${Math.ceil(symbols.length / BATCH_SIZE)}...`);
const promises = chunk.map(symbol => this.analyzeStock(symbol, lastSunday, portfolioSymbols));
const chunkResults = await Promise.all(promises);
chunkResults.forEach(res => {
if (res) results.push(res);
});
processedCount += chunk.length;
if (onProgress) {
onProgress(Math.min(processedCount, symbols.length), symbols.length);
}
// Small delay to be polite to the API
await new Promise(r => setTimeout(r, 500));
}
return results;
}
/**
* Deep dive method for single ticker
*/
static async deepDive(symbol: string): Promise<any> {
try {
const [quote, summary, fundamentalsTimeSeries] = await Promise.all([
yahooFinance.quote(symbol),
yahooFinance.quoteSummary(symbol, {
modules: [
'assetProfile',
// Financial statements deprecated in quoteSummary, using fundamentalsTimeSeries instead
'calendarEvents',
'defaultKeyStatistics',
'earnings',
'earningsHistory',
'earningsTrend',
'financialData',
'fundOwnership',
'indexTrend',
'industryTrend',
'insiderHolders',
'insiderTransactions',
'institutionOwnership',
'majorDirectHolders',
'majorHoldersBreakdown',
'netSharePurchaseActivity',
'price',
'quoteType',
'recommendationTrend',
'secFilings',
'sectorTrend',
'summaryDetail',
'summaryProfile',
'upgradeDowngradeHistory'
]
}).catch((e: any) => {
console.warn(`Partial summary fail for ${symbol}: ${e.message}`);
return {};
}),
// Disable validation as Yahoo API frequently changes schema causing library errors
yahooFinance.fundamentalsTimeSeries(symbol, { period1: '2020-01-01', module: 'all' }, { validateResult: false }).catch((e: any) => {
console.warn(`Fundamentals fail for ${symbol}: ${e.message}`);
return [];
})
]);
return {
quote,
fundamentalsTimeSeries,
...summary
};
} catch (e: any) {
console.error(`Deep dive failed for ${symbol}`, e);
throw e;
}
}
}
|