-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_output.json
More file actions
10050 lines (10050 loc) · 402 KB
/
Copy pathtest_output.json
File metadata and controls
10050 lines (10050 loc) · 402 KB
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
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"document_info": {
"filename": "fund_factsheet.pdf",
"total_pages": 17
},
"pages": [
{
"page_number": 1,
"content": [
{
"type": "paragraph",
"section": null,
"sub_section": null,
"text": "June 2025 Page | Mutual Fund investments are subject to market risks, read all scheme related documents carefully. 1"
},
{
"type": "paragraph",
"section": "June 2025",
"sub_section": null,
"text": "June 2025"
},
{
"type": "chart",
"section": "June 2025",
"sub_section": null,
"description": "Chart/Image found on page 1",
"table_data": null
},
{
"type": "paragraph",
"section": "MONTHLY FACTSHEET",
"sub_section": null,
"text": "MONTHLY FACTSHEET"
},
{
"type": "chart",
"section": "MONTHLY FACTSHEET",
"sub_section": null,
"description": "Chart/Image found on page 1",
"table_data": null
},
{
"type": "chart",
"section": "MONTHLY FACTSHEET",
"sub_section": null,
"description": "Chart/Image found on page 1",
"table_data": null
},
{
"type": "table",
"section": "MONTHLY FACTSHEET",
"sub_section": null,
"description": "Table with 3 rows and 2 columns",
"table_data": [
[
0,
1
],
[
"",
""
],
[
"",
""
]
]
},
{
"type": "table",
"section": "MONTHLY FACTSHEET",
"sub_section": null,
"description": "Table with 5 rows and 4 columns",
"table_data": [
[
0,
1,
2,
3
],
[
"",
"",
"",
""
],
[
"",
"",
"",
""
],
[
"",
"",
"",
""
],
[
"",
"",
"",
""
]
]
}
]
},
{
"page_number": 2,
"content": [
{
"type": "paragraph",
"section": null,
"sub_section": null,
"text": "June 2025 Page | Mutual Fund investments are subject to market risks, read all scheme related documents carefully. 1"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Nifty EPS",
"text": "*Excluding TATA Motors."
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Nifty EPS",
"text": "Source: Motilal Oswal Financial Services (MOFS). Future estimates are taken as the average values provided by MOFS, UBS, Kotak Securities."
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Nifty EPS",
"text": "FY02 FY03 FY04 FY05 FY06 FY07 FY08 FY09 FY10 FY11 FY12 FY13 FY14 FY15 FY16 FY17 FY18 FY19 FY20 FY21 FY22 FY23 FY24 FY25E FY26E"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Nifty EPS",
"text": "78 92 131 169 184"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Nifty EPS",
"text": "236"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Nifty EPS",
"text": "281 251 247"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Nifty EPS",
"text": "315 348 369 405 416 397 427 451 483 478"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Nifty EPS",
"text": "542"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Nifty EPS",
"text": "728"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Nifty EPS",
"text": "807"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Nifty EPS",
"text": "987"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Nifty EPS",
"text": "1110"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Nifty EPS",
"text": "1268"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Nifty EPS",
"text": "Nifty EPS"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Net FPI flows: Debt ($bn) -2.0 -3.0 3.7 1.4 1.4 1.6",
"text": "DII ($bn) 3.3 4.3 7.4 10.0 4.0"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Net FPI flows: Debt ($bn) -2.0 -3.0 3.7 1.4 1.4 1.6",
"text": "Net FPI flows: Debt ($bn) -2.0 -3.0 3.7 1.4 1.4 1.6"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Net FPI flows: Equity ($bn) 2.3 0.5 -0.4 -4.0 -9.0 1.8",
"text": "Net FPI flows: Equity ($bn) 2.3 0.5 -0.4 -4.0 -9.0 1.8"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Industrial Sector",
"text": "Flows"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Industry Credit (%YoY) 6.6 7.8 7.1 8.0 7.2 Deposits (%YoY) 9.9 10.3 12.0 12.1 9.8 Currency in circulation (%YoY) 5.8 5.6 5.3 5.9",
"text": "Forex reserves ($bn) 693 688 668 639 631 636 INR/USD (month end) 85.5 85.1 85.6 87.4 86.6 85.6 10Y G-Sec yield (%) 6.4 6.6 6.7 6.7 6.8"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Industry Credit (%YoY) 6.6 7.8 7.1 8.0 7.2 Deposits (%YoY) 9.9 10.3 12.0 12.1 9.8 Currency in circulation (%YoY) 5.8 5.6 5.3 5.9",
"text": "Industry Credit (%YoY) 6.6 7.8 7.1 8.0 7.2 Deposits (%YoY) 9.9 10.3 12.0 12.1 9.8 Currency in circulation (%YoY) 5.8 5.6 5.3 5.9"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Credit Growth (%YoY) 9.9 11.0 12.3 12.5 11.2",
"text": "Credit Growth (%YoY) 9.9 11.0 12.3 12.5 11.2"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Industrial Sector",
"text": "Money & Banking"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Aviation Cargo (% YoY) 11.5 3.8 -4.9 7.0 8.0",
"text": "Direct tax collection (% YoY) -3.0 15.2 54.3 -11.6 12.5"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Aviation Cargo (% YoY) 11.5 3.8 -4.9 7.0 8.0",
"text": "E-way Bill (Mn) - 119.3 124.5 111.6 118.1 112.0"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Aviation Cargo (% YoY) 11.5 3.8 -4.9 7.0 8.0",
"text": "GST collections (Rs. Bn) 2011 2367 1961 1836 1955 1769"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Aviation Cargo (% YoY) 11.5 3.8 -4.9 7.0 8.0",
"text": "Air passenger traffic: Domestic (% YoY) 8.5 8.8 11.0 11.3 8.2"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Industrial Sector",
"text": "Services"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Trade Deficit ($ bn) -26.4 -21.5 -14.1 -23.1 -20.7",
"text": "Trade Deficit ($ bn) -26.4 -21.5 -14.1 -23.1 -20.7"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Fiscal Deficit (% of full year target) 11.9 100.5 85.8 74.5 58.2",
"text": "Fiscal Deficit (% of full year target) 11.9 100.5 85.8 74.5 58.2"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Nifty EPS",
"text": "Deficit"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Credit Card Outstanding (% YoY) 10.6 10.6 11.2 13.0 15.6",
"text": "WPI (%YoY) 0.9 2.0 2.4 2.5 2.6"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Credit Card Outstanding (% YoY) 10.6 10.6 11.2 13.0 15.6",
"text": "CPI (%YoY) 3.2 3.3 3.6 4.3 5.2"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Nifty EPS",
"text": "Inflation"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Aviation Cargo (% YoY) 11.5 3.8 -4.9 7.0 8.0",
"text": "Aviation Cargo (% YoY) 11.5 3.8 -4.9 7.0 8.0"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Energy Consumption (YoY) - 2.2 6.7 -0.8 2.7 5.9",
"text": "Energy Consumption (YoY) - 2.2 6.7 -0.8 2.7 5.9"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Manufacturing PMI 57.6 58.2 58.1 56.3 57.7 56.4",
"text": "Railway freight Container Service (%YoY) - 0.3 1.3"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Manufacturing PMI 57.6 58.2 58.1 56.3 57.7 56.4",
"text": "Manufacturing PMI 57.6 58.2 58.1 56.3 57.7 56.4"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Industrial Output (%YoY) 2.7 3.9 2.7 5.2 3.7",
"text": "Industrial Output (%YoY) 2.7 3.9 2.7 5.2 3.7"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Industrial Sector",
"text": "Industrial Sector"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Credit Card Outstanding (% YoY) 10.6 10.6 11.2 13.0 15.6",
"text": "Credit Card Outstanding (% YoY) 10.6 10.6 11.2 13.0 15.6"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": null,
"text": "Passenger car sales (%YoY)* -5.9 -4.3 -8.3 -2.1 8.9"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": null,
"text": "Two-wheeler sales (%YoY) -16.7 11.4 -9.0 2.1 -8.8"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Macro Economy & Event Update",
"text": "Consumption"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Nifty EPS",
"text": "Apr-25 May-25 Mar-25 Feb-25 Jan-25 Dec-24"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Macro Economy & Event Update",
"text": "Macro-Economic Indicators"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Macro Economy & Event Update",
"text": "Macro Economy & Event Update"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": null,
"text": "MONTHLY MARKET UPDATE"
},
{
"type": "chart",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Macro Economy & Event Update",
"description": "Chart/Image found on page 2",
"table_data": null
}
]
},
{
"page_number": 3,
"content": [
{
"type": "paragraph",
"section": null,
"sub_section": null,
"text": "June 2025 Page | Mutual Fund investments are subject to market risks, read all scheme related documents carefully. 2"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Indian Equity Markets: May 2025 Indian benchmark equity indices witnessed marginal gains during the month. Markets corrected during the early part of May 2025 due to escalating tensions between India and Pakistan, following India’s launch of ‘Operation Sindoor’ targeting terrorist infrastructure in Pakistan and Pakistan-occupied Jammu and Kashmir. However, sentiment improved thereafter as tensions eased. The Nifty 50 and BSE Sensex indices posted monthly gains of 1.7% and 1.5%, respectively, in May 2025. However, the benchmark indices remain down by approximately 5-6% from their peak. Foreign Portfolio Investors (FPIs) continued to remain net buyers for the second consecutive month with a net inflow of US$2.3 billion. Meanwhile, Domestic Institutional Investors (DIIs) bought US$7.9 billion during the month. The broader market indices' performance was comparatively much better, with BSE MidCap and BSE SmallCap reporting monthly gains of 5.3% and 10.6%, respectively. Among the sector indices, Defence, Industrials, Real Estate and Metals outperformed with month gains of 21.8%, 14.3%, 7.2% and 5.9%, respectively. However, Utilities and FMCG underperformed with monthly losses of 0.9% and 0.7%, respectively. India’s real GDP growth accelerated to 7.4% YoY in Q4FY25 from 6.4% in the previous quarter. In Q4FY25, the agriculture sector recorded healthy growth of 5.4%, supported by strong agricultural output. The manufacturing sector’s growth further recovered to 4.8% YoY from 3.6% YoY in the previous quarter. Services sector growth remained resilient as weakness in the Trade+ segment was more than offset by strong construction activity and improvement in the Financial Services+ segment. Private consumption growth slowed to 6.0% YoY in Q4FY25 from 8.1% in the previous quarter, as indicators point to subdued urban consumption. Fixed investment growth rebounded to 9.4% YoY in Q4 from 5.2% in Q3 as government capital expenditure picked up. For FY25, real GDP growth eased to 6.5% YoY from 9.2% in the previous year. Nominal GDP growth declined to 9.8% YoY in FY25 from 12% YoY in FY24, as weaker real GDP growth outweighed the impact of a higher GDP deflator (inflation). On the production side, the manufacturing sector witnessed the steepest decline in its contribution to GDP growth in FY25, while on the expenditure side, fixed investment experienced the sharpest drop in contribution, followed by government consumption. India’s Consumer Price Index (CPI) inflation eased to 3.16% YoY in April 2025 from 3.34% in the previous month. The decline in headline inflation was driven by a fall in food inflation to 2.1% YoY in April 2025 from 2.9% YoY in March 2025. Core inflation (which excludes food and fuel) remained flat at 4.2% YoY. The IMD has updated the forecast for the Southwest Monsoon to 106% of the long-period average, up from the previous 105%. The IMD assigned a 59% likelihood to an above-normal or excess monsoon, a 31% chance of a normal monsoon, and only a 10% chance of it being below normal or deficient. Outlook The reciprocal tariffs announced on 2nd April pose a significant threat to global growth. These measures are likely to drive inflation in the United States and disrupt global trade flows. While India is relatively better positioned than many other countries, which may face steeper tariffs, its exports to the US are still expected to come under pressure due to a slowdown in the US economy. However, merchandise exports to the US amount to only 2% of GDP, which limits the impact of tariffs. With significant uncertainty surrounding the implementation of tariffs and their potential impact on global trade, the equity risk premium has the potential to rise across markets. Hence, investors should prepare for further volatility. The domestic macro environment is turning conducive to an economic recovery. First, income tax reductions will increase consumers' disposable income, benefiting consumption-driven sectors, particularly discretionary consumption. Second, food inflation is expected to remain benign due to robust agricultural production, which will further support consumption. Third, more interest rate cuts are expected in 2025 to stimulate the economy. Fourth, regulatory easing is also underway, with the RBI reversing the November 2023 hike in risk weights for bank loans to NBFCs and microfinance consumer credit loans. Looking ahead, we expect key shifts in market trends: • Growth leadership is shifting from government capital expenditures to consumer discretionary spending. • After an outperformance of around three years, Value may take a back seat, and Quality and growth factors may regain favour. Looking ahead, discretionary consumption is expected to rise, driven by budget stimulus for the urban middle class, followed by a pay commission-related boost next year. Additionally, liquidity easing, accompanied by rate cuts, would create a favourable premise for growth and quality to come back. • In our portfolios, we have been shifting some weight from Value to quality and growth over the last year. Several high-growth areas have strong value-creation potential. Key segments include auto EV plays, manufacturing, and pharma CDMO. The power transmission, distribution, and renewable energy sectors also present significant opportunities. Quick commerce is an emerging sector expected to experience exponential growth over the next five years. Additionally, telecom and high-quality private banks remain attractive value segments. We have consistently maintained a more favourable stance towards inward-looking sectors driven by domestic fundamentals, rather than those reliant on external or global factors. Our outlook continues to reflect this preference, as we believe domestic-oriented sectors offer greater resilience and stability amid global uncertainties.",
"text": "Source: CMIE, Bloomberg and Internal research"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Indian Equity Markets: May 2025 Indian benchmark equity indices witnessed marginal gains during the month. Markets corrected during the early part of May 2025 due to escalating tensions between India and Pakistan, following India’s launch of ‘Operation Sindoor’ targeting terrorist infrastructure in Pakistan and Pakistan-occupied Jammu and Kashmir. However, sentiment improved thereafter as tensions eased. The Nifty 50 and BSE Sensex indices posted monthly gains of 1.7% and 1.5%, respectively, in May 2025. However, the benchmark indices remain down by approximately 5-6% from their peak. Foreign Portfolio Investors (FPIs) continued to remain net buyers for the second consecutive month with a net inflow of US$2.3 billion. Meanwhile, Domestic Institutional Investors (DIIs) bought US$7.9 billion during the month. The broader market indices' performance was comparatively much better, with BSE MidCap and BSE SmallCap reporting monthly gains of 5.3% and 10.6%, respectively. Among the sector indices, Defence, Industrials, Real Estate and Metals outperformed with month gains of 21.8%, 14.3%, 7.2% and 5.9%, respectively. However, Utilities and FMCG underperformed with monthly losses of 0.9% and 0.7%, respectively. India’s real GDP growth accelerated to 7.4% YoY in Q4FY25 from 6.4% in the previous quarter. In Q4FY25, the agriculture sector recorded healthy growth of 5.4%, supported by strong agricultural output. The manufacturing sector’s growth further recovered to 4.8% YoY from 3.6% YoY in the previous quarter. Services sector growth remained resilient as weakness in the Trade+ segment was more than offset by strong construction activity and improvement in the Financial Services+ segment. Private consumption growth slowed to 6.0% YoY in Q4FY25 from 8.1% in the previous quarter, as indicators point to subdued urban consumption. Fixed investment growth rebounded to 9.4% YoY in Q4 from 5.2% in Q3 as government capital expenditure picked up. For FY25, real GDP growth eased to 6.5% YoY from 9.2% in the previous year. Nominal GDP growth declined to 9.8% YoY in FY25 from 12% YoY in FY24, as weaker real GDP growth outweighed the impact of a higher GDP deflator (inflation). On the production side, the manufacturing sector witnessed the steepest decline in its contribution to GDP growth in FY25, while on the expenditure side, fixed investment experienced the sharpest drop in contribution, followed by government consumption. India’s Consumer Price Index (CPI) inflation eased to 3.16% YoY in April 2025 from 3.34% in the previous month. The decline in headline inflation was driven by a fall in food inflation to 2.1% YoY in April 2025 from 2.9% YoY in March 2025. Core inflation (which excludes food and fuel) remained flat at 4.2% YoY. The IMD has updated the forecast for the Southwest Monsoon to 106% of the long-period average, up from the previous 105%. The IMD assigned a 59% likelihood to an above-normal or excess monsoon, a 31% chance of a normal monsoon, and only a 10% chance of it being below normal or deficient. Outlook The reciprocal tariffs announced on 2nd April pose a significant threat to global growth. These measures are likely to drive inflation in the United States and disrupt global trade flows. While India is relatively better positioned than many other countries, which may face steeper tariffs, its exports to the US are still expected to come under pressure due to a slowdown in the US economy. However, merchandise exports to the US amount to only 2% of GDP, which limits the impact of tariffs. With significant uncertainty surrounding the implementation of tariffs and their potential impact on global trade, the equity risk premium has the potential to rise across markets. Hence, investors should prepare for further volatility. The domestic macro environment is turning conducive to an economic recovery. First, income tax reductions will increase consumers' disposable income, benefiting consumption-driven sectors, particularly discretionary consumption. Second, food inflation is expected to remain benign due to robust agricultural production, which will further support consumption. Third, more interest rate cuts are expected in 2025 to stimulate the economy. Fourth, regulatory easing is also underway, with the RBI reversing the November 2023 hike in risk weights for bank loans to NBFCs and microfinance consumer credit loans. Looking ahead, we expect key shifts in market trends: • Growth leadership is shifting from government capital expenditures to consumer discretionary spending. • After an outperformance of around three years, Value may take a back seat, and Quality and growth factors may regain favour. Looking ahead, discretionary consumption is expected to rise, driven by budget stimulus for the urban middle class, followed by a pay commission-related boost next year. Additionally, liquidity easing, accompanied by rate cuts, would create a favourable premise for growth and quality to come back. • In our portfolios, we have been shifting some weight from Value to quality and growth over the last year. Several high-growth areas have strong value-creation potential. Key segments include auto EV plays, manufacturing, and pharma CDMO. The power transmission, distribution, and renewable energy sectors also present significant opportunities. Quick commerce is an emerging sector expected to experience exponential growth over the next five years. Additionally, telecom and high-quality private banks remain attractive value segments. We have consistently maintained a more favourable stance towards inward-looking sectors driven by domestic fundamentals, rather than those reliant on external or global factors. Our outlook continues to reflect this preference, as we believe domestic-oriented sectors offer greater resilience and stability amid global uncertainties.",
"text": "Indian Equity Markets: May 2025 Indian benchmark equity indices witnessed marginal gains during the month. Markets corrected during the early part of May 2025 due to escalating tensions between India and Pakistan, following India’s launch of ‘Operation Sindoor’ targeting terrorist infrastructure in Pakistan and Pakistan-occupied Jammu and Kashmir. However, sentiment improved thereafter as tensions eased. The Nifty 50 and BSE Sensex indices posted monthly gains of 1.7% and 1.5%, respectively, in May 2025. However, the benchmark indices remain down by approximately 5-6% from their peak. Foreign Portfolio Investors (FPIs) continued to remain net buyers for the second consecutive month with a net inflow of US$2.3 billion. Meanwhile, Domestic Institutional Investors (DIIs) bought US$7.9 billion during the month. The broader market indices' performance was comparatively much better, with BSE MidCap and BSE SmallCap reporting monthly gains of 5.3% and 10.6%, respectively. Among the sector indices, Defence, Industrials, Real Estate and Metals outperformed with month gains of 21.8%, 14.3%, 7.2% and 5.9%, respectively. However, Utilities and FMCG underperformed with monthly losses of 0.9% and 0.7%, respectively. India’s real GDP growth accelerated to 7.4% YoY in Q4FY25 from 6.4% in the previous quarter. In Q4FY25, the agriculture sector recorded healthy growth of 5.4%, supported by strong agricultural output. The manufacturing sector’s growth further recovered to 4.8% YoY from 3.6% YoY in the previous quarter. Services sector growth remained resilient as weakness in the Trade+ segment was more than offset by strong construction activity and improvement in the Financial Services+ segment. Private consumption growth slowed to 6.0% YoY in Q4FY25 from 8.1% in the previous quarter, as indicators point to subdued urban consumption. Fixed investment growth rebounded to 9.4% YoY in Q4 from 5.2% in Q3 as government capital expenditure picked up. For FY25, real GDP growth eased to 6.5% YoY from 9.2% in the previous year. Nominal GDP growth declined to 9.8% YoY in FY25 from 12% YoY in FY24, as weaker real GDP growth outweighed the impact of a higher GDP deflator (inflation). On the production side, the manufacturing sector witnessed the steepest decline in its contribution to GDP growth in FY25, while on the expenditure side, fixed investment experienced the sharpest drop in contribution, followed by government consumption. India’s Consumer Price Index (CPI) inflation eased to 3.16% YoY in April 2025 from 3.34% in the previous month. The decline in headline inflation was driven by a fall in food inflation to 2.1% YoY in April 2025 from 2.9% YoY in March 2025. Core inflation (which excludes food and fuel) remained flat at 4.2% YoY. The IMD has updated the forecast for the Southwest Monsoon to 106% of the long-period average, up from the previous 105%. The IMD assigned a 59% likelihood to an above-normal or excess monsoon, a 31% chance of a normal monsoon, and only a 10% chance of it being below normal or deficient. Outlook The reciprocal tariffs announced on 2nd April pose a significant threat to global growth. These measures are likely to drive inflation in the United States and disrupt global trade flows. While India is relatively better positioned than many other countries, which may face steeper tariffs, its exports to the US are still expected to come under pressure due to a slowdown in the US economy. However, merchandise exports to the US amount to only 2% of GDP, which limits the impact of tariffs. With significant uncertainty surrounding the implementation of tariffs and their potential impact on global trade, the equity risk premium has the potential to rise across markets. Hence, investors should prepare for further volatility. The domestic macro environment is turning conducive to an economic recovery. First, income tax reductions will increase consumers' disposable income, benefiting consumption-driven sectors, particularly discretionary consumption. Second, food inflation is expected to remain benign due to robust agricultural production, which will further support consumption. Third, more interest rate cuts are expected in 2025 to stimulate the economy. Fourth, regulatory easing is also underway, with the RBI reversing the November 2023 hike in risk weights for bank loans to NBFCs and microfinance consumer credit loans. Looking ahead, we expect key shifts in market trends: • Growth leadership is shifting from government capital expenditures to consumer discretionary spending. • After an outperformance of around three years, Value may take a back seat, and Quality and growth factors may regain favour. Looking ahead, discretionary consumption is expected to rise, driven by budget stimulus for the urban middle class, followed by a pay commission-related boost next year. Additionally, liquidity easing, accompanied by rate cuts, would create a favourable premise for growth and quality to come back. • In our portfolios, we have been shifting some weight from Value to quality and growth over the last year. Several high-growth areas have strong value-creation potential. Key segments include auto EV plays, manufacturing, and pharma CDMO. The power transmission, distribution, and renewable energy sectors also present significant opportunities. Quick commerce is an emerging sector expected to experience exponential growth over the next five years. Additionally, telecom and high-quality private banks remain attractive value segments. We have consistently maintained a more favourable stance towards inward-looking sectors driven by domestic fundamentals, rather than those reliant on external or global factors. Our outlook continues to reflect this preference, as we believe domestic-oriented sectors offer greater resilience and stability amid global uncertainties."
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Equity Market",
"text": "Equity Market"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": null,
"text": "MONTHLY MARKET UPDATE"
},
{
"type": "chart",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Equity Market",
"description": "Chart/Image found on page 3",
"table_data": null
},
{
"type": "chart",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Equity Market",
"description": "Chart/Image found on page 3",
"table_data": null
}
]
},
{
"page_number": 4,
"content": [
{
"type": "paragraph",
"section": null,
"sub_section": null,
"text": "June 2025 Page | Mutual Fund investments are subject to market risks, read all scheme related documents carefully. 3"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Debt Market",
"text": "May 2025: Assessment and Outlook Macros: India’s Consumer Price Index (CPI) inflation eased to 3.16% YoY in April 2025 from 3.34% in the previous month. The decline in headline inflation was driven by a fall in food inflation to 2.1% YoY in April 2025 from 2.9% YoY in March 2025. Within food, a lower contribution from vegetables drove the decline in headline inflation. Vegetable inflation eased to -11.0% YoY in April 2025 from -7.0% YoY in March, on account of a 3.0% MoM correction in vegetable prices. Core inflation (which excludes food and fuel) remained flat at 4.2% YoY. Underlying inflation pressures remained subdued, as indicated by a refined measure of core inflation (which additionally excludes transportation fuel and valuables), measuring 3.5% YoY in April 2025. The inflation outlook remains benign and especially in the next 6 months headline CPI will benefit from a big base effect as well. The Reserve Bank of India (RBI) announced an all-time high dividend transfer of Rs 2.69 trillion to the Government of India. Furthermore, the revised range for the Contingency Risk Buffer (CRB) has been decided at 6.0 ± 1.5% of the balance sheet size (as against the existing level of 6.5%- 5.5%) – as part of the periodic review of the Economic Capital Framework. The CRB has been raised to 7.5%. The IMD has updated the forecast for the Southwest Monsoon to 106% (+/- 4%) of the long-period average (LPA), up from the previous 105% (+/- 5%). During June to September 2025, normal to above normal rainfall is very likely over most parts of the country, except some areas of Northwest and East India and many areas of Northeast India, where below normal rainfall is very likely. The average rainfall for the country as a whole during June 2025 is most likely to be above normal (>108% of LPA). In FY25, direct tax collection rose by 13% YoY to Rs. 21.7 tn, up from Rs. 19.2 tn in FY24 but fell short of the revised target of Rs. 22.4 tn by Rs. 673 bn, primarily due to a Rs. 740 bn shortfall in personal income tax. Disinvestment proceeds remained weak at Rs. 172 bn, well below the Rs. 330 bn target. Revenue expenditure increased by 3.1% YoY to Rs. 36 tn, lower than the revised estimate of Rs. 37 tn, while capital expenditure exceeded the target by Rs. 336 bn to reach Rs. 10.5 tn. The fiscal deficit target of 4.8% of GDP was met as budgeted. Global: Moody’s Ratings downgraded the United States’ last remaining top-tier credit rating, citing growing concerns over the country’s rising debt and persistent budget deficits. The agency cut the US rating from AAA to Aa1, aligning with earlier downgrades by Fitch and S&P Global, and marking the first time all three major agencies have rated the US below AAA. During the mid-month, US and China agreed to a 90-day tariff truce, with deeper-than-expected tariff cuts. Meanwhile, the uncertainty around the tariffs continued as the US federal court blocked the US President from imposing sweeping tariffs on imports under an emergency powers law. However, the US appeals court reinstated the US President's tariffs a day after they were deemed illegal. President Donald Trump announced that the US will double its current tariff rate on steel and aluminium imports from 25% to 50%, effective June 4, 2025. Trump also accused China of violating the Geneva deal. The US 10Y yield has surged by around 40bps in May to 4.6% (as of 21 May) amidst fiscal worries as US fiscal concerns are in focus with tax bill under consideration that could increase the US deficit by USD 3.8 trillion over the next decade, according to the Congressional Budget Office."
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Spreads Maturity Period AAA AA A",
"text": "10 Yr 73 145 300"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Spreads Maturity Period AAA AA A",
"text": "5 Yr 87 162 294"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Spreads Maturity Period AAA AA A",
"text": "30-Apr-25"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Spreads Maturity Period AAA AA A",
"text": "3 Yr 92 162 301"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Spreads Maturity Period AAA AA A",
"text": "1 Yr 99 172 314"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Spreads Maturity Period AAA AA A",
"text": "10 Yr 74 150 290"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Spreads Maturity Period AAA AA A",
"text": "5 Yr 91 164 292"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Spreads Maturity Period AAA AA A",
"text": "30-May-25"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Spreads Maturity Period AAA AA A",
"text": "3 Yr 98 167 300"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Spreads Maturity Period AAA AA A",
"text": "1 Yr 103 175 314"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Spreads Maturity Period AAA AA A",
"text": "Spreads Maturity Period AAA AA A"
},
{
"type": "chart",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Spreads Maturity Period AAA AA A",
"description": "Chart/Image found on page 4",
"table_data": null
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Debt Market",
"text": "10 Year Benchmark Bond Movement Spread Movement"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Debt Market",
"text": "Debt Market"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": null,
"text": "MONTHLY MARKET UPDATE"
},
{
"type": "chart",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Debt Market",
"description": "Chart/Image found on page 4",
"table_data": null
},
{
"type": "chart",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Debt Market",
"description": "Chart/Image found on page 4",
"table_data": null
},
{
"type": "table",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Debt Market",
"description": "Table with 9 rows and 5 columns",
"table_data": [
[
"Spreads",
"Maturity Period",
"AAA",
"AA",
"A"
],
[
"30-May-25",
"1 Yr",
"103",
"175",
"314"
],
[
"",
"3 Yr",
"98",
"167",
"300"
],
[
"",
"5 Yr",
"91",
"164",
"292"
],
[
"",
"10 Yr",
"74",
"150",
"290"
],
[
"30-Apr-25",
"1 Yr",
"99",
"172",
"314"
],
[
"",
"3 Yr",
"92",
"162",
"301"
],
[
"",
"5 Yr",
"87",
"162",
"294"
],
[
"",
"10 Yr",
"73",
"145",
"300"
]
]
}
]
},
{
"page_number": 5,
"content": [
{
"type": "paragraph",
"section": null,
"sub_section": null,
"text": "June 2025 Page | Mutual Fund investments are subject to market risks, read all scheme related documents carefully. 4"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Debt Market",
"text": "Source: CMIE, Bloomberg and Internal research"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Debt Market",
"text": "While dovish policy continued in euro region (with another 25bps rate cut expectation in June) and China as PBoC cut key lending rates to record lows and reduced the reserve requirement ratio by 50bps. Local Markets: Despite significant volatility in global debt markets, domestic yields declined sharply last month. RBI continues to make largescale purchase of government securities from the secondary market as part of its operations to infuse liquidity into the banking system. Indian Fixed income markets remained supported in the month of May despite adverse global cues. The US yields climbed higher due to fiscal worries and firmer-than-expected economic activity data deferring interest rate cut expectations by the Fed. The UST 10Y yield has risen ~24 bps mom, closing the month of May at 4.40% (reaching highs of 4.63% during the month). Domestically, bond markets have rallied, barring the Indo-Pak border escalation episode. Favourable CPI inflation trends and record dividend announcement by the RBI supported the bond markets, though higher than expected GDP growth print at the end of the last week weighed on the bond market sentiments. The new benchmark 10Y G-sec is trading ~11 bps lower at around 6.21% since its issue. FPIs also continued inflows worth ~10k crores after profit booking in April. Average banking system liquidity surplus stood at Rs 1.7 lakh crore till mid-month and improved to ~2.2 lakh crore till the close of the month. RBI infused liquidity in the markets through Open Market Operations (OMOs) of Rs. 1.25 lakh crore exceeding market estimates on OMOs pushing the yield curve lower. We expect durable liquidity in the ~Rs5-6 trillion range over the next few months, with the flow of funds to the banking system expected to come with a lag as government spending picks up pace. we expect cash balances to moderate to around Rs2.7 trillion driven by debt buyback and continued government spending. Money market rates eased by 30bps across the 3-month to 1-year tenure favouring corporates and NBFC borrowers with risk premium narrowing with large infuse of liquidity. We think market has already priced in two rate cuts both in bonds and OIS markets, also spreads compressed between the G-sec and corporate bonds as investors subscribed for better accrual specially in the short-medium term yield curve i.e. 2–5-year maturity. The narrowing spread between the US treasury and India’s G-secs (at 165 bps it has narrowed by roughly three-quarters) may act as a deterrent for the yields to soften further significantly further add complexity of Japan rising yield and inflation. It is important to disentangle whether the narrowing gap is primarily due to India’s improving macroeconomic fundamentals or external developments like US monetary policy shifts. In truth, it is a combination of both. Outlook: Softening global commodity prices, above- normal rainfall expectations and probable improvement in agricultural output helping headline inflation remain benign. Combined with expectations of decline in the U.S. dollar index and anticipated rate cuts by the US Federal Reserve create further room for monetary easing in India leading to further decline in domestic yields in the coming months. We expect the Indian benchmark 10-year bond yield to trade in the 6.10-6.30% range taking into consideration scope for a deeper rate cut cycle and continued easy liquidity."
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Debt Market",
"text": "Debt Market"
},
{
"type": "paragraph",
"section": "MONTHLY MARKET UPDATE",
"sub_section": null,
"text": "MONTHLY MARKET UPDATE"
},
{
"type": "chart",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Debt Market",
"description": "Chart/Image found on page 5",
"table_data": null
},
{
"type": "chart",
"section": "MONTHLY MARKET UPDATE",
"sub_section": "Debt Market",
"description": "Chart/Image found on page 5",
"table_data": null
}
]
},
{
"page_number": 6,
"content": [
{
"type": "paragraph",
"section": null,
"sub_section": null,
"text": "June 2025 Page | Mutual Fund investments are subject to market risks, read all scheme related documents carefully. 5"
},
{
"type": "paragraph",
"section": "RISKOMETER",
"sub_section": "Very High Risk",
"text": "The risk of the benchmark is Very High"
},
{
"type": "paragraph",
"section": "RISKOMETER",
"sub_section": "Very High Risk",
"text": "The risk of the scheme is Very High"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Portfolio Beta 0.88 1.00",
"text": "Treynor 1.23 1.00"
},
{
"type": "paragraph",
"section": "RISKOMETER",
"sub_section": null,
"text": "RISKOMETER"
},
{
"type": "paragraph",
"section": "RISKOMETER",
"sub_section": null,
"text": "RISKOMETER"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Portfolio Beta 0.88 1.00",
"text": "R Squared 0.92 NA"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Total Amount Invested ( ` ) 1,20,000 3,60,000 6,00,000 12,00,000 12,70,000 Total Value as on May 31, 2025 ( ` ) 1,21,218 4,59,598 9,33,743 30,12,473 33,12,389 Returns 1.91% 16.57% 17.76% 17.53% 17.16% Total Value of Benchmark: BSE 500 TRI ( ` ) 1,01,079 3,66,482 7,37,753 21,76,184 23,78,528 Benchmark: BSE 500 TRI -28.15% 1.17% 8.21% 11.46% 11.37% Total Value of Additional Benchmark: BSE Sensex TRI ( ` ) 1,24,410 4,41,561 8,68,268 25,68,007 27,97,245 Additional Benchmark: BSE Sensex TRI 6.97% 13.76% 14.79% 14.56% 14.22% (Inception date :30-Oct-2014) (First Installment date :01-Nov-2014)",
"text": "*Investors should consult their financial advisers if in doubt about whether the product is suitable for them. ## With effect from November 05, 2018, Triparty Repo has replaced CBLOs for all schemes with provisions to invest in CBLO. BSE 500 TRI"
},
{
"type": "paragraph",
"section": "RISKOMETER",
"sub_section": "Low Risk",
"text": "Low Risk"
},
{
"type": "paragraph",
"section": "RISKOMETER",
"sub_section": "Very High Risk",
"text": "Very High Risk"
},
{
"type": "paragraph",
"section": "RISKOMETER",
"sub_section": "Low Risk",
"text": "Low Risk"
},
{
"type": "paragraph",
"section": "RISKOMETER",
"sub_section": "Very High Risk",
"text": "Very High Risk"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Portfolio Beta 0.88 1.00",
"text": "Portfolio Beta 0.88 1.00"
},
{
"type": "paragraph",
"section": "RISKOMETER",
"sub_section": "Low Risk",
"text": "Low to Moderate Risk"
},
{
"type": "paragraph",
"section": "RISKOMETER",
"sub_section": "High Risk",
"text": "High Risk"
},
{
"type": "paragraph",
"section": "RISKOMETER",
"sub_section": "Low Risk",
"text": "Low to Moderate Risk"
},
{
"type": "paragraph",
"section": "RISKOMETER",
"sub_section": "High Risk",
"text": "High Risk"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Sharpe Ratio 0.98 0.82",
"text": "Sharpe Ratio 0.98 0.82"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Total Amount Invested ( ` ) 1,20,000 3,60,000 6,00,000 12,00,000 12,70,000 Total Value as on May 31, 2025 ( ` ) 1,21,218 4,59,598 9,33,743 30,12,473 33,12,389 Returns 1.91% 16.57% 17.76% 17.53% 17.16% Total Value of Benchmark: BSE 500 TRI ( ` ) 1,01,079 3,66,482 7,37,753 21,76,184 23,78,528 Benchmark: BSE 500 TRI -28.15% 1.17% 8.21% 11.46% 11.37% Total Value of Additional Benchmark: BSE Sensex TRI ( ` ) 1,24,410 4,41,561 8,68,268 25,68,007 27,97,245 Additional Benchmark: BSE Sensex TRI 6.97% 13.76% 14.79% 14.56% 14.22% (Inception date :30-Oct-2014) (First Installment date :01-Nov-2014)",
"text": "THIS PRODUCT IS SUITABLE FOR INVESTORS WHO ARE SEEKING* • Capital appreciation over long term; • Investment predominantly in equity and equity related instruments."
},
{
"type": "paragraph",
"section": "RISKOMETER",
"sub_section": "Moderate Risk Moderately High Risk",
"text": "Moderate Risk Moderately High Risk"
},
{
"type": "paragraph",
"section": "RISKOMETER",
"sub_section": "Moderate Risk Moderately High Risk",
"text": "Moderate Risk Moderately High Risk"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Fund Benchmark",
"text": "Std. Dev (Annualised) 13.28% 14.52%"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Scheme Risk-O-Meter Benchmark Risk-O-Meter",
"text": "Scheme Risk-O-Meter Benchmark Risk-O-Meter"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Fund Benchmark",
"text": "Fund Benchmark"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Volatility Measures",
"text": "Volatility Measures"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Total Expense Ratio is as on the last business day of the month.",
"text": "Total Expense Ratio is as on the last business day of the month."
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Direct Plan : 0.81% p.a.",
"text": "Direct Plan : 0.81% p.a."
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Total Amount Invested ( ` ) 1,20,000 3,60,000 6,00,000 12,00,000 12,70,000 Total Value as on May 31, 2025 ( ` ) 1,21,218 4,59,598 9,33,743 30,12,473 33,12,389 Returns 1.91% 16.57% 17.76% 17.53% 17.16% Total Value of Benchmark: BSE 500 TRI ( ` ) 1,01,079 3,66,482 7,37,753 21,76,184 23,78,528 Benchmark: BSE 500 TRI -28.15% 1.17% 8.21% 11.46% 11.37% Total Value of Additional Benchmark: BSE Sensex TRI ( ` ) 1,24,410 4,41,561 8,68,268 25,68,007 27,97,245 Additional Benchmark: BSE Sensex TRI 6.97% 13.76% 14.79% 14.56% 14.22% (Inception date :30-Oct-2014) (First Installment date :01-Nov-2014)",
"text": "Source: MFI Explorer; Above returns are calculated assuming investment of ` 10,000/- on the 1st working day of every month. CAGR return are computed after accounting for the cash flow by using XIRR method (investment internal rate of return) for Regular Plan -Growth option. The above investment simulation is for illustrative purposes only and should not be construed as a promise on minimum returns and safeguard of capital."
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Regular Plan : 1.80% p.a.",
"text": "Regular Plan : 1.80% p.a."
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Total Expense Ratio",
"text": "Total Expense Ratio"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Monthly Average AUM : ` 7,169.02 crore",
"text": "Monthly Average AUM : ` 7,169.02 crore"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Net AUM : ` 7,400.42 crore",
"text": "Net AUM : ` 7,400.42 crore"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Total Amount Invested ( ` ) 1,20,000 3,60,000 6,00,000 12,00,000 12,70,000 Total Value as on May 31, 2025 ( ` ) 1,21,218 4,59,598 9,33,743 30,12,473 33,12,389 Returns 1.91% 16.57% 17.76% 17.53% 17.16% Total Value of Benchmark: BSE 500 TRI ( ` ) 1,01,079 3,66,482 7,37,753 21,76,184 23,78,528 Benchmark: BSE 500 TRI -28.15% 1.17% 8.21% 11.46% 11.37% Total Value of Additional Benchmark: BSE Sensex TRI ( ` ) 1,24,410 4,41,561 8,68,268 25,68,007 27,97,245 Additional Benchmark: BSE Sensex TRI 6.97% 13.76% 14.79% 14.56% 14.22% (Inception date :30-Oct-2014) (First Installment date :01-Nov-2014)",
"text": "Total Amount Invested ( ` ) 1,20,000 3,60,000 6,00,000 12,00,000 12,70,000 Total Value as on May 31, 2025 ( ` ) 1,21,218 4,59,598 9,33,743 30,12,473 33,12,389 Returns 1.91% 16.57% 17.76% 17.53% 17.16% Total Value of Benchmark: BSE 500 TRI ( ` ) 1,01,079 3,66,482 7,37,753 21,76,184 23,78,528 Benchmark: BSE 500 TRI -28.15% 1.17% 8.21% 11.46% 11.37% Total Value of Additional Benchmark: BSE Sensex TRI ( ` ) 1,24,410 4,41,561 8,68,268 25,68,007 27,97,245 Additional Benchmark: BSE Sensex TRI 6.97% 13.76% 14.79% 14.56% 14.22% (Inception date :30-Oct-2014) (First Installment date :01-Nov-2014)"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Fund Manager",
"text": "AUM as on May 31, 2025"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Scheme Performance Last 1 year PTP ( ` ) Last 3 years PTP ( ` ) Last 5 years PTP ( ` ) Last 10 years PTP ( ` ) Since Inception PTP ( ` )",
"text": "Scheme / Benchmark Last 1 year Last 3 years Last 5 years Last 10 years Since Inception"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": null,
"text": "Direct - IDCW : ` 52.0617"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": null,
"text": "Direct - Growth : ` 52.5982"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Scheme Performance Last 1 year PTP ( ` ) Last 3 years PTP ( ` ) Last 5 years PTP ( ` ) Last 10 years PTP ( ` ) Since Inception PTP ( ` )",
"text": "SIP - If you had invested ` 10,000 every month"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": null,
"text": "Regular - IDCW : ` 41.1039"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": null,
"text": "Regular - Growth : ` 46.4557"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Fund Manager",
"text": "NAV as on May 30, 2025"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Total Amount Invested ( ` ) 1,20,000 3,60,000 6,00,000 12,00,000 12,70,000 Total Value as on May 31, 2025 ( ` ) 1,21,218 4,59,598 9,33,743 30,12,473 33,12,389 Returns 1.91% 16.57% 17.76% 17.53% 17.16% Total Value of Benchmark: BSE 500 TRI ( ` ) 1,01,079 3,66,482 7,37,753 21,76,184 23,78,528 Benchmark: BSE 500 TRI -28.15% 1.17% 8.21% 11.46% 11.37% Total Value of Additional Benchmark: BSE Sensex TRI ( ` ) 1,24,410 4,41,561 8,68,268 25,68,007 27,97,245 Additional Benchmark: BSE Sensex TRI 6.97% 13.76% 14.79% 14.56% 14.22% (Inception date :30-Oct-2014) (First Installment date :01-Nov-2014)",
"text": "Past performance may or may not be sustained in future. Different plans shall have different expense structure. Point to Point (PTP) returns in ` is based on standard investment of ` 10,000; Since Inception date is 30 October 2014; *BSE 500 TRI; **BSE Sensex TRI; Managed by the fund manager since 11 November 2019 and co-fund manager with effect from 21 February, 2025. The performance of the scheme is benchmarked to the Total Return variant of the Index."
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Portfolio Beta 0.88 1.00",
"text": "*Weekly and Fortnightly SIP frequencies are not available on BSE STAR MF Platform"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Scheme Performance Last 1 year PTP ( ` ) Last 3 years PTP ( ` ) Last 5 years PTP ( ` ) Last 10 years PTP ( ` ) Since Inception PTP ( ` )",
"text": "Benchmark* 8.54% 10,854 18.16% 16,506 25.12% 30,721 13.94% 36,938 13.76% 39,194 Additional Benchmark** 11.33% 11,133 14.95% 15,195 21.69% 26,729 12.76% 33,280 12.24% 33,970"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Scheme Performance Last 1 year PTP ( ` ) Last 3 years PTP ( ` ) Last 5 years PTP ( ` ) Last 10 years PTP ( ` ) Since Inception PTP ( ` )",
"text": "360 ONE Focused Equity Fund - Dir - Growth 6.61% 10,661 20.73% 17,607 26.68% 32,686 16.85% 47,575 16.98% 52,668"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Scheme Performance Last 1 year PTP ( ` ) Last 3 years PTP ( ` ) Last 5 years PTP ( ` ) Last 10 years PTP ( ` ) Since Inception PTP ( ` )",
"text": "360 ONE Focused Equity Fund - Reg - Growth 5.57% 10,557 19.54% 17,089 25.35% 31,003 15.50% 42,318 15.62% 46,513"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Scheme Performance Last 1 year PTP ( ` ) Last 3 years PTP ( ` ) Last 5 years PTP ( ` ) Last 10 years PTP ( ` ) Since Inception PTP ( ` )",
"text": "Scheme Performance Last 1 year PTP ( ` ) Last 3 years PTP ( ` ) Last 5 years PTP ( ` ) Last 10 years PTP ( ` ) Since Inception PTP ( ` )"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Scheme Performance",
"text": "Scheme Performance"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Total Amount Invested ( ` ) 1,20,000 3,60,000 6,00,000 12,00,000 12,70,000 Total Value as on May 31, 2025 ( ` ) 1,21,218 4,59,598 9,33,743 30,12,473 33,12,389 Returns 1.91% 16.57% 17.76% 17.53% 17.16% Total Value of Benchmark: BSE 500 TRI ( ` ) 1,01,079 3,66,482 7,37,753 21,76,184 23,78,528 Benchmark: BSE 500 TRI -28.15% 1.17% 8.21% 11.46% 11.37% Total Value of Additional Benchmark: BSE Sensex TRI ( ` ) 1,24,410 4,41,561 8,68,268 25,68,007 27,97,245 Additional Benchmark: BSE Sensex TRI 6.97% 13.76% 14.79% 14.56% 14.22% (Inception date :30-Oct-2014) (First Installment date :01-Nov-2014)",
"text": "# To be listed"
},
{
"type": "paragraph",
"section": "360 ONE FOCUSED EQUITY FUND",
"sub_section": "Small Cap",