الصيغة الرياضية لحساب النمو المركب في حساب التداول.
10,000$ مبدئي، عائد شهري 5%، 12 شهرًا FV = 10,000$ x (1.05)^12 = 17,958.56$ مع مساهمة شهرية 500$: FV = 10,000$ x 1.7959 + 500$ x [(1.05^12-1)/0.05] = 17,959$ + 7,960$ = 25,919$
from dapex_calculators.position_size import calculate_compound_interest
result = calculate_compound_interest(10000, 60, 1, 500)
print(f"القيمة النهائية: ${{result['final_value']:,.2f}}")
اترك تعليقًا