Stock market data on a screen

상승율 톱텐의 포트폴리오 최적화, 마르코프 확률

Upload your stock data to find signals, optimize portfolios, and get AI-powered forecasts.

Analysis Results

0 stocks found.

CodeCloseVol Ratio
Load data and run analysis.

Signal Logic

// Strong Demand + New High Signal
const volumeIncrease = volume / avg(volume, 10) >= 4;
const largeBullishCandle = close > open AND close / ref(close, 1) >= 1.06;
const newHigh = high >= highest(high, 20);

// Search Condition
// Find stocks meeting all three conditions on the previous day,
// with a price increase of 15% or less.
const signalTriggered = volumeIncrease && largeBullishCandle && newHigh;
const withinRiseLimit = (close / ref(close, 1) - 1) * 100 <= 15;

search(yesterday(signalTriggered && withinRiseLimit));

Load data and run analysis to see results.