Quarter Reference
Reference quarter for the latest reported financials.Format:
"YYYYQ#" (e.g., "2024Q3")Example: "2024Q3"Source: Screener.in consolidated quarterly API (cq.get("YEAR") split on |)Extraction:Net Profit (in Crores)
Net profit for the most recent reported quarter.Unit: Crores (Cr.)Example:
15234.50Source: cq["Net Profit"][0]Net profit for the quarter immediately before the latest.Unit: Crores (Cr.)Example:
14120.30Source: cq["Net Profit"][1]Net profit from two quarters ago.Unit: Crores (Cr.)Example:
13450.80Source: cq["Net Profit"][2]Net profit from three quarters ago.Unit: Crores (Cr.)Example:
12980.20Source: cq["Net Profit"][3]Net profit from the same quarter one year ago (YoY comparison base).Unit: Crores (Cr.)Example:
11200.00Source: cq["Net Profit"][4]Quarter-over-Quarter percentage change in Net Profit.Calculation:Example:
7.90 (indicating 7.9% QoQ growth)Precision: Rounded to 2 decimal placesYear-over-Year percentage change in Net Profit.Calculation:Example:
36.02 (indicating 36.02% YoY growth)Precision: Rounded to 2 decimal placesEarnings Per Share (EPS)
Earnings per share for the latest quarter.Unit: Rupees (₹)Example:
23.45Source: cq["Earnings Per Share"][0]EPS for the previous quarter.Unit: Rupees (₹)Example:
21.80Source: cq["Earnings Per Share"][1]EPS from two quarters ago.Unit: Rupees (₹)Example:
20.60Source: cq["Earnings Per Share"][2]EPS from three quarters ago.Unit: Rupees (₹)Example:
19.90Source: cq["Earnings Per Share"][3]EPS from the same quarter one year ago.Unit: Rupees (₹)Example:
17.20Source: cq["Earnings Per Share"][4]Quarter-over-Quarter percentage change in EPS.Calculation:Example:
7.57Precision: Rounded to 2 decimal placesYear-over-Year percentage change in EPS.Calculation:Example:
36.34Precision: Rounded to 2 decimal placesAnnual EPS for the previous fiscal year.Unit: Rupees (₹)Example:
78.50Source: warehouse["EPS"][0] from annual warehouse dataAnnual EPS from two fiscal years ago.Unit: Rupees (₹)Example:
65.30Source: warehouse["EPS"][1] from annual warehouse dataSales (in Crores)
Total sales/revenue for the latest quarter.Unit: Crores (Cr.)Example:
245600.00Source: cq["Sales"][0]Sales for the previous quarter.Unit: Crores (Cr.)Example:
238900.00Source: cq["Sales"][1]Sales from two quarters ago.Unit: Crores (Cr.)Example:
232100.00Source: cq["Sales"][2]Sales from three quarters ago.Unit: Crores (Cr.)Example:
227800.00Source: cq["Sales"][3]Sales from the same quarter one year ago.Unit: Crores (Cr.)Example:
215400.00Source: cq["Sales"][4]Quarter-over-Quarter percentage change in Sales.Calculation:Example:
2.80Precision: Rounded to 2 decimal placesYear-over-Year percentage change in Sales.Calculation:Example:
14.02Precision: Rounded to 2 decimal placesCompounded Annual Growth Rate (CAGR) of sales over the past 5 years.Calculation:Example:
12.50 (indicating 12.5% CAGR)Source: Screener.in annual warehouse dataPrecision: Rounded to 2 decimal placesOperating Profit Margin (OPM)
Operating Profit Margin for the latest quarter.Unit: Percentage (%)Example:
11.50Source: cq["OPM %"][0]OPM for the previous quarter.Unit: Percentage (%)Example:
10.80Source: cq["OPM %"][1]OPM from two quarters ago.Unit: Percentage (%)Example:
10.20Source: cq["OPM %"][2]OPM from three quarters ago.Unit: Percentage (%)Example:
9.90Source: cq["OPM %"][3]OPM from the same quarter one year ago.Unit: Percentage (%)Example:
9.50Source: cq["OPM %"][4]Quarter-over-Quarter percentage point change in OPM.Calculation:Example:
6.48Note: This represents the percentage change in the OPM ratio itself, not percentage points.Precision: Rounded to 2 decimal placesYear-over-Year percentage point change in OPM.Calculation:Example:
21.05Precision: Rounded to 2 decimal placesTrailing Twelve Months Operating Profit Margin.Unit: Percentage (%)Example:
10.60Source: warehouse["OPM %"][0] from annual warehouse dataData Sources
- Quarterly Data: Screener.in Consolidated Quarterly API (
cqobject) - Annual Data: Screener.in Annual Warehouse API (
warehouseobject) - Extraction:
bulk_market_analyzer.py:211-245
Calculation Notes
- QoQ/YoY calculations use safe division with zero-check to prevent errors
- Array indexing:
[0]= latest,[1]= previous,[2]= 2Q back,[3]= 3Q back,[4]= last year same quarter - Helper function for safe float extraction: