Beskrivelse
todo
| Seneste handel | 2026-05-24 | Sidste løb | 10 hours ago |
| Ydeevne | 121.00% | Nuværende besiddelser | 109 |
Regler
/*
* Sample query with basic examples
*/
country = US;
exchange != OTC;
// mid/large cap
MarketCap > 1b and MarketCap < 7b;
// above the trend line and above a dollar
//Price>1;
// price > ema({20d});
// a simple valuation metric
( Assets-Liabilities ) * 50 > MarketCap;
//insider buying
//InsiderOfficerBuyerCount1Year > 1;
EBit3YrAvgToEv > -2 and EBit3YrAvgToEv < 2;
InsiderOfficerScore > 50;
/*
* The Enterprise Multiple is a metric used in valuation,
* equal to Enterprise Value divided by Operating Income.
* As it accounts for debt, the Enterprise Multiple analyzes a
* firm from the perspective of a would-be acquirer. 5-->10
*/
( MarketCap + Debt + MinorityInterest - CashAndEquivalents ) / ( OperatingIncome ) < 10;
/*
* Eliminate all stocks not in top 75% of two value metrics.
*/
rankPercentile(EBitToEv) > 25;