الحد الأدنى للاكتتاب 500 سهم
لمزيد من المعلومات والاكتتاب
0554119933
- حساب الجمعية في مصرف الراجحي

- رقم الحساب 609608019990998
- ايبان SA79 8000 0609 6080 1999 0998
المزيد من التفاصيل
للتواصل معنا او لطلب زيارة نرجو الاتصال بنا او التواصل عن طريق الواتس اب
واتس اب 0554119933
//console.log(inputValue);
// var y = document.getElementById("myText");
// y.addEventListener("keyup", myThirdFunction);
// function myThirdFunction() {
// var result = 0;
// var inputValue = parseInt(document.getElementById("myText").value); // عدد الأسهم
// var Nomina = parseInt(document.getElementById("Nominal").value); // القيمة الاسمية للسهم
// var Issue = parseInt(document.getElementById("Issue_premium").value); // علاوة الإصدار
// var Membership_fee = parseInt(document.getElementById("membership_fee").value); // رسوم العضوية
// if (inputValue && Nomina && Issue) {
// // حساب قيمة السهم مع علاوة الإصدار
// var totalSharePrice = Nomina + Issue;
// // حساب رسوم العضوية كـ 10%
// var membershipCost = (Membership_fee / 100) * totalSharePrice;
// // حساب الإجمالي
// result = (totalSharePrice + membershipCost) * inputValue;
// var n = result.toFixed(2);
// } else {
// n = 0;
// }
// document.getElementById("demo").innerHTML = n;
// document.getElementById("output").value = n;
// }